diff --git a/pyproject.toml b/pyproject.toml index 036e7807..ad16b433 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "neqsim" -version = "3.0.25" +version = "3.0.26" description = "NeqSim is a tool for thermodynamic and process calculations" authors = ["Even Solbraa "] license = "Apache-2.0" diff --git a/src/neqsim/lib/java11/neqsim-3.0.25.jar b/src/neqsim/lib/java11/neqsim-3.0.26.jar similarity index 95% rename from src/neqsim/lib/java11/neqsim-3.0.25.jar rename to src/neqsim/lib/java11/neqsim-3.0.26.jar index fe4e57e6..ab9d9294 100644 Binary files a/src/neqsim/lib/java11/neqsim-3.0.25.jar and b/src/neqsim/lib/java11/neqsim-3.0.26.jar differ diff --git a/src/neqsim/lib/java8/neqsim-3.0.25-Java8.jar b/src/neqsim/lib/java8/neqsim-3.0.26-Java8.jar similarity index 96% rename from src/neqsim/lib/java8/neqsim-3.0.25-Java8.jar rename to src/neqsim/lib/java8/neqsim-3.0.26-Java8.jar index 37983636..1ac2bbbf 100644 Binary files a/src/neqsim/lib/java8/neqsim-3.0.25-Java8.jar and b/src/neqsim/lib/java8/neqsim-3.0.26-Java8.jar differ diff --git a/src/neqsim/process/unitop.py b/src/neqsim/process/unitop.py index 56e20fd1..d92cca64 100644 --- a/src/neqsim/process/unitop.py +++ b/src/neqsim/process/unitop.py @@ -63,10 +63,20 @@ def getPressure(self): # This will depend on how pressure is handled in your 'unitop' class. return 0.0 # Replace 0.0 with the actual pressure value or calculation + @JOverride # Implement the missing 'getTemperature' method + def getTemperature(self): + # Add the logic to calculate or retrieve the temperature. + # This will depend on how temperature is handled in your 'unitop' class. + return 0.0 # Replace 0.0 with the actual temperature value or calculation + @JOverride # Implement the missing 'setPressure' method def setPressure(self, pressure): pass # Replace 'pass' with your implementation + @JOverride # Implement the missing 'setTemperature' method + def setTemperature(self, temperature): + pass # Replace 'pass' with your implementation + @JOverride # Implement the missing 'getEntropyProduction' method def getEntropyProduction(self): # Add the logic to calculate or retrieve the pressure.