Skip to content

Commit

Permalink
[199_henry_constant], issue #199, Implementation of BismuthHenryConst…
Browse files Browse the repository at this point in the history
…ant and LeadHenryConstant in lbe_thermochemical.py. Update of the documentation related in lbe.rst.
  • Loading branch information
Sami Amestas committed Sep 5, 2024
1 parent c942772 commit 4eb1470
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions docs/source/lbe.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,12 @@ In detail, a :class:`.LBE` object comes with the following default properties:
- ``lim_fe`` lower limit of ox concentration times iron concentration raised to :math:`3/4` :math:`\left[wt.\%\right]`:

:math:`lim\_fe\left(T\right) = \displaystyle lim\_fe\_sat\left(T\right) \cdot fe\_sol\left(T\right)^{3/4}`
- ``pb_Kh`` lead Henry constant :math:`\left[Pa\right]`:

:math:`pb\_Kh\left(T\right) = 10^{- \frac{10130}{T} - 0.985 \cdot \log\left(T\right) + 12.8163} `
- ``bi_Kh`` bismuth Henry constant :math:`\left[Pa\right]`:

:math:`pb\_Kh\left(T\right) = 10^{- \frac{9656.4}{T} + 9.9272} `

where :math:`T` is the lbe temperature in :math:`\left[K\right]`, :math:`p` is the lbe pressure in :math:`\left[Pa\right]` and
:math:`R` is the molar gas constant in :math:`\left[J/(mol K)\right]`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ class LeadHenryConstant(PropertyInterface):
def correlation(self, T: float, p: float = atm,
verbose: bool = False) -> float:
"""
Returns the value of the *lead Henry constant* in liquid lbe
by applying the property correlation.
Returns the value of the *lead Henry constant* in liquid
lbe by applying the property correlation.
Parameters
----------
Expand Down Expand Up @@ -331,8 +331,8 @@ class BismuthHenryConstant(PropertyInterface):
def correlation(self, T: float, p: float = atm,
verbose: bool = False) -> float:
"""
Returns the value of the *bismuth Henry constant* in liquid lbe
by applying the property correlation.
Returns the value of the *bismuth Henry constant* in liquid
lbe by applying the property correlation.
Parameters
----------
Expand Down

0 comments on commit 4eb1470

Please sign in to comment.