source: trunk/source/processes/hadronic/models/de_excitation/fission/src/G4FissionProbability.cc @ 962

Last change on this file since 962 was 962, checked in by garnier, 15 years ago

update processes

File size: 4.4 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: G4FissionProbability.cc,v 1.9 2009/02/15 17:03:25 vnivanch Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
29//
30// Hadronic Process: Nuclear De-excitations
31// by V. Lara (Oct 1998)
32//
33//
34// J.M.Quesada (14 february 2009) bug fixed in fission width: missing parenthesis in the denominator
35
36
37#include "G4FissionProbability.hh"
38#include "G4PairingCorrection.hh"
39
40
41
42G4FissionProbability::G4FissionProbability(const G4FissionProbability &) : G4VEmissionProbability()
43{
44    throw G4HadronicException(__FILE__, __LINE__, "G4FissionProbability::copy_constructor meant to not be accessable");
45}
46
47
48
49
50const G4FissionProbability & G4FissionProbability::operator=(const G4FissionProbability &)
51{
52    throw G4HadronicException(__FILE__, __LINE__, "G4FissionProbability::operator= meant to not be accessable");
53    return *this;
54}
55
56
57G4bool G4FissionProbability::operator==(const G4FissionProbability &) const
58{
59    return false;
60}
61
62G4bool G4FissionProbability::operator!=(const G4FissionProbability &) const
63{
64    return true;
65}
66
67
68G4double G4FissionProbability::EmissionProbability(const G4Fragment & fragment, const G4double MaximalKineticEnergy)
69    // Compute integrated probability of fission channel
70{
71    if (MaximalKineticEnergy <= 0.0) return 0.0;
72    G4double A = fragment.GetA();
73    G4double Z = fragment.GetZ();
74    G4double U = fragment.GetExcitationEnergy();
75 
76    G4double Ucompound = U - G4PairingCorrection::GetInstance()->GetPairingCorrection(static_cast<G4int>(A),
77                                                                                      static_cast<G4int>(Z));
78    G4double Ufission = U - G4PairingCorrection::GetInstance()->GetFissionPairingCorrection(static_cast<G4int>(A),
79                                                                                            static_cast<G4int>(Z));
80 
81    G4double SystemEntropy = 2.0*std::sqrt(theEvapLDP.LevelDensityParameter(static_cast<G4int>(A),
82                                                                       static_cast<G4int>(Z),
83                                                                       Ucompound)*Ucompound);
84       
85    G4double afission = theFissLDP.LevelDensityParameter(static_cast<G4int>(A),
86                                                         static_cast<G4int>(Z),
87                                                         Ufission);
88
89    G4double Cf = 2.0*std::sqrt(afission*MaximalKineticEnergy);
90
91    //    G4double Q1 = 1.0 + (Cf - 1.0)*std::exp(Cf);
92    //    G4double Q2 = 4.0*pi*afission*std::exp(SystemEntropy);
93       
94    //    G4double probability = Q1/Q2;
95 
96   
97    G4double Exp1 = 0.0;
98    if (SystemEntropy <= 160.0) Exp1 = std::exp(-SystemEntropy);
99    // @@@@@@@@@@@@@@@@@ hpw changed max to min - cannot notify vicente now
100    G4double Exp2 = std::exp( std::min(700.0,Cf-SystemEntropy) ); 
101
102    // JMQ 14/02/09 BUG fixed in fission probability (missing parenthesis at denominator)
103    //AH fix from Vincente:    G4double probability = (Exp1 + (1.0-Cf)*Exp2) / 4.0*pi*afission;
104    //    G4double probability = (Exp1 + (Cf-1.0)*Exp2) / 4.0*pi*afission;
105    G4double probability = (Exp1 + (Cf-1.0)*Exp2) / (4.0*pi*afission);
106
107
108   
109    return probability;
110}
111
Note: See TracBrowser for help on using the repository browser.