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