Skip to content
Snippets Groups Projects
Commit e0e54d5a authored by BaM's avatar BaM
Browse files

final commit on Decay matrix IM

git-svn-id: svn+ssh://svn.in2p3.fr/class@606 0e7d625b-0364-4367-a6be-d5be4a48d228
parent c01c9d56
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
#include <TGraph.h>
#include <TString.h>
#include <TMatrixT.h>
#include <sstream>
#include <string>
......@@ -93,13 +93,21 @@ TMatrixT<double> IM_Matrix_Decay::ExponentialCalculation(TMatrixT<double> myMatr
}
IsotopicVector IM_Matrix_Decay::GetDecay(IsotopicVector Mother_IV, time)
IsotopicVector IM_Matrix_Decay::GetDecay(IsotopicVector Mother_IV, double time)
{
IsotopicVector DecayIV;
TMatrixT<double> NMatrix = TMatrixT<double>(decayindex.size(),1))
TMatrixT<double> NMatrix_0 = TMatrixT<double>(fReverseMatrixIndex.size(),1);
TMatrixT<double> NMatrix_t = TMatrixT<double>(fReverseMatrixIndex.size(),1);
for(int i = 0; i < (int)fReverseMatrixIndex.size(); i++)
NMatrix[i] = 0;
{
NMatrix_0[i] = 0;
NMatrix_t[i] = 0;
}
{ // Filling the t=0 State;
map<ZAI, double > isotopicquantity = Mother_IV.GetIsotopicQuantity();
......@@ -119,7 +127,7 @@ IsotopicVector IM_Matrix_Decay::GetDecay(IsotopicVector Mother_IV, time)
it2 = fMatrixIndex.find( ZAI(-3,-3,-3) );
NMatrix[ (*it2).second ][0] = (*it).second ;
NMatrix_0[ (*it2).second ][0] = (*it).second ;
}
......@@ -128,6 +136,23 @@ IsotopicVector IM_Matrix_Decay::GetDecay(IsotopicVector Mother_IV, time)
}
TMatrixT<double> exp_T_Matrix = TMatrixT<double>(fReverseMatrixIndex.size(),fReverseMatrixIndex.size());
for(int j = 0; j < (int)fReverseMatrixIndex.size(); j++)
for(int k = 0; k < (int)fReverseMatrixIndex.size(); k++)
{
if(k == j) exp_T_Matrix[j][k] = exp(time);
else exp_T_Matrix[j][k] = 0;
}
NMatrix_t = fExponentialDecayMatrix * exp_T_Matrix * NMatrix_0;
for(int i = 0; i < (int)fReverseMatrixIndex.size(); i++)
{
DecayIV += fReverseMatrixIndex[i]* NMatrix_t[i][0];
}
return DecayIV;
}
......
......@@ -62,7 +62,7 @@ class IM_Matrix_Decay : public IrradiationModel
//@}
IsotopicVector GetDecay(IsotopicVector Mother_IV, time);
IsotopicVector GetDecay(IsotopicVector Mother_IV, double time);
TMatrixT<double> ExponentialCalculation(TMatrixT<double> myMatrix);
......
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