source: trunk/source/processes/hadronic/models/de_excitation/fission/src/G4FissionBarrier.cc @ 1348

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

geant4 tag 9.4

File size: 3.1 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//
27// $Id: G4FissionBarrier.cc,v 1.8 2010/11/17 20:22:46 vnivanch Exp $
28// GEANT4 tag $Name: geant4-09-04-ref-00 $
29//
30// Hadronic Process: Nuclear De-excitations
31// by V. Lara (Oct 1998)
32//
33// 17.11.2010 V.Ivanchenko cleanup and add usage of G4Pow
34
35#include "G4FissionBarrier.hh"
36#include "G4Pow.hh"
37
38G4FissionBarrier::G4FissionBarrier()
39{}
40
41G4FissionBarrier::~G4FissionBarrier()
42{}
43
44G4double
45G4FissionBarrier::FissionBarrier(G4int A, G4int Z, G4double U)
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
54G4double
55G4FissionBarrier::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
Note: See TracBrowser for help on using the repository browser.