PLUTO
maxrate.c
Go to the documentation of this file.
1 #include "pluto.h"
2 /* ********************************************************** */
3 double GetMaxRate (real *v0, real *k1, real T0)
4 /*
5  *
6  * PURPOSE:
7  *
8  * return an estimate of the maximum rate (dimension 1/time)
9  * in the chemical network. This will serve as a
10  * "stiffness" detector in the main ode integrator.
11  *
12  * For integration to be carried explicitly all the time,
13  * return a small value (1.e-12).
14  *
15  ************************************************************ */
16 {
17  return (1.e-12);
18 }
19 
double real
Definition: pluto.h:488
double GetMaxRate(real *v0, real *k1, real T0)
Definition: maxrate.c:4
PLUTO main header file.