Skip to content
Snippets Groups Projects
Commit 76324fd6 authored by Baptiste LENIAU's avatar Baptiste LENIAU Committed by BaM
Browse files

Merge branch 'Feature_SepEfficiencyAtTime' into 'master'

Feature sep efficiency at time

New way to handle separation efficiency in fabrication plant usage example :
```cpp
cSecond Time_T0 = 10 *Year;
IsotopicVector IVSep_T0 ;
   IVSep_T0.Add(ZAI(94,238,0),0.90);
    // . . .
cSecond Time_T1 = 30 *Year;
IsotopicVector IVSep_T1 ;
   IVSep_T1.Add(ZAI(94,238,0),0.99);
    // . . .
YourFP->SetSeparationEfficiency( IVSep_T0 , Time_T0);
YourFP->SetSeparationEfficiency( IVSep_T1 , Time_T1);
```

See merge request !8
parents ad648d8a eeec02fc
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment