CLASS  5.1
Fuel Cycle Simulator
CLASSConstante.hxx
Go to the documentation of this file.
1 #ifndef _CLASSConstante_
2 #define _CLASSConstante_
3 
4 //CLASS library
5 #include "ZAIMass.hxx"
6 #include "ZAIHeat.hxx"
7 #include "ZAITox.hxx"
8 #include "DecayDataBank.hxx"
9 
10 typedef long long int cSecond;
11 
12 static const double AVOGADRO = 6.02214129e23; // Avogadro Number [1/mol]
13 
14 static const ZAIMass cZAIMass; // Mass list of all nuclei stored in [g/mol]
15 static const ZAIHeat cZAIHeat; // Thermal power list of all nuclei [W/nucleus]
16 static const ZAITox cZAITox;
17 
18 static const cSecond cYear = 3600*24*365.25; // Seconds in a year
19 static DecayDataBank cDecayData; // Seconds in a year
20 
21 
22 #endif
Header file for ZAIHeat classes.
Header file for DecayDataBank class.
Defines the molar mass of a ZAI.
Definition: ZAIMass.hxx:38
Header file for ZAITox classes.
long long int cSecond
Definition: CLASSConstante.hxx:10
Defines the Radiotoxicity of a ZAI.
Definition: ZAITox.hxx:39
Defines the decay heat of a ZAI.
Definition: ZAIHeat.hxx:39
Describes outcore radioactive decays.
Definition: DecayDataBank.hxx:45
Header file for ZAIMass classes.