From 5d62cb6eb7914db2ef972164025978b902f40d98 Mon Sep 17 00:00:00 2001 From: Baptiste LENIAU <baptiste.leniau@subatech.in2p3.fr> Date: Wed, 20 Apr 2016 10:30:36 +0000 Subject: [PATCH] remove EQM_PWR_QUAD from repo git-svn-id: svn+ssh://svn.in2p3.fr/class@820 0e7d625b-0364-4367-a6be-d5be4a48d228 --- .../Model/Equivalence/EQM_PWR_QUAD_MOX.hxx | 70 ------------------- 1 file changed, 70 deletions(-) delete mode 100644 source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.hxx diff --git a/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.hxx b/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.hxx deleted file mode 100644 index 94bbe4c65..000000000 --- a/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.hxx +++ /dev/null @@ -1,70 +0,0 @@ -#ifndef _EQM_PWR_QUAD_MOX_HXX -#define _EQM_PWR_QUAD_MOX_HXX - -#include "EquivalenceModel.hxx" - -#include <string> - -using namespace std; - -//-----------------------------------------------------------------------------// -//! Defines an EquivalenceModel based on a quadratic fit - -/*! - The aim of these class is to constuct a fuel from an equivalence model - based on a Quadratic Pu equivalent Model - The Plutonium content e is calculated using : - - @f$ e = \alpha_{0} + \sum_{i\in Pu}^{N} \left(\alpha_{i} \cdot n_{i}\ + \sum_{j\leq i} \alpha_{ij} \cdot n_{i}\cdot n_{j}\right)@f$ - - @author BaM - @version 3.0 - */ -//________________________________________________________________________ - -class EQM_PWR_QUAD_MOX : public EquivalenceModel -{ - public : - - /*! - \name Constructor - */ - //@{ - - //{ - /// normal constructor - /*! - Create a EQM_PWR_POL_UO2 - \param WeightPath : Path to the file containing the @f$\alpha_{i}@f$ - Format : @f$PARAM@f$ @f$\alpha_{^{238}Pu}@f$ @f$\alpha_{^{238}Pu ^{238}Pu}@f$ @f$\alpha_{^{238}Pu ^{239}Pu}@f$ .... @f$\alpha_{^{238}Pu ^{242}Pu}@f$ @f$\alpha_{^{239}Pu}@f$ ... - @f$\alpha_{^{242}Pu}@f$ @f$\alpha_{^{242}Pu ^{242}Pu}@f$ @f$\alpha_{0}@f$ - */ - EQM_PWR_QUAD_MOX(string WeightPath); - //} - - //{ - /// Logger constructor - /*! - Create a EQM_PWR_POL_UO2 - \param log : Use for the log - \param WeightPath : Path to the file containing the @f$\alpha_{i}@f$ - Format : @f$PARAM@f$ @f$\alpha_{^{238}Pu}@f$ @f$\alpha_{^{238}Pu ^{238}Pu}@f$ @f$\alpha_{^{238}Pu ^{239}Pu}@f$ .... @f$\alpha_{^{238}Pu ^{242}Pu}@f$ @f$\alpha_{^{239}Pu}@f$ ... - @f$\alpha_{^{242}Pu}@f$ @f$\alpha_{^{242}Pu ^{242}Pu}@f$ @f$\alpha_{0}@f$ - */ - EQM_PWR_QUAD_MOX(CLASSLogger* log, string WeightPath); - //} - - ~EQM_PWR_QUAD_MOX(); - //@} - - virtual double GetFissileMolarFraction(IsotopicVector Fissil,IsotopicVector Fertil,double BurnUp); - - private : - - string fWeightPath; //!< Path to the file containing the @f$\alpha_{ij}@f$ - vector<double> fFuelParameter; //!< vector containing the @f$\alpha_{ij}@f$ - -}; - -#endif - -- GitLab