Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
G4FissionProbability.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//
33// J.M.Quesada (14 february 2009) bug fixed in fission width: missing parenthesis in the denominator
34
35
39
41{}
42
44{}
45
46
49 G4double MaximalKineticEnergy)
50 // Compute integrated probability of fission channel
51{
52 if (MaximalKineticEnergy <= 0.0) return 0.0;
53 G4int A = fragment.GetA_asInt();
54 G4int Z = fragment.GetZ_asInt();
55 G4double U = fragment.GetExcitationEnergy();
56
57 G4double Ucompound = U -
59
60 G4double Ufission = U -
62
63 G4double SystemEntropy =
64 2.0*std::sqrt(theEvapLDP.LevelDensityParameter(A,Z,Ucompound)*Ucompound);
65
66 G4double afission = theFissLDP.LevelDensityParameter(A,Z,Ufission);
67
68 G4double Cf = 2.0*std::sqrt(afission*MaximalKineticEnergy);
69
70 // G4double Q1 = 1.0 + (Cf - 1.0)*std::exp(Cf);
71 // G4double Q2 = 4.0*pi*afission*std::exp(SystemEntropy);
72
73 // G4double probability = Q1/Q2;
74
75 G4double Exp1 = 0.0;
76 if (SystemEntropy <= 160.0) { Exp1 = std::exp(-SystemEntropy); }
77 // @@@@@@@@@@@@@@@@@ hpw changed max to min - cannot notify vicente now
78 G4double Exp2 = std::exp( std::min(700.0,Cf-SystemEntropy) );
79
80 // JMQ 14/02/09 BUG fixed in fission probability (missing parenthesis
81 // at denominator)
82 //AH fix from Vincente: G4double probability =
83 // (Exp1 + (1.0-Cf)*Exp2) / 4.0*pi*afission;
84 // G4double probability = (Exp1 + (Cf-1.0)*Exp2) / 4.0*pi*afission;
85 G4double probability = (Exp1 + (Cf-1.0)*Exp2) / (4.0*pi*afission);
86
87 return probability;
88}
89
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
G4double LevelDensityParameter(G4int A, G4int Z, G4double U) const
G4double LevelDensityParameter(G4int A, G4int Z, G4double U) const
G4double EmissionProbability(const G4Fragment &fragment, G4double MaximalKineticEnergy)
G4double GetExcitationEnergy() const
Definition: G4Fragment.hh:235
G4int GetZ_asInt() const
Definition: G4Fragment.hh:223
G4int GetA_asInt() const
Definition: G4Fragment.hh:218
static G4PairingCorrection * GetInstance()
G4double GetFissionPairingCorrection(G4int A, G4int Z) const
G4double GetPairingCorrection(G4int A, G4int Z) const