Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4Evaporation Class Reference

#include <G4Evaporation.hh>

+ Inheritance diagram for G4Evaporation:

Public Member Functions

 G4Evaporation (G4VEvaporationChannel *photoEvaporation=nullptr)
 
virtual ~G4Evaporation ()
 
virtual void InitialiseChannels () final
 
virtual void BreakFragment (G4FragmentVector *, G4Fragment *theNucleus) final
 
void SetDefaultChannel ()
 
void SetGEMChannel ()
 
void SetGEMVIChannel ()
 
void SetCombinedChannel ()
 
- Public Member Functions inherited from G4VEvaporation
 G4VEvaporation ()
 
virtual ~G4VEvaporation ()
 
virtual void BreakFragment (G4FragmentVector *, G4Fragment *theNucleus)
 
virtual void InitialiseChannels ()
 
virtual void SetPhotonEvaporation (G4VEvaporationChannel *ptr)
 
void SetFermiBreakUp (G4VFermiBreakUp *ptr)
 
G4VFermiBreakUpGetFermiBreakUp () const
 
G4VEvaporationChannelGetPhotonEvaporation ()
 
G4VEvaporationChannelGetFissionChannel ()
 
void SetOPTxs (G4int opt)
 
void UseSICB (G4bool use)
 
size_t GetNumberOfChannels () const
 

Additional Inherited Members

- Protected Member Functions inherited from G4VEvaporation
void CleanChannels ()
 
- Protected Attributes inherited from G4VEvaporation
G4VEvaporationChannelthePhotonEvaporation
 
G4VFermiBreakUptheFBU
 
G4int OPTxs
 
G4bool useSICB
 
std::vector< G4VEvaporationChannel * > * theChannels
 
G4VEvaporationFactorytheChannelFactory
 

Detailed Description

Definition at line 61 of file G4Evaporation.hh.

Constructor & Destructor Documentation

◆ G4Evaporation()

G4Evaporation::G4Evaporation ( G4VEvaporationChannel photoEvaporation = nullptr)
explicit

Definition at line 66 of file G4Evaporation.cc.

67 : G4VEvaporation(),fVerbose(0),nChannels(0),minExcitation(0.1*keV),
68 isInitialised(false)
69{
70 if(photoEvaporation) { SetPhotonEvaporation(photoEvaporation); }
72
74 theChannelFactory = nullptr;
75
79 unstableBreakUp = new G4UnstableFragmentBreakUp();
80 /*
81 G4cout << "G4Evaporation() " << this << " thePhotonEvaporation: "
82 << photoEvaporation << " UnstableFragmentBreakUp: "
83 << unstableBreakUp << G4endl;
84 */
85}
static G4NistManager * Instance()
static G4NuclearLevelData * GetInstance()
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
virtual void SetPhotonEvaporation(G4VEvaporationChannel *ptr)
G4VEvaporationFactory * theChannelFactory

◆ ~G4Evaporation()

G4Evaporation::~G4Evaporation ( )
virtual

Definition at line 87 of file G4Evaporation.cc.

88{
89 delete unstableBreakUp;
90}

Member Function Documentation

◆ BreakFragment()

void G4Evaporation::BreakFragment ( G4FragmentVector theResult,
G4Fragment theNucleus 
)
finalvirtual

Reimplemented from G4VEvaporation.

Definition at line 179 of file G4Evaporation.cc.

181{
182 if(!isInitialised) { InitialiseChannels(); }
183
184 G4double totprob, prob, oldprob = 0.0;
185 size_t maxchannel, i;
186
187 G4int Amax = theResidualNucleus->GetA_asInt();
188 if(fVerbose > 1) {
189 G4cout << "### G4Evaporation::BreakItUp loop" << G4endl;
190 }
191
192 // Starts loop over evaporated particles, loop is limited by number
193 // of nucleons
194 for(G4int ia=0; ia<Amax; ++ia) {
195
196 // g,n,p and light fragments - evaporation is finished
197 G4int Z = theResidualNucleus->GetZ_asInt();
198 G4int A = theResidualNucleus->GetA_asInt();
199 if(A <= 1) { break; }
200 G4double Eex = theResidualNucleus->GetExcitationEnergy();
201
202 // stop deecitation loop if residual can be deexcited by FBU
203 if(theFBU->IsApplicable(Z, A, Eex)) { break; }
204
205 // check if it is stable, then finish evaporation
206 G4double abun = nist->GetIsotopeAbundance(Z, A);
207 // stop deecitation loop in the case of a cold stable fragment
208 if(Eex <= minExcitation &&
209 (abun > 0.0 || (A == 3 && (Z == 1 || Z == 2)))) { break; }
210
211 totprob = 0.0;
212 maxchannel = nChannels;
213 if(fVerbose > 1) {
214 G4cout << "Evaporation# " << ia << " Z= " << Z << " A= " << A
215 << " Eex(MeV)= " << theResidualNucleus->GetExcitationEnergy()
216 << " aban= " << abun << G4endl;
217 }
218 // loop over evaporation channels
219 for(i=0; i<nChannels; ++i) {
220 prob = (*theChannels)[i]->GetEmissionProbability(theResidualNucleus);
221 if(fVerbose > 2 && prob > 0.0) {
222 G4cout << " Channel# " << i << " prob= " << prob << G4endl;
223 }
224 totprob += prob;
225 probabilities[i] = totprob;
226
227 // if two recent probabilities are near zero stop computations
228 if(i>=8 && prob > 0.0) {
229 if(prob <= totprob*1.e-8 && oldprob <= totprob*1.e-8) {
230 maxchannel = i+1;
231 break;
232 }
233 }
234 oldprob = prob;
235 }
236
237 // photon evaporation in the case of no other channels available
238 // do evaporation chain and return back ground state fragment
239 if(0.0 < totprob && probabilities[0] == totprob) {
240 if(fVerbose > 1) {
241 G4cout << "$$$ Start chain of gamma evaporation" << G4endl;
242 }
243 (*theChannels)[0]->BreakUpChain(theResult, theResidualNucleus);
244 totprob = 0.0;
245 }
246
247 // stable fragment - evaporation is finished
248 if(0.0 == totprob) {
249
250 // release fragment known to DB
251 if(fLevelData->GetLevelManager(Z, A)) { break; }
252
253 // if fragment is exotic, then it forced to decay
254 // if success, then decay product is added to results
255 if(fVerbose > 1) {
256 G4cout << "$$$ Decay exotic fragment" << G4endl;
257 }
258 if(unstableBreakUp->BreakUpChain(theResult, theResidualNucleus)) {
259 continue;
260 }
261 // release if it is not possible to decay
262 break;
263 }
264
265 // select channel
266 totprob *= G4UniformRand();
267 // loop over evaporation channels
268 for(i=0; i<maxchannel; ++i) { if(probabilities[i] >= totprob) { break; } }
269
270 if(fVerbose > 1) { G4cout << "$$$ Channel # " << i << G4endl; }
271 G4Fragment* frag = (*theChannels)[i]->EmittedFragment(theResidualNucleus);
272 if(fVerbose > 2 && frag) { G4cout << " " << *frag << G4endl; }
273
274 // normaly a fragment should be created
275 if(frag) { theResult->push_back(frag); }
276 else { break; }
277 }
278}
double A(double temperature)
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
#define G4UniformRand()
Definition: Randomize.hh:52
virtual void InitialiseChannels() final
G4double GetIsotopeAbundance(G4int Z, G4int N) const
const G4LevelManager * GetLevelManager(G4int Z, G4int A)
virtual G4bool BreakUpChain(G4FragmentVector *, G4Fragment *) final
G4VFermiBreakUp * theFBU
virtual G4bool IsApplicable(G4int Z, G4int A, G4double mass) const =0

◆ InitialiseChannels()

void G4Evaporation::InitialiseChannels ( )
finalvirtual

Reimplemented from G4VEvaporation.

Definition at line 92 of file G4Evaporation.cc.

93{
94 if(isInitialised) { return; }
95
96 G4DeexPrecoParameters* param = fLevelData->GetParameters();
97 minExcitation = param->GetMinExcitation();
98 fVerbose = param->GetVerbose();
99 unstableBreakUp->SetVerbose(fVerbose);
100
102 if(type == fCombined) { SetCombinedChannel(); }
103 else if(type == fGEM) { SetGEMChannel(); }
104 else if(type == fEvaporation) { SetDefaultChannel(); }
105 else if(type == fGEMVI) { SetGEMVIChannel(); }
106
107 isInitialised = true;
108}
@ fEvaporation
G4DeexChannelType GetDeexChannelsType() const
G4double GetMinExcitation() const
void SetGEMChannel()
void SetDefaultChannel()
void SetCombinedChannel()
void SetGEMVIChannel()
G4DeexPrecoParameters * GetParameters()

Referenced by BreakFragment(), and G4ExcitationHandler::SetDeexChannelsType().

◆ SetCombinedChannel()

void G4Evaporation::SetCombinedChannel ( )

Definition at line 165 of file G4Evaporation.cc.

166{
167 if(fCombined != channelType) {
171 delete theChannelFactory;
172 }
175 InitialiseChannelFactory();
176 }
177}
G4VEvaporationChannel * thePhotonEvaporation

Referenced by InitialiseChannels(), and G4ExcitationHandler::SetDeexChannelsType().

◆ SetDefaultChannel()

void G4Evaporation::SetDefaultChannel ( )

Definition at line 126 of file G4Evaporation.cc.

127{
132 delete theChannelFactory;
133 }
135 InitialiseChannelFactory();
136 }
137}

Referenced by InitialiseChannels(), and G4ExcitationHandler::SetDeexChannelsType().

◆ SetGEMChannel()

void G4Evaporation::SetGEMChannel ( )

Definition at line 139 of file G4Evaporation.cc.

140{
141 if(fGEM != channelType) {
145 delete theChannelFactory;
146 }
148 InitialiseChannelFactory();
149 }
150}

Referenced by InitialiseChannels(), and G4ExcitationHandler::SetDeexChannelsType().

◆ SetGEMVIChannel()

void G4Evaporation::SetGEMVIChannel ( )

Definition at line 152 of file G4Evaporation.cc.

153{
154 if(fGEMVI != channelType) {
158 delete theChannelFactory;
159 }
161 InitialiseChannelFactory();
162 }
163}

Referenced by InitialiseChannels(), and G4ExcitationHandler::SetDeexChannelsType().


The documentation for this class was generated from the following files: