other isotopes in isotopic fractionation dynamic; isotopic ratio evolution in a single-timestep simulation using Bolin number (with plots depicting Gedzelman & Arnold condition for different droplet concentrations)#1834
Conversation
This reverts commit 2b58ab4.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1834 +/- ##
=======================================
Coverage 86.96% 86.96%
=======================================
Files 417 418 +1
Lines 10662 10688 +26
=======================================
+ Hits 9272 9295 +23
- Misses 1390 1393 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| if isotope == "2H": | ||
| D_ratio = ff.isotope_diffusivity_ratios__ratio_2H_heavy_to_light(T) | ||
| alpha = ff.isotope_equilibrium_fractionation_factors__alpha_l_2H(T) | ||
| if isotope == "3H": | ||
| D_ratio = ff.isotope_diffusivity_ratios__ratio_3H_heavy_to_light(T) | ||
| alpha = ff.isotope_equilibrium_fractionation_factors__alpha_l_3H(T) | ||
| elif isotope == "18O": | ||
| D_ratio = ff.isotope_diffusivity_ratios__ratio_18O_heavy_to_light(T) | ||
| alpha = ff.isotope_equilibrium_fractionation_factors__alpha_l_18O(T) | ||
| elif isotope == "17O": | ||
| D_ratio = ff.isotope_diffusivity_ratios__ratio_17O_heavy_to_light(T) | ||
| alpha = ff.isotope_equilibrium_fractionation_factors__alpha_l_17O(T) | ||
|
|
There was a problem hiding this comment.
| if isotope == "2H": | |
| D_ratio = ff.isotope_diffusivity_ratios__ratio_2H_heavy_to_light(T) | |
| alpha = ff.isotope_equilibrium_fractionation_factors__alpha_l_2H(T) | |
| if isotope == "3H": | |
| D_ratio = ff.isotope_diffusivity_ratios__ratio_3H_heavy_to_light(T) | |
| alpha = ff.isotope_equilibrium_fractionation_factors__alpha_l_3H(T) | |
| elif isotope == "18O": | |
| D_ratio = ff.isotope_diffusivity_ratios__ratio_18O_heavy_to_light(T) | |
| alpha = ff.isotope_equilibrium_fractionation_factors__alpha_l_18O(T) | |
| elif isotope == "17O": | |
| D_ratio = ff.isotope_diffusivity_ratios__ratio_17O_heavy_to_light(T) | |
| alpha = ff.isotope_equilibrium_fractionation_factors__alpha_l_17O(T) | |
| D_ratio = getattr(ff, f"isotope_diffusivity_ratios__ratio_{isotope}_heavy_to_light")(T) | |
| alpha = getattr(ff, f"isotope_equilibrium_fractionation_factors__alpha_l_{isotope}")(T) |
|
|
||
| # pylint: disable=too-many-arguments | ||
| @staticmethod | ||
| def saturation_for_zero_dR_condition( |
There was a problem hiding this comment.
the signature here is different than in GedzelmanAndArnold1994:
if it was intended, better to rename the function.
otherwise, best to retain uniform signatures across function of the same name within one "phycis folder"
| @@ -22,15 +22,13 @@ def tau( | |||
|
|
|||
| @staticmethod | |||
| def bolin_number( | |||
There was a problem hiding this comment.
ditto - likely best to add unused parameters to Bolin's Bolin number here:
There was a problem hiding this comment.
it seems not mentioned anywhere in the notebook header that, unlike in the paper, we neglect ventillation effects - likely worth mentioning
No description provided.