Skip to main content

boon_lay/
lib.rs

1
2/// prelude is here for easy imports
3pub mod prelude;
4
5/// import the nuclide enum
6pub use fission_yields_data::prelude::Nuclide;
7/// import all nuclides into this crate
8pub use fission_yields_data::prelude::Nuclide::*;
9
10/// this contains the raw information 
11/// based on pwr neutron spectrum
12pub mod decay_xml_info_serde;
13
14/// this is the struct that converts the SerdeNuclideData to 
15/// NuclideReactionAndDecayData 
16pub mod nuclide_reaction_and_decay_data;
17
18
19/// this is the part that deals with decay simulation in lagrangian 
20/// or monte carlo bit 
21/// this part deals only with the terminal user interface
22pub mod lagrangian_decay_simulator;
23
24/// this is the part that deals with transmutation and fission 
25/// simulation in lagrangian 
26pub mod lagrangian_transmutation_and_fission_simulator;