ThermoSim 3.1.1__tar.gz → 3.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {thermosim-3.1.1 → thermosim-3.2.0}/CHANGELOG.md +6 -0
  2. {thermosim-3.1.1/ThermoSim.egg-info → thermosim-3.2.0}/PKG-INFO +1 -1
  3. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/__init__.py +1 -1
  4. thermosim-3.2.0/ThermoSim/heat_exchangers.py +1363 -0
  5. thermosim-3.1.1/ThermoSim/heat_exchangers.py → thermosim-3.2.0/ThermoSim/heat_exchangers_old.py +113 -19
  6. thermosim-3.2.0/ThermoSim/model.py +1134 -0
  7. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/simple_components.py +270 -84
  8. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/state.py +20 -0
  9. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/turbomachinery.py +92 -75
  10. {thermosim-3.1.1 → thermosim-3.2.0/ThermoSim.egg-info}/PKG-INFO +1 -1
  11. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim.egg-info/SOURCES.txt +1 -0
  12. {thermosim-3.1.1 → thermosim-3.2.0}/pyproject.toml +1 -1
  13. {thermosim-3.1.1 → thermosim-3.2.0}/setup.py +1 -1
  14. thermosim-3.1.1/ThermoSim/model.py +0 -354
  15. {thermosim-3.1.1 → thermosim-3.2.0}/LICENSE +0 -0
  16. {thermosim-3.1.1 → thermosim-3.2.0}/MANIFEST.in +0 -0
  17. {thermosim-3.1.1 → thermosim-3.2.0}/README.md +0 -0
  18. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/analysis.py +0 -0
  19. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/base_component.py +0 -0
  20. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/config.py +0 -0
  21. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/plotting.py +0 -0
  22. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim.egg-info/dependency_links.txt +0 -0
  23. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim.egg-info/requires.txt +0 -0
  24. {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim.egg-info/top_level.txt +0 -0
  25. {thermosim-3.1.1 → thermosim-3.2.0}/setup.cfg +0 -0
@@ -1,5 +1,11 @@
1
1
 
2
2
  # Changelog
3
+ ## [3.1.1] - 2026-04-20
4
+ - Solver is now more robust.
5
+ - User can give the order of solving components.
6
+ - Now HEX can solve 10 cases with 2 unknows and 8 cases with 3 unknwons
7
+ - Mass flowrate now can automatically propgate through the branches.
8
+
3
9
  ## [3.1.1] - 2026-03-31
4
10
  - Fix the bug in testing.
5
11
  ## [3.1.0] - 2026-03-30
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ThermoSim
3
- Version: 3.1.1
3
+ Version: 3.2.0
4
4
  Summary: A Python package for thermodynamic cycle modelling and analysis
5
5
  Home-page: https://github.com/Nouman090/ThermoSim
6
6
  Author: Md. Waheduzzaman Basunia Nouman
@@ -13,7 +13,7 @@ Usage
13
13
  from ThermoSim.plotting import CyclePlotter
14
14
  from ThermoSim.analysis import SensitivityAnalyzer
15
15
  """
16
- __version__ = '3.1.1'
16
+ __version__ = '3.2.0'
17
17
 
18
18
  from .model import ThermodynamicModel
19
19
  from .state import Prop