mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
fixed unit conversion error in product.py
This commit is contained in:
parent
157f1fd484
commit
59a8e6e13b
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ class Product(EqualityMixin):
|
|||
cv.check_greater_than('product decay rate', decay_rate, 0.0, True)
|
||||
|
||||
# Convert the decay rate from units of inverse shakes to inverse seconds
|
||||
self._decay_rate = decay_rate * 1.e-8
|
||||
self._decay_rate = decay_rate * 1.e8
|
||||
|
||||
@distribution.setter
|
||||
def distribution(self, distribution):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue