Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4FissionBarrier.cc
Go to the documentation of this file.
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 //
27 // $Id$
28 //
29 // Hadronic Process: Nuclear De-excitations
30 // by V. Lara (Oct 1998)
31 //
32 // 17.11.2010 V.Ivanchenko cleanup and add usage of G4Pow
33 
34 #include "G4FissionBarrier.hh"
35 #include "G4SystemOfUnits.hh"
36 #include "G4Pow.hh"
37 
39 {}
40 
42 {}
43 
44 G4double
46  // Compute fission barrier according with Barashenkov's
47  // prescription for A >= 65
48 {
49  if (A >= 65) {
50  return BarashenkovFissionBarrier(A,Z)/(1.0 + std::sqrt(U/(2.0*A)));
51  } else { return 100.0*GeV; }
52 }
53 
54 G4double
55 G4FissionBarrier::BarashenkovFissionBarrier(G4int A, G4int Z)
56  // Calculates Fission Barrier heights
57 {
58  // Liquid drop model parameters for
59  // surface energy of a spherical nucleus
60  const G4double aSurf = 17.9439*MeV;
61  // and coulomb energy
62  const G4double aCoul = 0.7053*MeV;
63  const G4double k = 1.7826;
64  G4int N = A - Z;
65 
66  // fissibility parameter
67  G4double x = (aCoul/(2.0*aSurf))*(Z*Z)/static_cast<G4double>(A);
68  x /= (1.0 - k*(N-Z)*(N-Z)/static_cast<G4double>(A*A));
69 
70  // Liquid drop model part of Fission Barrier
71  G4double BF0 = aSurf*G4Pow::GetInstance()->Z23(A);
72  if (x <= 2./3.) { BF0 *= 0.38*(3./4.-x); }
73  else { BF0 *= 0.83*(1. - x)*(1. - x)*(1. - x); }
74 
75  //
76  G4double D = 1.248*MeV;
77  D *= (N - 2*(N/2) + Z - 2*(Z/2));
78 
79  return BF0 + D - SellPlusPairingCorrection(Z,N);
80 }
81