Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CLASS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BaM
CLASS
Commits
2e9f44f8
Commit
2e9f44f8
authored
10 years ago
by
Baptiste LENIAU
Browse files
Options
Downloads
Patches
Plain Diff
add comments
git-svn-id:
svn+ssh://svn.in2p3.fr/class@515
0e7d625b-0364-4367-a6be-d5be4a48d228
parent
d8bd7be2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/trunk/include/EquivalenceModel.hxx
+7
-7
7 additions, 7 deletions
source/trunk/include/EquivalenceModel.hxx
source/trunk/include/XSModel.hxx
+34
-13
34 additions, 13 deletions
source/trunk/include/XSModel.hxx
with
41 additions
and
20 deletions
source/trunk/include/EquivalenceModel.hxx
+
7
−
7
View file @
2e9f44f8
...
...
@@ -24,14 +24,14 @@ using namespace std;
The aim of these class is synthetyse all the commum properties to all
Equivalence Model.
\warning
{
\warning
Never instantiate EquivalenceModel in your CLASS input but it's derivated class
@see
../Model/Equivalence/
EQM_BakerRoss_FBR_MOX
.cxx
@see
../Model/Equivalence/
EQM_LIN_PWR_MOX
.cxx
@see
../Model/Equivalence/
EQM_MLP_PWR_MOX
.cxx
@see
../Model/Equivalence/
EQM_POL_PWR_UO2
.cxx
@see
../Model/Equivalence/
EQM_QUAD_PWR_MOX
.cxx
}
@see EQM_BakerRoss_FBR_MOX
@see EQM_LIN_PWR_MOX
@see EQM_MLP_PWR_MOX
@see EQM_POL_PWR_UO2
@see EQM_QUAD_PWR_MOX
@author BLG,BaM
@version 3.0
*/
...
...
This diff is collapsed.
Click to expand it.
source/trunk/include/XSModel.hxx
+
34
−
13
View file @
2e9f44f8
...
...
@@ -21,15 +21,13 @@ class IsotopicVector;
//-----------------------------------------------------------------------------//
/*!
Define a XS Interpolator
This is the class for method related to XS prediction
This is the class for method
s
related to XS prediction
see @../Model/XS/XSM_CLOSEST.hxx
see @../Model/XS/XSM_MLP.hxx
...
!!!!!!!!!!!!!!!!CAUTION!!!!!!!!!!!!!
Never instantiate XSModel in your CLASS input but it's derivated class
\warning
Never instantiate XSModel in your CLASS input but it's derivated class
@see XSM_CLOSEST
@see XSM_MLP
@author BLG
@version 1.0
...
...
@@ -42,24 +40,47 @@ class XSModel : public CLASSObject
public
:
XSModel
();
XSModel
(
CLASSLogger
*
log
);
/*!
\name Constructor/Desctructor
*/
//@{
XSModel
();
//!<Default constructor
XSModel
(
CLASSLogger
*
log
);
//!<Logger constructor
//@}
/*!
\name Virtual methods : This following methods are overloaded in the derivated classes : XSM_CLOSEST & XSM_MLP & ...
*/
//@{
//{
/// Pure virtual method called to estimates mean cross sections.
/*!
Estimates the mean cross sections evolution according the fresh fuel composition
\param
vector<IsotopicVector> IV,
Fresh fuel composition
\param
double t =0, can be used in XSM_CLOSEST to recalculate
distance between IV and DataBase at each time step (deprecated
)
\param
IV :
Fresh fuel composition
\param
t : deprecated parameter :
\deprecated t : XS update time (used in XSM_Closest
)
*/
//}
virtual
EvolutionData
GetCrossSections
(
IsotopicVector
IV
,
double
t
=
0
)
=
0
;
/// Check either the IsotopicVector IV is in the validity domain of the models.
/*!
return true if IV is in ValidityDomain
return false + a warning if IV is not in ValidityDomain
\param vector<IsotopicVector> IV, Fresh fuel composition
\param IsotopicVector IV, Fresh fuel composition
\param t : deprecated parameter :
\deprecated t : XS update time (used in XSM_Closest)
*/
virtual
bool
isIVInDomain
(
IsotopicVector
IV
)
;
//@}
void
SetZAIThreshold
(
int
Z_Threshold
){
fZAIThreshold
=
Z_Threshold
;}
//!< Set the Z threshold : ZAI with Z < fZAIThreshold are not manage by CLASS
int
GetZAIThreshold
(){
return
fZAIThreshold
;}
//!< Get the Z threshold
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment