Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4StatMFMacroTriNucleon Class Reference

#include <G4StatMFMacroTriNucleon.hh>

+ Inheritance diagram for G4StatMFMacroTriNucleon:

Public Member Functions

 G4StatMFMacroTriNucleon ()
 
 ~G4StatMFMacroTriNucleon ()
 
G4double CalcMeanMultiplicity (const G4double FreeVol, const G4double mu, const G4double nu, const G4double T)
 
G4double CalcZARatio (const G4double)
 
G4double CalcEnergy (const G4double T)
 
G4double CalcEntropy (const G4double T, const G4double FreeVol)
 
- Public Member Functions inherited from G4VStatMFMacroCluster
 G4VStatMFMacroCluster (const G4int Size)
 
virtual ~G4VStatMFMacroCluster ()
 
G4bool operator== (const G4VStatMFMacroCluster &right) const
 
G4bool operator!= (const G4VStatMFMacroCluster &right) const
 
virtual G4double CalcMeanMultiplicity (const G4double FreeVol, const G4double mu, const G4double nu, const G4double T)=0
 
virtual G4double CalcZARatio (const G4double nu)=0
 
G4double GetMeanMultiplicity (void) const
 
virtual G4double CalcEnergy (const G4double T)=0
 
virtual G4double CalcEntropy (const G4double T, const G4double FreeVol)=0
 
G4double GetInvLevelDensity (void) const
 
void SetZARatio (const G4double value)
 
G4double GetZARatio (void) const
 
void SetSize (const G4double value)
 
G4double GetSize (void) const
 

Additional Inherited Members

- Protected Attributes inherited from G4VStatMFMacroCluster
G4int theA
 
G4double _InvLevelDensity
 
G4double _Entropy
 
G4double theZARatio
 
G4double _MeanMultiplicity
 
G4double _Energy
 

Detailed Description

Definition at line 38 of file G4StatMFMacroTriNucleon.hh.

Constructor & Destructor Documentation

◆ G4StatMFMacroTriNucleon()

G4StatMFMacroTriNucleon::G4StatMFMacroTriNucleon ( )
inline

◆ ~G4StatMFMacroTriNucleon()

G4StatMFMacroTriNucleon::~G4StatMFMacroTriNucleon ( )
inline

Definition at line 46 of file G4StatMFMacroTriNucleon.hh.

46{};

Member Function Documentation

◆ CalcEnergy()

G4double G4StatMFMacroTriNucleon::CalcEnergy ( const G4double  T)
virtual

Implements G4VStatMFMacroCluster.

Definition at line 88 of file G4StatMFMacroTriNucleon.cc.

89{
90 const G4double Coulomb = (3./5.)*(elm_coupling/G4StatMFParameters::Getr0())*
91 (1.0 - 1.0/std::pow(1.0+G4StatMFParameters::GetKappaCoulomb(),1./3.));
92
94 Coulomb * theZARatio * theZARatio * std::pow(static_cast<G4double>(theA),5./3.) +
95 (3./2.) * T;
96
97}
double G4double
Definition: G4Types.hh:64
static G4double GetBindingEnergy(const G4int A, const G4int Z)
static G4double Getr0()
static G4double GetKappaCoulomb()

◆ CalcEntropy()

G4double G4StatMFMacroTriNucleon::CalcEntropy ( const G4double  T,
const G4double  FreeVol 
)
virtual

Implements G4VStatMFMacroCluster.

Definition at line 100 of file G4StatMFMacroTriNucleon.cc.

101{
102 const G4double ThermalWaveLenght = 16.15*fermi/std::sqrt(T);
103 const G4double lambda3 = ThermalWaveLenght*ThermalWaveLenght*ThermalWaveLenght;
104
105 G4double Entropy = 0.0;
106 if (_MeanMultiplicity > 0.0)
107 Entropy = _MeanMultiplicity*(5./2.+
108 std::log(4.0*static_cast<G4double>(theA)*
109 std::sqrt(static_cast<G4double>(theA))*FreeVol/(lambda3*_MeanMultiplicity)));
110
111
112 return Entropy;
113}

◆ CalcMeanMultiplicity()

G4double G4StatMFMacroTriNucleon::CalcMeanMultiplicity ( const G4double  FreeVol,
const G4double  mu,
const G4double  nu,
const G4double  T 
)
virtual

Implements G4VStatMFMacroCluster.

Definition at line 61 of file G4StatMFMacroTriNucleon.cc.

63{
64 const G4double ThermalWaveLenght = 16.15*fermi/std::sqrt(T);
65
66 const G4double lambda3 = ThermalWaveLenght*ThermalWaveLenght*ThermalWaveLenght;
67
68 const G4double degeneracy = 2.0+2.0; // H3 + He3
69
70 const G4double Coulomb = (3./5.)*(elm_coupling/G4StatMFParameters::Getr0())*
71 (1.0 - 1.0/std::pow(1.0+G4StatMFParameters::GetKappaCoulomb(),1./3.));
72
73 const G4double BindingE = G4NucleiProperties::GetBindingEnergy(theA,1); // old value was 9.224*MeV
74// + G4NucleiProperties::GetBindingEnergy(theA,2);
75
76 G4double exponent = (BindingE+ theA*(mu+nu*theZARatio) -
77 Coulomb*theZARatio*theZARatio*std::pow(static_cast<G4double>(theA),5./3.))/T;
78 if (exponent > 700.0) exponent = 700.0;
79
80 _MeanMultiplicity = (degeneracy*FreeVol*static_cast<G4double>(theA)*
81 std::sqrt(static_cast<G4double>(theA))/lambda3)*
82 std::exp(exponent);
83
84 return _MeanMultiplicity;
85}

◆ CalcZARatio()

G4double G4StatMFMacroTriNucleon::CalcZARatio ( const  G4double)
inlinevirtual

Implements G4VStatMFMacroCluster.

Definition at line 64 of file G4StatMFMacroTriNucleon.hh.

64{return theZARatio = 0.5;}

The documentation for this class was generated from the following files: