source: trunk/source/processes/electromagnetic/utils/src/G4ionEffectiveCharge.cc @ 869

Last change on this file since 869 was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 6.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// $Id: G4ionEffectiveCharge.cc,v 1.17.2.1 2008/04/22 15:28:13 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-01-patch-02 $
28//
29// -------------------------------------------------------------------
30//
31// GEANT4 Class file
32//
33//
34// File name:     G4ionEffectiveCharge
35//
36// Author:        Vladimir Ivanchenko
37//
38// Creation date: 07.05.2002
39//
40// Modifications:
41// 12.09.2004 Set low energy limit to 1 keV (V.Ivanchenko)
42// 25.01.2005 Add protection - min Charge 0.1 eplus (V.Ivanchenko)
43// 28.04.2006 Set upper energy limit to 50 MeV (V.Ivanchenko)
44// 23.05.2006 Set upper energy limit to Z*10 MeV (V.Ivanchenko)
45// 15.08.2006 Add protection for not defined material (V.Ivanchenko)
46// 27-09-2007 Use Fermi energy from material, optimazed formulas (V.Ivanchenko)
47//
48
49// -------------------------------------------------------------------
50//
51//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
52//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
53
54#include "G4ionEffectiveCharge.hh"
55#include "G4UnitsTable.hh"
56#include "G4ParticleDefinition.hh"
57#include "G4Material.hh"
58
59//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
60
61G4ionEffectiveCharge::G4ionEffectiveCharge()
62{
63  chargeCorrection = 1.0;
64  energyHighLimit  = 10.0*MeV;
65  energyLowLimit   = 1.0*keV;
66  energyBohr       = 25.*keV;
67  massFactor       = amu_c2/(proton_mass_c2*keV);
68  minCharge        = 0.1;
69}
70
71//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
72
73G4ionEffectiveCharge::~G4ionEffectiveCharge()
74{}
75
76//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
77
78G4double G4ionEffectiveCharge::EffectiveCharge(const G4ParticleDefinition* p,
79                                               const G4Material* material,
80                                                     G4double kineticEnergy)
81{
82  G4double mass   = p->GetPDGMass();
83  G4double charge = p->GetPDGCharge();
84  G4double Zi     = charge/eplus;
85
86  chargeCorrection = 1.0;
87
88  // The aproximation of ion effective charge from:
89  // J.F.Ziegler, J.P. Biersack, U. Littmark
90  // The Stopping and Range of Ions in Matter,
91  // Vol.1, Pergamon Press, 1985
92  // Fast ions or hadrons
93  G4double reducedEnergy = kineticEnergy * proton_mass_c2/mass ;
94  if( reducedEnergy > Zi*energyHighLimit || Zi < 1.5 || !material) return charge;
95
96  static G4double c[6] = {0.2865,  0.1266, -0.001429,
97                          0.02402,-0.01135, 0.001475} ;
98
99  G4double z    = material->GetIonisation()->GetZeffective();
100  reducedEnergy = std::max(reducedEnergy,energyLowLimit);
101  G4double q;
102
103  // Helium ion case
104  if( Zi < 2.5 ) {
105
106    G4double Q = std::max(0.0,std::log(reducedEnergy*massFactor));
107    G4double x = c[0];
108    G4double y = 1.0;
109    for (G4int i=1; i<6; i++) {
110      y *= Q;
111      x += y * c[i] ;
112    }
113    G4double ex;
114    if(x < 0.2) ex = x * (1 - 0.5*x);
115    else        ex = 1. - std::exp(-x);
116
117    G4double tq = 7.6 - Q;
118    G4double tq2= tq*tq;
119    G4double tt = ( 0.007 + 0.00005 * z );
120    if(tq2 < 0.2) tt *= (1.0 - tq2 + 0.5*tq2*tq2);
121    else          tt *= std::exp(-tq2);
122    q = (1.0 + tt) * std::sqrt(ex);
123
124    // Heavy ion case
125  } else {
126   
127    G4double z23  = std::pow(z, 0.666666);
128    G4double zi13 = std::pow(Zi, 0.333333);
129    G4double zi23 = zi13*zi13;
130    G4double e = std::max(reducedEnergy,energyBohr/z23);
131
132    // v1 is ion velocity in vF unit
133    G4double eF   = material->GetIonisation()->GetFermiEnergy();
134    G4double v1sq = e/eF;
135    G4double vFsq = eF/energyBohr;
136    G4double vF   = std::sqrt(vFsq);
137
138    G4double y ;
139
140    // Faster than Fermi velocity
141    if ( v1sq > 1.0 ) {
142      y = vF * std::sqrt(v1sq) * ( 1.0 + 0.2/v1sq ) / zi23 ;
143
144      // Slower than Fermi velocity
145    } else {
146      y = 0.692308 * vF * (1.0 + 0.666666*v1sq + v1sq*v1sq/15.0) / zi23 ;
147    }
148
149    G4double y3 = std::pow(y, 0.3) ;
150    //    G4cout << "y= " << y << " y3= " << y3 << " v1= " << v1 << " vF= " << vF << G4endl;
151    q = 1.0 - std::exp( 0.803*y3 - 1.3167*y3*y3 - 0.38157*y - 0.008983*y*y ) ;
152
153    //    q = 1.0 - std::exp(-0.95*std::sqrt(reducedEnergy/energyBohr)/zi23);
154
155    G4double qmin = minCharge/Zi;
156
157    if(q < qmin) q = qmin;
158   
159    G4double tq = 7.6 - std::log(reducedEnergy/keV);
160    G4double tq2= tq*tq;
161    G4double sq = ( 0.18 + 0.0015 * z ) / (Zi*Zi);
162    if(tq2 < 0.2) sq *= (1.0 - tq2 + 0.5*tq2*tq2);
163    else          sq *= std::exp(-tq2);
164    sq += 1.0;
165    //    G4cout << "sq= " << sq << G4endl;
166
167    // Screen length according to
168    // J.F.Ziegler and J.M.Manoyan, The stopping of ions in compaunds,
169    // Nucl. Inst. & Meth. in Phys. Res. B35 (1988) 215-228.
170
171    G4double lambda = 10.0 * vF / (zi13 * (6.0 + q));
172    if(q < 0.2) lambda *= (1.0 - 0.666666*q - q*q/9.0);
173    else        lambda *= std::pow(1.0-q, 0.666666);
174
175    G4double lambda2 = lambda*lambda;
176
177    G4double xx = (0.5/q - 0.5)/vFsq;
178    if(lambda2 < 0.2) xx *= lambda2*(1.0 - 0.5*lambda2);
179    else              xx *= std::log(1.0 + lambda2); 
180
181    chargeCorrection = sq * (1.0 + xx);
182  }
183  //  G4cout << "G4ionEffectiveCharge: charge= " << charge << " q= " << q
184  //         << " chargeCor= " << chargeCorrection
185  //       << " e(MeV)= " << kineticEnergy/MeV << G4endl;
186  return q*charge;
187}
188
189//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
190
191
Note: See TracBrowser for help on using the repository browser.