Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decay energy chain #2448

Merged
merged 35 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fc42f85
Added a function to calculate shell masses
Knights-Templars Oct 9, 2023
52faa24
Added a function to calculate shell masses
Knights-Templars Oct 9, 2023
d0e9e23
changed shell masses with the new function
Knights-Templars Oct 9, 2023
f77e720
Changed mass fraction to masses in to_inventories()
Knights-Templars Oct 9, 2023
f0b7572
Co-authored-by: Wolfgang Kerzendorf <[email protected]
Knights-Templars Oct 9, 2023
4a5bc6f
Added a function to calculate total decays
Knights-Templars Oct 9, 2023
ae66f13
Added a function to calculate energies from gamma rays and positrons.
Knights-Templars Oct 10, 2023
8f46268
added a function to calculate average energies of gamma rays and posi…
Knights-Templars Oct 10, 2023
b2a951a
Added a fucntion to calculate each decay chain energies
Knights-Templars Oct 11, 2023
adc1ea9
Added dictionaries to handle multiple isotopes
Knights-Templars Oct 17, 2023
d19b559
Merge branch 'master' into decay_energy_chain
Knights-Templars Oct 17, 2023
7c76a7f
Changed value to values
Knights-Templars Oct 18, 2023
809cf33
added tests for gamma_ray_transport
Knights-Templars Oct 18, 2023
c65626c
Added tests for calculating activity
Knights-Templars Oct 25, 2023
ec64ddf
Added test for activity
Knights-Templars Oct 26, 2023
c057a02
Added tests for two isotope
Knights-Templars Oct 30, 2023
28b4103
Changed Ni_isotope_mass
Knights-Templars Nov 1, 2023
0d28444
Added pytest paramterize
Knights-Templars Nov 1, 2023
76f30db
Added test for calculating shell masses
Knights-Templars Nov 2, 2023
48eb360
Ran test for checking activity of parent nuclide with analytical solu…
Knights-Templars Nov 2, 2023
bdc68e0
The function test_activity matches with the radioactivedecay output u…
Knights-Templars Nov 3, 2023
6b3d9a4
Added tests for checking if iso_dict is returning the right key.
Knights-Templars Nov 6, 2023
0c7521c
Added test for inventories dictionary.
Knights-Templars Nov 7, 2023
b06c0e6
Added a test to check if the calculate_average_energy function passes…
Knights-Templars Nov 14, 2023
170d0d1
Added new function for testing energy budget from each decay chain.
Knights-Templars Nov 15, 2023
17a6233
Added a new function for energy per mass
Knights-Templars Nov 15, 2023
56a6d30
Reading in decay radiation data in atom data
Knights-Templars Nov 15, 2023
f62643b
Merge branch 'atom_data/nndc' into decay_energy_chain
Knights-Templars Nov 15, 2023
442bcc4
Add
Knights-Templars Nov 16, 2023
f2c3122
Added tests for gamma ray transport.
Knights-Templars Nov 16, 2023
3714d87
Added tests for all functions for gamma_ray_transport. Added docstrings.
Knights-Templars Nov 16, 2023
8d97457
Changing decay energy chain
Knights-Templars Nov 21, 2023
17954c5
Added a function to get taus
Knights-Templars Nov 22, 2023
fb0d32f
Added tests for multiple isotopes
Knights-Templars Nov 27, 2023
32bd989
Fixes the test calculate shell masses with hand calculated values
Knights-Templars Nov 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tardis/energy_input/energy_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
pandas DataFrame
The decay radiation lines
"""
decay_radiation_db = pd.read_hdf(path, "decay_data")
decay_radiation_db = pd.read_hdf(path, "decay_radiation_data")

Check warning on line 193 in tardis/energy_input/energy_source.py

View check run for this annotation

Codecov / codecov/patch

tardis/energy_input/energy_source.py#L193

Added line #L193 was not covered by tests
return decay_radiation_db


Expand Down
Loading
Loading