source: trunk/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundNeutron.cc @ 1340

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

update ti head

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