rampedpyrox.Daem.from_timedata

classmethod Daem.from_timedata(timedata, E_max=350, E_min=50, log10omega=10, nE=250)[source]

Class method to directly generate an rp.Daem instance using data stored in an rp.TimeData instance.

Parameters:
  • timedata (rp.TimeData) – rp.TimeData instance containing the time array to use for creating the DAEM.
  • E_max (int) – The maximum activation energy value to consider, in kJ/mol. Defaults to 350.
  • E_min (int) – The minimum activation energy value to consider, in kJ/mol. Defaults to 50.
  • log10omega (scalar, array-like, or lambda function) – Arrhenius pre-exponential factor, either a constant value, array- likewith length nE, or a lambda function of E. Defaults to 10.
  • nE (int) – The number of activation energy points. Defaults to 250.

Warning

UserWarning
If attempting to create a DAEM with an isothermal timedata instance.

See also

from_ratedata()
Class method to directly generate an rp.Daem instance using data stored in an rp.RateData instance.