Skip to content
Snippets Groups Projects
Commit 421fd743 authored by Baptiste LENIAU's avatar Baptiste LENIAU
Browse files

Handling ZAI threshold (in order the XSModel not to take into account ZAI...

Handling ZAI threshold (in order the XSModel not to take into account ZAI cross section below the threshold) and handling the validity domain for XSMOdel

git-svn-id: svn+ssh://svn.in2p3.fr/class@470 0e7d625b-0364-4367-a6be-d5be4a48d228
parent 9dddf602
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,10 @@ PhysicsModels::PhysicsModels(CLASSLogger* log, XSModel* XS, EquivalenceModel* EM
//________________________________________________________________________
EvolutionData PhysicsModels::GenerateEvolutionData(IsotopicVector IV, double cycletime, double Power)
{
fXSModel->isIVInDomain(IV);
int Z_ZAIThreshold = fIrradiationModel->GetZAIThreshold();
fXSModel->SetZAIThreshold(Z_ZAIThreshold);
return fIrradiationModel->GenerateEvolutionData(IV, fXSModel->GetCrossSections(IV), Power, cycletime);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment