| Summary: | Triton (Tritium) is not considered an unstable radioisotope | ||
|---|---|---|---|
| Product: | Geant4 | Reporter: | j.cabello |
| Component: | processes/decay | Assignee: | kurasige |
| Status: | RESOLVED INVALID | ||
| Severity: | critical | CC: | j.cabello |
| Priority: | P3 | ||
| Version: | 8.0 | ||
| Hardware: | All | ||
| OS: | All | ||
|
Description
j.cabello
2006-12-04 13:05:12 CET
It is not a bug. Tritium has long life time (12.33 year) and is regarded as "stable" nuclei for most cases. If you want to simulate decay of Tritium, add the Radioactive decay to the Tritium as well as GenericIon. Please do not forget to set life time to Tritium before adding the Radioactive decay. (see below) G4RadioactiveDecay* theRadioactiveDecay = new G4RadioactiveDecay(); Triton()->SetPDGLifeTime(12.33*365*24*3600*second); G4ProcessManager* pmanager = Triton()->GetProcessManager(); pmanager ->AddProcess(theRadioactiveDecay); pmanager ->SetProcessOrdering(theRadioactiveDecay, idxPostStep); pmanager ->SetProcessOrdering(theRadioactiveDecay, idxAtRest); |