Geant4  10.02.p03
G4StatMFParameters Class Reference

#include <G4StatMFParameters.hh>

Collaboration diagram for G4StatMFParameters:

Public Member Functions

 G4StatMFParameters ()
 
 ~G4StatMFParameters ()
 

Static Public Member Functions

static G4double GetKappa ()
 
static G4double GetKappaCoulomb ()
 
static G4double GetEpsilon0 ()
 
static G4double GetE0 ()
 
static G4double GetBeta0 ()
 
static G4double GetGamma0 ()
 
static G4double GetCriticalTemp ()
 
static G4double Getr0 ()
 
static G4double GetCoulomb ()
 
static G4double Beta (G4double T)
 
static G4double DBetaDT (G4double T)
 
static G4double GetMaxAverageMultiplicity (G4int A)
 

Static Public Attributes

static const G4double fKappa = 1.0
 
static const G4double fKappaCoulomb = 2.0
 
static const G4double fEpsilon0 = 16.0*MeV
 
static const G4double fE0 = 16.0*MeV
 
static const G4double fBeta0 = 18.0*MeV
 
static const G4double fGamma0 = 25.0*MeV
 
static const G4double fCriticalTemp = 18.0*MeV
 
static const G4double fr0 = 1.17*fermi
 
static const G4double fCoulomb
 

Detailed Description

Definition at line 37 of file G4StatMFParameters.hh.

Constructor & Destructor Documentation

◆ G4StatMFParameters()

G4StatMFParameters::G4StatMFParameters ( )

Definition at line 59 of file G4StatMFParameters.cc.

60 {}

◆ ~G4StatMFParameters()

G4StatMFParameters::~G4StatMFParameters ( )

Definition at line 62 of file G4StatMFParameters.cc.

63 {}

Member Function Documentation

◆ Beta()

G4double G4StatMFParameters::Beta ( G4double  T)
static

Definition at line 110 of file G4StatMFParameters.cc.

111 {
112  G4double res = 0.0;
113  if (T < fCriticalTemp) {
114  G4double CriticalTempSqr = fCriticalTemp*fCriticalTemp;
115  G4double TempSqr = T*T;
116  G4double tmp = (CriticalTempSqr-TempSqr)/(CriticalTempSqr+TempSqr);
117 
118  res = fBeta0*tmp*std::pow(tmp,0.25);
119  }
120  return res;
121 }
Float_t tmp
static const G4double fCriticalTemp
double G4double
Definition: G4Types.hh:76
static const G4double fBeta0
Here is the caller graph for this function:

◆ DBetaDT()

G4double G4StatMFParameters::DBetaDT ( G4double  T)
static

Definition at line 123 of file G4StatMFParameters.cc.

124 {
125  G4double res = 0.0;
126  if (T < fCriticalTemp) {
127  G4double CriticalTempSqr = fCriticalTemp*fCriticalTemp;
128  G4double TempSqr = T*T;
129  G4double tmp = (CriticalTempSqr-TempSqr)/(CriticalTempSqr+TempSqr);
130 
131  res = -5.0*fBeta0*std::pow(tmp,0.25)*(CriticalTempSqr*T)/
132  ((CriticalTempSqr+TempSqr)*(CriticalTempSqr+TempSqr));
133  }
134  return res;
135 }
Float_t tmp
static const G4double fCriticalTemp
double G4double
Definition: G4Types.hh:76
static const G4double fBeta0
Here is the caller graph for this function:

◆ GetBeta0()

G4double G4StatMFParameters::GetBeta0 ( )
static

Definition at line 85 of file G4StatMFParameters.cc.

86 {
87  return fBeta0;
88 }
static const G4double fBeta0
Here is the caller graph for this function:

◆ GetCoulomb()

G4double G4StatMFParameters::GetCoulomb ( )
static

Definition at line 105 of file G4StatMFParameters.cc.

106 {
107  return fCoulomb;
108 }
static const G4double fCoulomb
Here is the caller graph for this function:

◆ GetCriticalTemp()

G4double G4StatMFParameters::GetCriticalTemp ( )
static

Definition at line 95 of file G4StatMFParameters.cc.

96 {
97  return fCriticalTemp;
98 }
static const G4double fCriticalTemp
Here is the caller graph for this function:

◆ GetE0()

G4double G4StatMFParameters::GetE0 ( )
static

Definition at line 80 of file G4StatMFParameters.cc.

81 {
82  return fE0;
83 }
static const G4double fE0
Here is the caller graph for this function:

◆ GetEpsilon0()

G4double G4StatMFParameters::GetEpsilon0 ( )
static

Definition at line 75 of file G4StatMFParameters.cc.

76 {
77  return fEpsilon0;
78 }
static const G4double fEpsilon0
Here is the caller graph for this function:

◆ GetGamma0()

G4double G4StatMFParameters::GetGamma0 ( )
static

Definition at line 90 of file G4StatMFParameters.cc.

91 {
92  return fGamma0;
93 }
static const G4double fGamma0
Here is the caller graph for this function:

◆ GetKappa()

G4double G4StatMFParameters::GetKappa ( )
static

Definition at line 65 of file G4StatMFParameters.cc.

66 {
67  return fKappa;
68 }
static const G4double fKappa

◆ GetKappaCoulomb()

G4double G4StatMFParameters::GetKappaCoulomb ( )
static

Definition at line 70 of file G4StatMFParameters.cc.

71 {
72  return fKappaCoulomb;
73 }
static const G4double fKappaCoulomb
Here is the caller graph for this function:

◆ GetMaxAverageMultiplicity()

G4double G4StatMFParameters::GetMaxAverageMultiplicity ( G4int  A)
static

Definition at line 138 of file G4StatMFParameters.cc.

139 {
140  // Maximun average multiplicity: M_0 = 2.6 for A ~ 200
141  // and M_0 = 3.3 for A <= 110
142  G4double MaxAverageMultiplicity = 2.6;
143  if (A <= 110) { MaxAverageMultiplicity = 3.3; }
144  return MaxAverageMultiplicity;
145 }
double A(double temperature)
double G4double
Definition: G4Types.hh:76
Here is the caller graph for this function:

◆ Getr0()

G4double G4StatMFParameters::Getr0 ( )
static

Definition at line 100 of file G4StatMFParameters.cc.

101 {
102  return fr0;
103 }
static const G4double fr0
Here is the caller graph for this function:

Member Data Documentation

◆ fBeta0

const G4double G4StatMFParameters::fBeta0 = 18.0*MeV
static

Definition at line 81 of file G4StatMFParameters.hh.

◆ fCoulomb

const G4double G4StatMFParameters::fCoulomb
static
Initial value:
(1.0 - 1.0/std::pow(1.0+fKappaCoulomb,1./3.))

Definition at line 88 of file G4StatMFParameters.hh.

◆ fCriticalTemp

const G4double G4StatMFParameters::fCriticalTemp = 18.0*MeV
static

Definition at line 84 of file G4StatMFParameters.hh.

◆ fE0

const G4double G4StatMFParameters::fE0 = 16.0*MeV
static

Definition at line 80 of file G4StatMFParameters.hh.

◆ fEpsilon0

const G4double G4StatMFParameters::fEpsilon0 = 16.0*MeV
static

Definition at line 78 of file G4StatMFParameters.hh.

◆ fGamma0

const G4double G4StatMFParameters::fGamma0 = 25.0*MeV
static

Definition at line 82 of file G4StatMFParameters.hh.

◆ fKappa

const G4double G4StatMFParameters::fKappa = 1.0
static

Definition at line 74 of file G4StatMFParameters.hh.

◆ fKappaCoulomb

const G4double G4StatMFParameters::fKappaCoulomb = 2.0
static

Definition at line 76 of file G4StatMFParameters.hh.

◆ fr0

const G4double G4StatMFParameters::fr0 = 1.17*fermi
static

Definition at line 86 of file G4StatMFParameters.hh.


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