G4StatMFParameters.cc

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 //
00027 // $Id$
00028 //
00029 // Hadronic Process: Nuclear De-excitations
00030 // by V. Lara
00031 
00032 
00033 #include "G4StatMFParameters.hh"
00034 #include "G4SystemOfUnits.hh"
00035 
00036 const G4double G4StatMFParameters::_Kappa = 1.0; // dimensionless
00037 
00038 const G4double G4StatMFParameters::_KappaCoulomb = 2.0; // dimensionless
00039 
00040 const G4double G4StatMFParameters::_Epsilon0 = 16.0*MeV;
00041 
00042 // Bethe-Weizsacker coefficients
00043 const G4double G4StatMFParameters::_E0 = 16.0*MeV;
00044 
00045 const G4double G4StatMFParameters::_Beta0 = 18.0*MeV;
00046 
00047 const G4double G4StatMFParameters::_Gamma0 = 25.0*MeV;
00048 
00049 // Critical temperature (for liquid-gas phase transitions)
00050 const G4double G4StatMFParameters::_CriticalTemp = 18.0*MeV;
00051 
00052 // Nuclear radius
00053 const G4double G4StatMFParameters::_r0 = 1.17*fermi;
00054 
00055 G4double G4StatMFParameters::Beta(const G4double T)
00056 {
00057   if (T > _CriticalTemp) return 0.0;
00058   else {
00059     G4double CriticalTempSqr = _CriticalTemp*_CriticalTemp;
00060     G4double TempSqr = T*T;
00061     G4double tmp = (CriticalTempSqr-TempSqr)/(CriticalTempSqr+TempSqr);
00062                 
00063     return _Beta0*tmp*std::pow(tmp,1.0/4.0);
00064   }
00065 }
00066 
00067 G4double G4StatMFParameters::DBetaDT(const G4double T) 
00068 {
00069   if (T > _CriticalTemp) return 0.0;
00070   else {
00071     G4double CriticalTempSqr = _CriticalTemp*_CriticalTemp;
00072     G4double TempSqr = T*T;
00073     G4double tmp = (CriticalTempSqr-TempSqr)/(CriticalTempSqr+TempSqr);
00074                 
00075     return -5.0*_Beta0*std::pow(tmp,1.0/4.0)*(CriticalTempSqr*T)/
00076       ((CriticalTempSqr+TempSqr)*(CriticalTempSqr+TempSqr));
00077   }
00078 }
00079 
00080 G4double G4StatMFParameters::GetMaxAverageMultiplicity(const G4int A)
00081 {
00082   // Maximun average multiplicity: M_0 = 2.6 for A ~ 200 
00083   // and M_0 = 3.3 for A <= 110
00084   G4double MaxAverageMultiplicity = 2.6;
00085   if (A <= 110) MaxAverageMultiplicity = 3.3;
00086   return MaxAverageMultiplicity;
00087 }
00088 
00089 G4StatMFParameters G4StatMFParameters::theStatMFParameters;
00090 
00091 
00092 G4StatMFParameters * G4StatMFParameters::GetAddress()
00093 { return &theStatMFParameters; }
00094 

Generated on Mon May 27 17:49:54 2013 for Geant4 by  doxygen 1.4.7