source: trunk/source/processes/hadronic/models/de_excitation/multifragmentation/src/G4StatMFMacroTetraNucleon.cc @ 1340

Last change on this file since 1340 was 1340, checked in by garnier, 14 years ago

update ti head

File size: 4.8 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4StatMFMacroTetraNucleon.cc,v 1.7 2008/10/24 22:57:07 dennis Exp $
28// GEANT4 tag $Name: geant4-09-03-ref-09 $
29//
30// Hadronic Process: Nuclear De-excitations
31// by V. Lara
32
33#include "G4StatMFMacroTetraNucleon.hh"
34
35// Copy constructor
36G4StatMFMacroTetraNucleon::
37G4StatMFMacroTetraNucleon(const G4StatMFMacroTetraNucleon & ) :
38    G4VStatMFMacroCluster(0)  // Beacuse the def. constr. of base class is private
39{
40    throw G4HadronicException(__FILE__, __LINE__, "G4StatMFMacroTetraNucleon::copy_constructor meant to not be accessable");
41}
42
43// Operators
44
45G4StatMFMacroTetraNucleon & G4StatMFMacroTetraNucleon::
46operator=(const G4StatMFMacroTetraNucleon & )
47{
48    throw G4HadronicException(__FILE__, __LINE__, "G4StatMFMacroTetraNucleon::operator= meant to not be accessable");
49    return *this;
50}
51
52
53G4bool G4StatMFMacroTetraNucleon::operator==(const G4StatMFMacroTetraNucleon & ) const
54{
55    throw G4HadronicException(__FILE__, __LINE__, "G4StatMFMacroTetraNucleon::operator== meant to not be accessable");
56    return false;
57}
58 
59
60G4bool G4StatMFMacroTetraNucleon::operator!=(const G4StatMFMacroTetraNucleon & ) const
61{
62    throw G4HadronicException(__FILE__, __LINE__, "G4StatMFMacroTetraNucleon::operator!= meant to not be accessable");
63    return true;
64}
65
66
67
68G4double G4StatMFMacroTetraNucleon::CalcMeanMultiplicity(const G4double FreeVol, const G4double mu, 
69                                                         const G4double nu, const G4double T)
70{
71    const G4double ThermalWaveLenght = 16.15*fermi/std::sqrt(T);
72       
73    const G4double lambda3 = ThermalWaveLenght*ThermalWaveLenght*ThermalWaveLenght;
74       
75    const G4double degeneracy = 1;  // He4
76       
77    const G4double Coulomb = (3./5.)*(elm_coupling/G4StatMFParameters::Getr0())*
78        (1.0 - 1.0/std::pow(1.0+G4StatMFParameters::GetKappaCoulomb(),1./3.));
79
80    const G4double BindingE = G4NucleiProperties::GetBindingEnergy(theA,2); //old value was 30.11*MeV
81       
82    G4double exponent = (BindingE + theA*(mu+nu*theZARatio+T*T/_InvLevelDensity) - 
83                         Coulomb*theZARatio*theZARatio*std::pow(static_cast<G4double>(theA),5./3.))/T;
84    if (exponent > 700.0) exponent = 700.0;
85   
86    _MeanMultiplicity = ( degeneracy*FreeVol* static_cast<G4double>(theA)* 
87                          std::sqrt(static_cast<G4double>(theA))/lambda3)* 
88        std::exp(exponent);
89                         
90    return _MeanMultiplicity;   
91}
92
93
94G4double G4StatMFMacroTetraNucleon::CalcEnergy(const G4double T)
95{
96    const G4double Coulomb = (3./5.)*(elm_coupling/G4StatMFParameters::Getr0())*
97        (1.0 - 1.0/std::pow(1.0+G4StatMFParameters::GetKappaCoulomb(),1./3.));
98                                                                       
99    return _Energy  = -G4NucleiProperties::GetBindingEnergy(theA,2) + 
100        Coulomb * theZARatio * theZARatio * std::pow(static_cast<G4double>(theA),5./3.) +
101        (3./2.) * T +
102        theA * T*T/_InvLevelDensity;
103                                                       
104}
105
106
107
108G4double G4StatMFMacroTetraNucleon::CalcEntropy(const G4double T, const G4double FreeVol)
109{
110    const G4double ThermalWaveLenght = 16.15*fermi/std::sqrt(T);
111    const G4double lambda3 = ThermalWaveLenght*ThermalWaveLenght*ThermalWaveLenght;
112
113    G4double Entropy = 0.0;
114    if (_MeanMultiplicity > 0.0)
115        Entropy = _MeanMultiplicity*(5./2.+
116                                     std::log(8.0*FreeVol/(lambda3*_MeanMultiplicity)))+ // 8 = theA*std::sqrt(theA)
117            8.0*T/_InvLevelDensity;                     
118                                                               
119    return Entropy;
120}
Note: See TracBrowser for help on using the repository browser.