source: trunk/source/processes/hadronic/models/de_excitation/evaporation/src/G4NeutronEvaporationProbability.cc @ 1347

Last change on this file since 1347 was 1347, checked in by garnier, 13 years ago

geant4 tag 9.4

File size: 6.9 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// $Id: G4NeutronEvaporationProbability.cc,v 1.16 2010/11/17 11:06:03 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-04-ref-00 $
28//
29// J.M. Quesada (August2008). Based on:
30//
31// Hadronic Process: Nuclear De-excitations
32// by V. Lara (Oct 1998)
33//
34// Modified:
35// 03-09-2008 J.M. Quesada for external choice of inverse cross section option
36// 17-11-2010 V.Ivanchenko integer Z and A
37
38#include "G4NeutronEvaporationProbability.hh"
39
40G4NeutronEvaporationProbability::G4NeutronEvaporationProbability() :
41    G4EvaporationProbability(1,0,2,&theCoulombBarrier) // A,Z,Gamma,&theCoulombBarrier
42{}
43
44G4NeutronEvaporationProbability::~G4NeutronEvaporationProbability()
45{}
46
47G4double G4NeutronEvaporationProbability::CalcAlphaParam(const G4Fragment & fragment) 
48{ 
49  return 0.76+2.2/fG4pow->Z13(fragment.GetA_asInt()-GetA());
50}
51       
52G4double G4NeutronEvaporationProbability::CalcBetaParam(const G4Fragment &  fragment) 
53{ 
54  return (2.12/fG4pow->Z23(fragment.GetA_asInt()-GetA()) - 0.05)*MeV/
55    CalcAlphaParam(fragment); 
56}
57
58////////////////////////////////////////////////////////////////////////////////////
59//J. M. Quesada (Dec 2007-June 2008): New inverse reaction cross sections
60//OPT=0 Dostrovski's parameterization
61//OPT=1,2 Chatterjee's paramaterization
62//OPT=3,4 Kalbach's parameterization
63//
64G4double
65G4NeutronEvaporationProbability::CrossSection(const  G4Fragment & fragment, G4double K)
66{ 
67  theA=GetA();
68  theZ=GetZ();
69  ResidualA=fragment.GetA_asInt()-theA;
70  ResidualZ=fragment.GetZ_asInt()-theZ; 
71 
72  ResidualAthrd=fG4pow->Z13(ResidualA);
73  FragmentA=fragment.GetA_asInt();
74  FragmentAthrd=fG4pow->Z13(FragmentA);
75
76  if (OPTxs==0) {std::ostringstream errOs;
77    errOs << "We should'n be here (OPT =0) at evaporation cross section calculation (neutrons)!!"  <<G4endl;
78    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
79    return 0.;}
80  else if( OPTxs==1 ||OPTxs==2) return GetOpt12( K);
81  else if (OPTxs==3 || OPTxs==4)  return GetOpt34( K);
82  else{
83    std::ostringstream errOs;
84    errOs << "BAD NEUTRON CROSS SECTION OPTION AT EVAPORATION!!"  <<G4endl;
85    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
86    return 0.;
87  }
88}
89 
90//********************* OPT=1,2 : Chatterjee's cross section ***************
91//(fitting to cross section from Bechetti & Greenles OM potential)
92
93G4double G4NeutronEvaporationProbability::GetOpt12(G4double K)
94{
95  G4double Kc=K;
96
97  // Pramana (Bechetti & Greenles) for neutrons is chosen
98
99  // JMQ  xsec is set constat above limit of validity
100  if (K > 50*MeV) { Kc = 50*MeV; }
101
102  G4double landa, landa0, landa1, mu, mu0, mu1,nu, nu0, nu1, nu2,xs;
103
104  landa0 = 18.57;
105  landa1 = -22.93;
106  mu0 = 381.7;
107  mu1 = 24.31;
108  nu0 = 0.172;
109  nu1 = -15.39;
110  nu2 = 804.8;
111  landa = landa0/ResidualAthrd + landa1;
112  mu = mu0*ResidualAthrd + mu1*ResidualAthrd*ResidualAthrd;
113  nu = nu0*ResidualAthrd*ResidualA + nu1*ResidualAthrd*ResidualAthrd + nu2 ;
114  xs=landa*Kc + mu + nu/Kc;
115  if (xs <= 0.0 ){
116    std::ostringstream errOs;
117    G4cout<<"WARNING:  NEGATIVE OPT=1 neutron cross section "<<G4endl;     
118    errOs << "RESIDUAL: Ar=" << ResidualA << " Zr=" << ResidualZ <<G4endl;
119    errOs <<"  xsec("<<Kc<<" MeV) ="<<xs <<G4endl;
120    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
121              }
122  return xs;
123}
124
125// *********** OPT=3,4 : Kalbach's cross sections (from PRECO code)*************
126G4double G4NeutronEvaporationProbability::GetOpt34(G4double K)
127{
128  G4double landa, landa0, landa1, mu, mu0, mu1,nu, nu0, nu1, nu2;
129  G4double p, p0, p1, p2;
130  G4double flow,spill,ec,ecsq,xnulam,etest(0.),ra(0.),a,signor(1.),sig; 
131  G4double b,ecut,cut,ecut2,geom,elab;
132
133  //safety initialization
134  landa0=0;
135  landa1=0;
136  mu0=0.;
137  mu1=0.;
138  nu0=0.;
139  nu1=0.;
140  nu2=0.;
141  p0=0.;
142  p1=0.;
143  p2=0.;
144
145  flow = 1.e-18;
146  spill= 1.0e+18; 
147
148  // PRECO xs for neutrons is choosen
149  p0 = -312.;
150  p1= 0.;
151  p2 = 0.;
152  landa0 = 12.10;
153  landa1=  -11.27;
154  mu0 = 234.1;
155  mu1 = 38.26;
156  nu0 = 1.55;
157  nu1 = -106.1;
158  nu2 = 1280.8; 
159
160  if (ResidualA < 40)  { signor =0.7 + ResidualA*0.0075; }
161  if (ResidualA > 210) { signor = 1. + (ResidualA-210)/250.; }
162  landa = landa0/ResidualAthrd + landa1;
163  mu = mu0*ResidualAthrd + mu1*ResidualAthrd*ResidualAthrd;
164  nu = nu0*ResidualAthrd*ResidualA + nu1*ResidualAthrd*ResidualAthrd + nu2;
165
166  // JMQ very low energy behaviour corrected (problem  for A (apprx.)>60)
167  if (nu < 0.) { nu=-nu; }
168
169  ec = 0.5;
170  ecsq = 0.25;
171  p = p0;
172  xnulam = 1.;
173  etest = 32.;
174  //          ** etest is the energy above which the rxn cross section is
175  //          ** compared with the geometrical limit and the max taken.
176  //          ** xnulam here is a dummy value to be used later.
177
178  a = -2.*p*ec + landa - nu/ecsq;
179  b = p*ecsq + mu + 2.*nu/ec;
180  ecut = 0.;
181  cut = a*a - 4.*p*b;
182  if (cut > 0.) { ecut = std::sqrt(cut); }
183  ecut = (ecut-a) / (p+p);
184  ecut2 = ecut;
185  if (cut < 0.) { ecut2 = ecut - 2.; }
186  elab = K * FragmentA / G4double(ResidualA);
187  sig = 0.;
188  if (elab <= ec) { //start for E<Ec
189    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; } 
190  }              //end for E<Ec
191  else {           //start for  E>Ec
192    sig = (landa*elab+mu+nu/elab) * signor;
193    geom = 0.;
194    if (xnulam < flow || elab < etest) { return sig; }
195    geom = std::sqrt(theA*K);
196    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
197    geom = 31.416 * geom * geom;
198    sig = std::max(geom,sig);
199
200  }
201  return sig;
202}
203
Note: See TracBrowser for help on using the repository browser.