Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
lc_generation [2022/02/11 12:21] theoastro |
lc_generation [2023/06/02 17:05] (current) theoastro |
||
---|---|---|---|
Line 3: | Line 3: | ||
NMMA enables to generate electromagnetic light curves in different electromagnetic regimes. For the light curve generation, the user can select among different models. The current version of NMMA includes three kilonova light curve models and enables to compute Gamma-ray burst afterglow light curves which is based on the model [[https:// | NMMA enables to generate electromagnetic light curves in different electromagnetic regimes. For the light curve generation, the user can select among different models. The current version of NMMA includes three kilonova light curve models and enables to compute Gamma-ray burst afterglow light curves which is based on the model [[https:// | ||
- | **=== Kilonovae | + | === Kilonovae |
For kilonova light curve generation, the following models are available in NMMA: | For kilonova light curve generation, the following models are available in NMMA: | ||
* '' | * '' | ||
Line 12: | Line 12: | ||
Note that the parameters vary from model to model - an overview can be found [[https:// | Note that the parameters vary from model to model - an overview can be found [[https:// | ||
- | | + | tmin=0.1 |
+ | | ||
+ | | ||
+ | t = np.arange(tmin, | ||
lc_model = nmma.em.model.SVDLightCurveModel(model=' | lc_model = nmma.em.model.SVDLightCurveModel(model=' | ||
Line 22: | Line 25: | ||
' | ' | ||
' | ' | ||
- | lbol, mag= lc_model.generate_lightcurve(t, | + | lbol, mag= lc_model.generate_lightcurve(t, |
Through the filter keys such as u, | Through the filter keys such as u, | ||
Line 31: | Line 34: | ||
=== Gamma-ray burst afterglows | === Gamma-ray burst afterglows | ||
In order to compute GRB afterglow light curves, NMMA uses the model '' | In order to compute GRB afterglow light curves, NMMA uses the model '' | ||
- | | + | |
- | | + | |
- | 'E0': | + | grb_model = nmma.em.model.GRBLightCurveModel(t_day, |
+ | params_range | ||
+ | 'inclination_EM': | ||
+ | ' | ||
' | ' | ||
' | ' | ||
- | 'n0':10**(-4.5), | + | 'log10_n0': |
' | ' | ||
- | 'epsilon_e':10**(-1.6), | + | 'log10_epsilon_e': |
- | 'epsilon_B':10**(-2), | + | 'log10_epsilon_B': |
- | ' | + | 'luminosity_distance': |
- | ' | + | |
- | ' | + | |
- | 'xi_N': | + | |
- | ' | + | |
- | tmin = 1. | + | |
- | tmax = 950. | + | |
- | deltat = 1. | + | |
- | t = np.arange(tmin, | + | |
- | | + | lbol, mag = grb_model.generate_lightcurve(t_day, params_range) |
GRB afterglow light curves can be accessed with the filter keys '' | GRB afterglow light curves can be accessed with the filter keys '' | ||
=== Shock-cooling supernovae | === Shock-cooling supernovae | ||
- | NMMA uses a model from [[https:// | + | NMMA uses a model from [[https:// |
+ | |||
+ | t = np.arange(tmin=0.1, | ||
+ | sn_model = nmma.em.model.ShockCoolingLightCurveModel(sample_times = t, parameter_conversion=None, | ||
+ | params_range = { | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | lbol, mag = sn_model.generate_lightcurve(t, | ||
Last modified: le 2022/02/11 12:21