Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4StatMFMacroTriNucleon Class Reference

#include <G4StatMFMacroTriNucleon.hh>

Inheritance diagram for G4StatMFMacroTriNucleon:
G4VStatMFMacroCluster

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
 
G4double GetMeanMultiplicity (void) const
 
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::~G4StatMFMacroTriNucleon ( )

Definition at line 40 of file G4StatMFMacroTriNucleon.cc.

41 {}

Member Function Documentation

G4double G4StatMFMacroTriNucleon::CalcEnergy ( const G4double  T)
virtual

Implements G4VStatMFMacroCluster.

Definition at line 71 of file G4StatMFMacroTriNucleon.cc.

References G4VStatMFMacroCluster::_Energy, python.hepunit::elm_coupling, G4NucleiProperties::GetBindingEnergy(), G4StatMFParameters::GetKappaCoulomb(), G4StatMFParameters::Getr0(), G4VStatMFMacroCluster::theA, and G4VStatMFMacroCluster::theZARatio.

72 {
73  G4double Coulomb = (3./5.)*(elm_coupling/G4StatMFParameters::Getr0())*
74  (1.0 - 1.0/std::pow(1.0+G4StatMFParameters::GetKappaCoulomb(),1./3.));
75 
77  Coulomb * theZARatio * theZARatio
78  * std::pow(static_cast<G4double>(theA),5./3.) + (3./2.) * T;
79 }
static G4double GetKappaCoulomb()
tuple elm_coupling
Definition: hepunit.py:286
static G4double Getr0()
static G4double GetBindingEnergy(const G4int A, const G4int Z)
double G4double
Definition: G4Types.hh:76
G4double G4StatMFMacroTriNucleon::CalcEntropy ( const G4double  T,
const G4double  FreeVol 
)
virtual

Implements G4VStatMFMacroCluster.

Definition at line 82 of file G4StatMFMacroTriNucleon.cc.

References G4VStatMFMacroCluster::_MeanMultiplicity, python.hepunit::fermi, and G4VStatMFMacroCluster::theA.

83 {
84  G4double ThermalWaveLenght = 16.15*fermi/std::sqrt(T);
85  G4double lambda3 = ThermalWaveLenght*ThermalWaveLenght*ThermalWaveLenght;
86 
87  G4double Entropy = 0.0;
88  if (_MeanMultiplicity > 0.0)
89  Entropy = _MeanMultiplicity*(2.5 + std::log((4*theA)*
90  std::sqrt(static_cast<G4double>(theA))*FreeVol
91  /(lambda3*_MeanMultiplicity)));
92 
93  return Entropy;
94 }
double G4double
Definition: G4Types.hh:76
G4double G4StatMFMacroTriNucleon::CalcMeanMultiplicity ( const G4double  FreeVol,
const G4double  mu,
const G4double  nu,
const G4double  T 
)
virtual

Implements G4VStatMFMacroCluster.

Definition at line 44 of file G4StatMFMacroTriNucleon.cc.

References G4VStatMFMacroCluster::_MeanMultiplicity, python.hepunit::elm_coupling, python.hepunit::fermi, G4NucleiProperties::GetBindingEnergy(), G4StatMFParameters::GetKappaCoulomb(), G4StatMFParameters::Getr0(), G4VStatMFMacroCluster::theA, and G4VStatMFMacroCluster::theZARatio.

48 {
49  G4double ThermalWaveLenght = 16.15*fermi/std::sqrt(T);
50  G4double lambda3 = ThermalWaveLenght*ThermalWaveLenght*ThermalWaveLenght;
51  static const G4double degeneracy = 2.0+2.0; // H3 + He3
52  G4double Coulomb = (3./5.)*(elm_coupling/G4StatMFParameters::Getr0())*
53  (1.0 - 1.0/std::pow(1.0+G4StatMFParameters::GetKappaCoulomb(),1./3.));
54 
55  // old value was 9.224*MeV
57  // + G4NucleiProperties::GetBindingEnergy(theA,2);
58 
59  G4double exponent = (BindingE+ theA*(mu+nu*theZARatio) -
60  Coulomb*theZARatio*theZARatio
61  *std::pow(static_cast<G4double>(theA),5./3.))/T;
62  if (exponent > 700.0) exponent = 700.0;
63 
64  _MeanMultiplicity = (degeneracy*FreeVol*theA*
65  std::sqrt(static_cast<G4double>(theA))/lambda3)*
66  std::exp(exponent);
67 
68  return _MeanMultiplicity;
69 }
static G4double GetKappaCoulomb()
tuple elm_coupling
Definition: hepunit.py:286
static G4double Getr0()
static G4double GetBindingEnergy(const G4int A, const G4int Z)
double G4double
Definition: G4Types.hh:76
G4double G4StatMFMacroTriNucleon::CalcZARatio ( const G4double  )
inlinevirtual

Implements G4VStatMFMacroCluster.

Definition at line 49 of file G4StatMFMacroTriNucleon.hh.

References G4VStatMFMacroCluster::theZARatio.

49 {return theZARatio = 0.5;}

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