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.
- {thermosim-3.1.1 → thermosim-3.2.0}/CHANGELOG.md +6 -0
- {thermosim-3.1.1/ThermoSim.egg-info → thermosim-3.2.0}/PKG-INFO +1 -1
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/__init__.py +1 -1
- thermosim-3.2.0/ThermoSim/heat_exchangers.py +1363 -0
- thermosim-3.1.1/ThermoSim/heat_exchangers.py → thermosim-3.2.0/ThermoSim/heat_exchangers_old.py +113 -19
- thermosim-3.2.0/ThermoSim/model.py +1134 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/simple_components.py +270 -84
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/state.py +20 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/turbomachinery.py +92 -75
- {thermosim-3.1.1 → thermosim-3.2.0/ThermoSim.egg-info}/PKG-INFO +1 -1
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim.egg-info/SOURCES.txt +1 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/pyproject.toml +1 -1
- {thermosim-3.1.1 → thermosim-3.2.0}/setup.py +1 -1
- thermosim-3.1.1/ThermoSim/model.py +0 -354
- {thermosim-3.1.1 → thermosim-3.2.0}/LICENSE +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/MANIFEST.in +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/README.md +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/analysis.py +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/base_component.py +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/config.py +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim/plotting.py +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim.egg-info/dependency_links.txt +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim.egg-info/requires.txt +0 -0
- {thermosim-3.1.1 → thermosim-3.2.0}/ThermoSim.egg-info/top_level.txt +0 -0
- {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
|