source: trunk/source/processes/hadronic/models/de_excitation/fission/src/G4FissionProbability.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.6 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.10 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//
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
40G4FissionProbability::G4FissionProbability()
41{}
42
43G4FissionProbability::~G4FissionProbability()
44{}
45
46
47G4double
48G4FissionProbability::EmissionProbability(const G4Fragment & fragment, 
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 - 
58    G4PairingCorrection::GetInstance()->GetPairingCorrection(A,Z);
59
60  G4double Ufission = U - 
61    G4PairingCorrection::GetInstance()->GetFissionPairingCorrection(A,Z);
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
Note: See TracBrowser for help on using the repository browser.