In many functions in the mechanism files, the temperature polynomials are calculated as ``` T2 = T * T T3 = T * T * T ... ``` This can be optimized to ``` T2 = T * T T3 = T2 * T ... ```
In many functions in the mechanism files, the temperature polynomials are calculated as
This can be optimized to