Skip to content

Commit

Permalink
Merge pull request #266 from equinor/release-2.5.24
Browse files Browse the repository at this point in the history
update library and version to 2.5.24
  • Loading branch information
EvenSol authored May 11, 2024
2 parents 29463ee + 1cf1de7 commit 9fe7692
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Binary file not shown.
Binary file not shown.
10 changes: 5 additions & 5 deletions neqsim/thermo/thermoTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ def bubp(testSystem):
except:
logger.error("error calculating bublepoint")
return math.nan

return testSystem.getPressure()


Expand All @@ -954,7 +954,7 @@ def bubt(testSystem):
except:
logger.error("error calculating bublepoint")
return math.nan

return testSystem.getTemperature()


Expand All @@ -965,7 +965,7 @@ def dewp(testSystem):
except:
logger.error("error could not calculate")
return math.nan

return testSystem.getPressure()


Expand All @@ -976,7 +976,7 @@ def dewt(testSystem):
except:
logger.error("error could not calculate")
return math.nan

return testSystem.getTemperature()


Expand All @@ -987,7 +987,7 @@ def waterdewt(testSystem):
except:
logger.error("error could not calculate")
return math.nan

return testSystem.getTemperature()


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "neqsim"
version = "2.5.23"
version = "2.5.24"
description = "NeqSim is a tool for thermodynamic and process calculations"
authors = ["Even Solbraa <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 9fe7692

Please sign in to comment.