G4NeutronEvaporationProbability.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 // $Id$
00027 //
00028 // J.M. Quesada (August2008). Based on:
00029 //
00030 // Hadronic Process: Nuclear De-excitations
00031 // by V. Lara (Oct 1998)
00032 //
00033 // Modified:
00034 // 03-09-2008 J.M. Quesada for external choice of inverse cross section option
00035 // 17-11-2010 V.Ivanchenko integer Z and A
00036 
00037 #include "G4NeutronEvaporationProbability.hh"
00038 #include "G4SystemOfUnits.hh"
00039 
00040 G4NeutronEvaporationProbability::G4NeutronEvaporationProbability() :
00041     G4EvaporationProbability(1,0,2,&theCoulombBarrier) // A,Z,Gamma,&theCoulombBarrier
00042 {
00043   ResidualA = ResidualZ = theA = theZ = FragmentA = 0;
00044   ResidualAthrd = FragmentAthrd = 0.0;
00045 }
00046 
00047 G4NeutronEvaporationProbability::~G4NeutronEvaporationProbability()
00048 {}
00049 
00050 G4double G4NeutronEvaporationProbability::CalcAlphaParam(const G4Fragment & fragment) 
00051 { 
00052   return 0.76+2.2/fG4pow->Z13(fragment.GetA_asInt()-GetA());
00053 }
00054         
00055 G4double G4NeutronEvaporationProbability::CalcBetaParam(const G4Fragment &  fragment) 
00056 { 
00057   return (2.12/fG4pow->Z23(fragment.GetA_asInt()-GetA()) - 0.05)*MeV/
00058     CalcAlphaParam(fragment); 
00059 }
00060 
00062 //J. M. Quesada (Dec 2007-June 2008): New inverse reaction cross sections 
00063 //OPT=0 Dostrovski's parameterization
00064 //OPT=1,2 Chatterjee's paramaterization 
00065 //OPT=3,4 Kalbach's parameterization 
00066 // 
00067 G4double 
00068 G4NeutronEvaporationProbability::CrossSection(const  G4Fragment & fragment, G4double K)
00069 { 
00070   theA=GetA();
00071   theZ=GetZ();
00072   ResidualA=fragment.GetA_asInt()-theA;
00073   ResidualZ=fragment.GetZ_asInt()-theZ; 
00074   
00075   ResidualAthrd=fG4pow->Z13(ResidualA);
00076   FragmentA=fragment.GetA_asInt();
00077   FragmentAthrd=fG4pow->Z13(FragmentA);
00078 
00079   if (OPTxs==0) {std::ostringstream errOs;
00080     errOs << "We should'n be here (OPT =0) at evaporation cross section calculation (neutrons)!!"  <<G4endl;
00081     throw G4HadronicException(__FILE__, __LINE__, errOs.str());
00082     return 0.;}
00083   else if( OPTxs==1 ||OPTxs==2) return GetOpt12( K);
00084   else if (OPTxs==3 || OPTxs==4)  return GetOpt34( K);
00085   else{
00086     std::ostringstream errOs;
00087     errOs << "BAD NEUTRON CROSS SECTION OPTION AT EVAPORATION!!"  <<G4endl;
00088     throw G4HadronicException(__FILE__, __LINE__, errOs.str());
00089     return 0.;
00090   }
00091 }
00092  
00093 //********************* OPT=1,2 : Chatterjee's cross section ***************
00094 //(fitting to cross section from Bechetti & Greenles OM potential)
00095 
00096 G4double G4NeutronEvaporationProbability::GetOpt12(G4double K)
00097 {
00098   G4double Kc=K;
00099 
00100   // Pramana (Bechetti & Greenles) for neutrons is chosen 
00101 
00102   // JMQ  xsec is set constat above limit of validity
00103   if (K > 50*MeV) { Kc = 50*MeV; }
00104 
00105   G4double landa, landa0, landa1, mu, mum0, mu1,nu, nu0, nu1, nu2,xs;
00106 
00107   landa0 = 18.57;
00108   landa1 = -22.93;
00109   mum0 = 381.7;
00110   mu1 = 24.31;
00111   nu0 = 0.172;
00112   nu1 = -15.39;
00113   nu2 = 804.8;
00114   landa = landa0/ResidualAthrd + landa1;
00115   mu = mum0*ResidualAthrd + mu1*ResidualAthrd*ResidualAthrd;
00116   nu = nu0*ResidualAthrd*ResidualA + nu1*ResidualAthrd*ResidualAthrd + nu2 ;
00117   xs=landa*Kc + mu + nu/Kc;
00118   if (xs <= 0.0 ){
00119     std::ostringstream errOs;
00120     G4cout<<"WARNING:  NEGATIVE OPT=1 neutron cross section "<<G4endl;     
00121     errOs << "RESIDUAL: Ar=" << ResidualA << " Zr=" << ResidualZ <<G4endl;
00122     errOs <<"  xsec("<<Kc<<" MeV) ="<<xs <<G4endl;
00123     throw G4HadronicException(__FILE__, __LINE__, errOs.str());
00124               }
00125   return xs;
00126 }
00127 
00128 // *********** OPT=3,4 : Kalbach's cross sections (from PRECO code)*************
00129 G4double G4NeutronEvaporationProbability::GetOpt34(G4double K)
00130 {
00131   G4double landa, landa0, landa1, mu, mum0, mu1,nu, nu0, nu1, nu2;
00132   G4double p, p0;
00133   G4double flow,ec,ecsq,xnulam,etest(0.),ra(0.),a,signor(1.),sig; 
00134   G4double b,ecut,cut,ecut2,geom,elab;
00135 
00136   //safety initialization
00137   landa0=0;
00138   landa1=0;
00139   mum0=0.;
00140   mu1=0.;
00141   nu0=0.;
00142   nu1=0.;
00143   nu2=0.;
00144   p0=0.;
00145 
00146   flow = 1.e-18; 
00147 
00148   // PRECO xs for neutrons is choosen
00149   p0 = -312.;
00150   landa0 = 12.10;
00151   landa1=  -11.27;
00152   mum0 = 234.1;
00153   mu1 = 38.26;
00154   nu0 = 1.55;
00155   nu1 = -106.1;
00156   nu2 = 1280.8; 
00157 
00158   if (ResidualA < 40)  { signor =0.7 + ResidualA*0.0075; }
00159   if (ResidualA > 210) { signor = 1. + (ResidualA-210)/250.; }
00160   landa = landa0/ResidualAthrd + landa1;
00161   mu = mum0*ResidualAthrd + mu1*ResidualAthrd*ResidualAthrd;
00162   nu = nu0*ResidualAthrd*ResidualA + nu1*ResidualAthrd*ResidualAthrd + nu2;
00163 
00164   // JMQ very low energy behaviour corrected (problem  for A (apprx.)>60)
00165   if (nu < 0.) { nu=-nu; }
00166 
00167   ec = 0.5;
00168   ecsq = 0.25;
00169   p = p0;
00170   xnulam = 1.;
00171   etest = 32.;
00172   //          ** etest is the energy above which the rxn cross section is
00173   //          ** compared with the geometrical limit and the max taken.
00174   //          ** xnulam here is a dummy value to be used later.
00175 
00176   a = -2.*p*ec + landa - nu/ecsq;
00177   b = p*ecsq + mu + 2.*nu/ec;
00178   ecut = 0.;
00179   cut = a*a - 4.*p*b;
00180   if (cut > 0.) { ecut = std::sqrt(cut); }
00181   ecut = (ecut-a) / (p+p);
00182   ecut2 = ecut;
00183   if (cut < 0.) { ecut2 = ecut - 2.; }
00184   elab = K * FragmentA / G4double(ResidualA);
00185   sig = 0.;
00186   if (elab <= ec) { //start for E<Ec 
00187     if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; } 
00188   }              //end for E<Ec
00189   else {           //start for  E>Ec
00190     sig = (landa*elab+mu+nu/elab) * signor;
00191     geom = 0.;
00192     if (xnulam < flow || elab < etest) { return sig; }
00193     geom = std::sqrt(theA*K);
00194     geom = 1.23*ResidualAthrd + ra + 4.573/geom;
00195     geom = 31.416 * geom * geom;
00196     sig = std::max(geom,sig);
00197 
00198   }
00199   return sig;
00200 }
00201 

Generated on Mon May 27 17:48:58 2013 for Geant4 by  doxygen 1.4.7