Skip to content

Commit

Permalink
Merge pull request pyne#1496 from ahnaf-tahmid-chowdhury/Gamma-functi…
Browse files Browse the repository at this point in the history
…on---factor-100
  • Loading branch information
gonuke authored Aug 26, 2023
2 parents 00f1666 + 187866a commit 8a9ef72
Show file tree
Hide file tree
Showing 3 changed files with 208 additions and 218 deletions.
30 changes: 16 additions & 14 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@ PyNE Change Log
Next Version
============
**Change**
* move tests from nose to pytest (#1478 #1493)
* update MOAB dead link and add PyNE logo to readme file (#1481)
* Move tests from nose to pytest (#1478 #1493)
* Update MOAB dead link and add PyNE logo to readme file (#1481)

**Fix**
* Add missing rxname offsets (#1482)
* move install script to main repo(#1477)
* use multistage docker build action in docker_publish.yml(#1470 #1471 #1473 #1475)
* remove setup-QEMU step from composite action(#1461)
* add composite actions to github workflows(#1459)
* fixing typos in user warning message (#1456)
* fix reorder error in member variables (#1466)
* remove unusable C-linkage with std::vector (#1468)
* fixed compatibility issue with Python 3.10 in endf.py (#1472)
* avoid use of deprecated numpy.int alias (#1479)
* avoid use of deprecated numpy.bool alias (#1485)
* Move install script to main repo(#1477)
* Use multistage docker build action in docker_publish.yml(#1470 #1471 #1473 #1475)
* Remove setup-QEMU step from composite action(#1461)
* Add composite actions to github workflows(#1459)
* Fixing typos in user warning message (#1456)
* Fix reorder error in member variables (#1466)
* Remove unusable C-linkage with std::vector (#1468)
* Fixed compatibility issue with Python 3.10 in endf.py (#1472)
* Avoid use of deprecated numpy.int alias (#1479)
* Avoid use of deprecated numpy.bool alias (#1485)
* Review Tutorial and Bug Fixes (#1486)
* add composite action for BuildTest job in workflows (#1489)
* update run conditions for workflows (#1494)
* Add composite action for BuildTest job in workflows (#1489)
* Update run conditions for workflows (#1494)
* Fix gamma intensity calculation (#1496)



v0.7.7
Expand Down
2 changes: 1 addition & 1 deletion src/material.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1957,7 +1957,7 @@ std::vector<std::pair<double, double> > pyne::Material::gammas() {
std::vector<std::pair<double, double> > raw_gammas = pyne::gammas(state_id);
for (int i = 0; i < raw_gammas.size(); ++i) {
result.push_back(std::make_pair(raw_gammas[i].first,
atom_fracs[ci->first]*raw_gammas[i].second));
atom_fracs[ci->first]*raw_gammas[i].second/100));
}
}
return result;
Expand Down
Loading

0 comments on commit 8a9ef72

Please sign in to comment.