Skip to content

Commit

Permalink
[189_contamination_tests], issue #189, Implmentation of contamination…
Browse files Browse the repository at this point in the history
… files path in lead.py, bismuth.py and lbe.py
  • Loading branch information
Sami Amestas committed Jul 23, 2024
1 parent 5161223 commit 60d5d0e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lbh15/bismuth.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ class Bismuth(LiquidMetalInterface):
.diffusivity_in_bismuth',
'lbh15.properties.bismuth_thermochemical_properties\
.bismuth_thermochemical',
'lbh15.properties.bismuth_properties']
'lbh15.properties.bismuth_properties',
'lbh15.properties.bismuth_thermochemical_properties\
.bismuth_contamination']

def __init__(self, p: float = atm, **kwargs):
self._guess = BISMUTH_BOILING_TEMPERATURE / 2.0
Expand Down
3 changes: 2 additions & 1 deletion lbh15/lbe.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ class LBE(LiquidMetalInterface):
'lbh15.properties.lbe_thermochemical_properties.diffusivity_in_lbe',
'lbh15.properties.lbe_thermochemical_properties.lbe_thermochemical',
'lbh15.properties.lbe_thermochemical_properties.lbe_oxygen_limits',
'lbh15.properties.lbe_properties']
'lbh15.properties.lbe_properties',
'lbh15.properties.lbe_thermochemical_properties.lbe_contamination']

def __init__(self, p: float = atm, **kwargs):
self._guess = LBE_BOILING_TEMPERATURE / 2.0
Expand Down
3 changes: 2 additions & 1 deletion lbh15/lead.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ class Lead(LiquidMetalInterface):
'lbh15.properties.lead_thermochemical_properties.diffusivity_in_lead',
'lbh15.properties.lead_thermochemical_properties.lead_thermochemical',
'lbh15.properties.lead_thermochemical_properties.lead_oxygen_limits',
'lbh15.properties.lead_properties']
'lbh15.properties.lead_properties',
'lbh15.properties.lead_thermochemical_properties.lead_contamination']

def __init__(self, p: float = atm, **kwargs):
self._guess = LEAD_BOILING_TEMPERATURE / 2.0
Expand Down

0 comments on commit 60d5d0e

Please sign in to comment.