Cloudy
Spectral Synthesis Code for Astrophysics
Loading...
Searching...
No Matches
cooling.h
Go to the documentation of this file.
1/* This file is part of Cloudy and is copyright (C)1978-2025 by Gary J. Ferland and
2 * others. For conditions of distribution and use see copyright notice in license.txt */
3
4#ifndef COOLING_H_
5#define COOLING_H_
6
7const bool lgConvBaseHeatTest=false;
8
10void CoolZero(void);
11
17void CoolAdd(
18 const char *chLabel,
19 realnum xlambda,
20 double cool);
21
23void CoolSum(double *total);
24
27void CoolEvaluate(double *tot);
28
36void coolpr(
37 FILE *io,
38 const char *chLabel ,
39 realnum lambda,
40 double ratio,
41 const char *chJOB );
42
45void HeatSum(void);
46
47void SecIoniz( void );
48
50void HeatZero(void);
51
52void CoolDima(void);
53
54#endif /* COOLING_H_ */
float realnum
Definition cddefines.h:127
void CoolSum(double *total)
Definition cool_etc.cpp:87
void HeatZero(void)
Definition heat_sum.cpp:1042
void CoolEvaluate(double *tot)
Definition cool_eval.cpp:57
void CoolDima(void)
Definition cool_dima.cpp:20
void CoolAdd(const char *chLabel, realnum xlambda, double cool)
Definition cool_etc.cpp:13
void HeatSum(void)
Definition heat_sum.cpp:497
const bool lgConvBaseHeatTest
Definition cooling.h:7
void CoolZero(void)
Definition cool_etc.cpp:50
void SecIoniz(void)
Definition heat_sum.cpp:99
void coolpr(FILE *io, const char *chLabel, realnum lambda, double ratio, const char *chJOB)
Definition cool_pr.cpp:10