Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
lc_generation [2022/04/11 13:38]
theoastro
lc_generation [2023/06/02 17:05] (current)
theoastro
Line 12: Line 12:
 Note that the parameters vary from model to model - an overview can be found [[https://github.com/nuclear-multimessenger-astronomy/nmma/blob/c9f55663f27625ca7c3aa1b8d74dcb231ca060e7/nmma/em/model.py#L16|here]]. Some models such as ''Bu2019lm'' require to embed a SVD grid for light curve computation which can be found [[https://github.com/nuclear-multimessenger-astronomy/nmma/tree/main/svdmodels|here]]. With these, a light curve object can be instantiated as follows: Note that the parameters vary from model to model - an overview can be found [[https://github.com/nuclear-multimessenger-astronomy/nmma/blob/c9f55663f27625ca7c3aa1b8d74dcb231ca060e7/nmma/em/model.py#L16|here]]. Some models such as ''Bu2019lm'' require to embed a SVD grid for light curve computation which can be found [[https://github.com/nuclear-multimessenger-astronomy/nmma/tree/main/svdmodels|here]]. With these, a light curve object can be instantiated as follows:
  
-  t = np.arange(tmin=0.1tmax=20.0 ,deltat=0.1)+  tmin=0.1 
 +  tmax=20.0 
 +  deltat=0.1 
 +  t = np.arange(tmin, tmax, deltat)
   lc_model = nmma.em.model.SVDLightCurveModel(model='Bu2019lm', sample_times = t, svd_path = "nmma/svdmodels/", parameter_conversion=None, mag_ncoeff=None,  lbol_ncoeff=None)   lc_model = nmma.em.model.SVDLightCurveModel(model='Bu2019lm', sample_times = t, svd_path = "nmma/svdmodels/", parameter_conversion=None, mag_ncoeff=None,  lbol_ncoeff=None)
  
Line 34: Line 37:
   t_day = np.arange(1., 950., 1.)   t_day = np.arange(1., 950., 1.)
   grb_model = nmma.em.model.GRBLightCurveModel(t_day, resolution=12, jetType=0)    grb_model = nmma.em.model.GRBLightCurveModel(t_day, resolution=12, jetType=0) 
-  params = {+  params_range = {
     'inclination_EM': 0,     'inclination_EM': 0,
     'log10_E0': 50.,     'log10_E0': 50.,
Last modified: le 2022/04/11 13:38