PLUTO
cooling.h
Go to the documentation of this file.
1 /* ############################################################
2 
3  FILE: cooling.h
4 
5  PURPOSE: contains common definitions for the
6  whole CODE
7 
8  ############################################################ */
9 
10 #define NIONS 1
11 #define X_HI NFLX
12 
13 /* These are used in radiat.c and MeanMolecularWeight() function */
14 
15 #define frac_Z 1.e-3 /* = N(Z) / N(H), fractional number density of metals (Z)
16  with respect to hydrogen (H) */
17 #define frac_He 0.082 /* = N(He) / N(H), fractional number density of helium (He)
18  with respect to hydrogen (H) */
19 
20 double GetMaxRate (double *, double *, double);
21 double H_MassFrac (void);
22 double CompEquil (double, double, double *);
23 void Radiat (double *, double *);
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
double GetMaxRate(double *, double *, double)
Definition: maxrate.c:4
void Radiat(double *, double *)
Definition: radiat.c:94
double H_MassFrac(void)
Definition: radiat.c:721
void CompEquil(double n, double T, double *v)
Definition: comp_equil.c:44