We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's been a while since we've checked the example notebooks to see if they still run and, in the process of checking them, I found a few bugs:
cubic_eos.ipynb
bubble_pressure
NaN
julia> model = VTPR(["carbon monoxide","carbon dioxide"]) PR{BasicIdeal, TwuAlpha, RackettTranslation, VTPRRule{VTPRUNIFAC{BasicIdeal}}} with 2 components: "carbon monoxide" "carbon dioxide" Contains parameters: a, b, Tc, Pc, Mw julia> bubble_pressure(model,218.15,[1e-5,1-1e-5]) (NaN, NaN, NaN, [NaN, NaN])
GE_mixing_SAFT.ipynb
bubble_temperature
T0
user_defined_eos.ipynb
multi-component_vle_vlle_lle_crit.ipynb
julia> model4 = SAFTgammaMie(["methane","nitrogen","carbon dioxide","ethane","propane","butane","isobutane", "pentane","isopentane","hexane","heptane","octane"]); julia> x =[0.833482,0.056510,0.002840,0.075260,0.020090,0.005200,0.003050,0.001440,0.001200,0.000680,0.000138,0.000110]; julia> bubble_pressure(model4,150.,x) ┌ Error: SAFTVRMie{BasicIdeal} cannot be splitted
The text was updated successfully, but these errors were encountered:
the 12 component split was a bug on group_sum. looking on the others
group_sum
Sorry, something went wrong.
fix ismissingvalues handling in group_sum #173
e964aaf
No branches or pull requests
It's been a while since we've checked the example notebooks to see if they still run and, in the process of checking them, I found a few bugs:
cubic_eos.ipynb
: Any VTPR examples no longer run withbubble_pressure
just givingNaN
.GE_mixing_SAFT.ipynb
:bubble_temperature
no longer takesT0
as an initial guess for activity coefficient modelsuser_defined_eos.ipynb
: We've updated SAFT-VR Mie and that needs to be reflected here.multi-component_vle_vlle_lle_crit.ipynb
: There's unfortunately a few bugs here:The text was updated successfully, but these errors were encountered: