Void boost along axis. (#151)

* Add Vmag along model ax

* Fix typo

* Updat evoid plots

* Add label

* Update script

* Update defaults
This commit is contained in:
Richard Stiskalek 2024-09-23 12:33:48 +02:00 committed by GitHub
parent 6974deca91
commit c881f8eb39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 55 additions and 15 deletions

View file

@ -310,6 +310,7 @@ if __name__ == "__main__":
sample_alpha = False if "IndranilVoid_" in ARGS.simname or ARGS.simname == "no_field" else True # noqa
sample_beta = None
no_Vext = None
sample_Vmag_vax = False
sample_Vmono = False
sample_mag_dipole = False
absolute_calibration = None
@ -325,6 +326,7 @@ if __name__ == "__main__":
"sample_alpha": sample_alpha,
"sample_beta": sample_beta,
"no_Vext": no_Vext,
"sample_Vmag_vax": sample_Vmag_vax,
"sample_Vmono": sample_Vmono,
"sample_mag_dipole": sample_mag_dipole,
"absolute_calibration": absolute_calibration,
@ -377,7 +379,8 @@ if __name__ == "__main__":
"beta_min": -10.0, "beta_max": 10.0,
"sigma_v_min": 1.0, "sigma_v_max": 5000 if "IndranilVoid_" in ARGS.simname else 750., # noqa
"h_min": 0.01, "h_max": 5.0,
"no_Vext": False if no_Vext is None else no_Vext, # noqa
"no_Vext": False if no_Vext is None else no_Vext, # noqa
"sample_Vmag_vax": sample_Vmag_vax,
"sample_Vmono": sample_Vmono,
"sample_beta": sample_beta,
"sample_h": sample_h,