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 // 00027 // $Id$ 00028 // 00029 // Hadronic Process: Nuclear De-excitations 00030 // by V. Lara (Oct 1998) 00031 // 00032 // 17.11.2010 V.Ivanchenko cleanup and add usage of G4Pow 00033 00034 #include "G4FissionBarrier.hh" 00035 #include "G4SystemOfUnits.hh" 00036 #include "G4Pow.hh" 00037 00038 G4FissionBarrier::G4FissionBarrier() 00039 {} 00040 00041 G4FissionBarrier::~G4FissionBarrier() 00042 {} 00043 00044 G4double 00045 G4FissionBarrier::FissionBarrier(G4int A, G4int Z, G4double U) 00046 // Compute fission barrier according with Barashenkov's 00047 // prescription for A >= 65 00048 { 00049 if (A >= 65) { 00050 return BarashenkovFissionBarrier(A,Z)/(1.0 + std::sqrt(U/(2.0*A))); 00051 } else { return 100.0*GeV; } 00052 } 00053 00054 G4double 00055 G4FissionBarrier::BarashenkovFissionBarrier(G4int A, G4int Z) 00056 // Calculates Fission Barrier heights 00057 { 00058 // Liquid drop model parameters for 00059 // surface energy of a spherical nucleus 00060 const G4double aSurf = 17.9439*MeV; 00061 // and coulomb energy 00062 const G4double aCoul = 0.7053*MeV; 00063 const G4double k = 1.7826; 00064 G4int N = A - Z; 00065 00066 // fissibility parameter 00067 G4double x = (aCoul/(2.0*aSurf))*(Z*Z)/static_cast<G4double>(A); 00068 x /= (1.0 - k*(N-Z)*(N-Z)/static_cast<G4double>(A*A)); 00069 00070 // Liquid drop model part of Fission Barrier 00071 G4double BF0 = aSurf*G4Pow::GetInstance()->Z23(A); 00072 if (x <= 2./3.) { BF0 *= 0.38*(3./4.-x); } 00073 else { BF0 *= 0.83*(1. - x)*(1. - x)*(1. - x); } 00074 00075 // 00076 G4double D = 1.248*MeV; 00077 D *= (N - 2*(N/2) + Z - 2*(Z/2)); 00078 00079 return BF0 + D - SellPlusPairingCorrection(Z,N); 00080 } 00081