appliedchemlabwork_tayra.D1.ReactionData#
- class appliedchemlabwork_tayra.D1.ReactionData(temp: float | floating[Any], k: float | floating[Any], e_a: float | floating[Any])[source]#
Class to contain the data of reaction.
- Parameters:
- tempfloat | floating[Any]
The absolute temperture of the reaction.
- kfloat | floating[Any]
The pace coefficient of the reaction at the temperture of
temp.- e_afloat | floating[Any]
The activation energy of the reaction.
- Attributes:
- afloat | floating[Any]
The frequency factor of the reaction.
Methods
get_k(temp=298.15)
Gets the pace coefficient at the absolute temperture
temp.to_df()
Generates a
DataFrame.- __init__(temp: float | floating[Any], k: float | floating[Any], e_a: float | floating[Any]) None[source]#
Initializes the class.
- Parameters:
- tempfloat | floating[Any]
The tempreture.
- kfloat | floating[Any]
The coefficient at
temp.- e_afloat | floating[Any]
The activation energy.
Methods
__init__(temp, k, e_a)Initializes the class.
get_k([temp])Gets the pace coefficientat the temperture of
temp.to_df()Outputs the data as a
DataFrame.