RE: Too many steps in routine RungeKutta » EQM_Simple.cxx
1 |
# include "EquivalenceModel.hxx"
|
---|---|
2 |
# include "EQM_Simple.hxx"
|
3 |
# include "CLASSLogger.hxx"
|
4 |
# include <iostream>
|
5 |
using namespace std; |
6 |
|
7 |
EQM_Simple::EQM_Simple() |
8 |
{
|
9 |
ZAI U8(92,238,0); |
10 |
ZAI U5(92,235,0); |
11 |
ZAI U4(92,234,0); |
12 |
ZAI U6(92,236,0); |
13 |
// Fertile
|
14 |
fFertileList=U8*1; |
15 |
// Fissile
|
16 |
fFissileList=U4*1+U5*1+U6*1; |
17 |
}
|
18 |
|
19 |
EQM_Simple::~EQM_Simple() |
20 |
{
|
21 |
|
22 |
}
|
23 |
|
24 |
double EQM_Simple::GetFissileMolarFraction(IsotopicVector Fissil,IsotopicVector Fertil,double BurnUp) |
25 |
{
|
26 |
double fissilepropotion=1-0.952388; |
27 |
return fissilepropotion; |
28 |
}
|
29 |
|
30 |
// g++ -g -O -I $CLASS_include -L $CLASS_lib -lCLASSpkg `root-config --cflags` `root-config --libs` -fopenmp -lgomp -Wunused-result -c EQM_Simple.cxx
|