Skip to content
Snippets Groups Projects
Commit 573a0f0f authored by Paul Lasky's avatar Paul Lasky
Browse files

Merge branch 'time_domain_example_bug_fix' into 'master'

Changes damping_time prior in `create_your_own_time_domain_source_model.py` so that it does not go to zero

See merge request lscsoft/bilby!265
parents 90204db7 feeee226
No related branches found
No related tags found
1 merge request!265Changes damping_time prior in `create_your_own_time_domain_source_model.py` so that it does not go to zero
Pipeline #37430 passed with warnings
......@@ -49,7 +49,7 @@ ifos.inject_signal(waveform_generator=waveform,
prior = injection_parameters.copy()
prior['amplitude'] = bilby.core.prior.LogUniform(1e-23, 1e-21, r'$h_0$')
prior['damping_time'] = bilby.core.prior.Uniform(
0, 1, r'damping time', unit='$s$')
0.01, 1, r'damping time', unit='$s$')
prior['frequency'] = bilby.core.prior.Uniform(0, 200, r'frequency', unit='Hz')
prior['phase'] = bilby.core.prior.Uniform(-np.pi / 2, np.pi / 2, r'$\phi$')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment