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

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

tag geant4.9.4 beta 1 + modifs locales

File size: 3.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//
27// $Id: G4FissionBarrier.cc,v 1.7 2009/12/16 16:50:07 vnivanch Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30// Hadronic Process: Nuclear De-excitations
31// by V. Lara (Oct 1998)
32
33
34#include "G4FissionBarrier.hh"
35
36G4FissionBarrier::G4FissionBarrier(const G4FissionBarrier & ) : G4VFissionBarrier()
37{
38    throw G4HadronicException(__FILE__, __LINE__, "G4FissionBarrier::copy_constructor meant to not be accessable.");
39}
40
41
42const G4FissionBarrier & G4FissionBarrier::operator=(const G4FissionBarrier & )
43{
44    throw G4HadronicException(__FILE__, __LINE__, "G4FissionBarrier::operator= meant to not be accessable.");
45    return *this;
46}
47
48G4bool G4FissionBarrier::operator==(const G4FissionBarrier & ) const 
49{
50    return false;
51}
52
53G4bool G4FissionBarrier::operator!=(const G4FissionBarrier & ) const 
54{
55    return true;
56}
57
58
59
60G4double G4FissionBarrier::FissionBarrier(const G4int A, const G4int Z, const G4double U)
61    // Compute fission barrier according with Barashenkov's prescription for A >= 65
62{
63    if (A >= 65) return BarashenkovFissionBarrier(A,Z)/(1.0 + std::sqrt(U/(2.0*static_cast<G4double>(A))));
64    else return 100.0*GeV;
65}
66
67
68G4double G4FissionBarrier::BarashenkovFissionBarrier(const G4int A, const G4int Z)
69    // Calculates Fission Barrier heights
70{
71    // Liquid drop model parameters for
72    // surface energy of a spherical nucleus
73    const G4double aSurf = 17.9439*MeV;
74    // and coulomb energy
75    const G4double aCoul = 0.7053*MeV;
76    const G4int N = A - Z;
77    const G4double k = 1.7826;
78
79    // fissibility parameter
80    G4double x = (aCoul/(2.0*aSurf))*(static_cast<G4double>(Z)*static_cast<G4double>(Z))/static_cast<G4double>(A);
81    x /= (1.0 - k*(static_cast<G4double>(N-Z)/static_cast<G4double>(A))*
82          (static_cast<G4double>(N-Z)/static_cast<G4double>(A)));
83 
84    // Liquid drop model part of Fission Barrier
85    G4double BF0 = aSurf*std::pow(static_cast<G4double>(A),2./3.);
86    if (x <= 2./3.) BF0 *= 0.38*(3./4.-x);
87    else BF0 *= 0.83*(1. - x)*(1. - x)*(1. - x);
88
89
90    //
91    G4double D = 1.248*MeV;
92    D *= (static_cast<G4double>(N)-2.0*(N/2)) + (static_cast<G4double>(Z)-2.0*(Z/2));
93
94    return BF0 + D - SellPlusPairingCorrection(Z,N);
95}
96
Note: See TracBrowser for help on using the repository browser.