ThermoSim 2.3.2__tar.gz → 2.3.4__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 [Md. Waheduzzaman Basunia Nouman]
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,9 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ThermoSim
3
- Version: 2.3.2
3
+ Version: 2.3.4
4
4
  Summary: A simulation package for thermodynamic systems
5
- Author: Md. Waheduzzaman Nouman
5
+ Home-page: https://github.com/Nouman090/ThermoSim
6
+ Author: Md. Waheduzzaman Basunia Nouman
7
+ License: MIT
8
+ Project-URL: Bug Tracker, https://github.com/Nouman090/ThermoSim/issues
9
+ Project-URL: Source, https://github.com/Nouman090/ThermoSim
6
10
  Description-Content-Type: text/markdown
11
+ License-File: LICENSE.py
7
12
  Requires-Dist: numpy
8
13
  Requires-Dist: scipy
9
14
  Requires-Dist: matplotlib
@@ -14,6 +19,10 @@ Requires-Dist: pymoo
14
19
  Dynamic: author
15
20
  Dynamic: description
16
21
  Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: license
24
+ Dynamic: license-file
25
+ Dynamic: project-url
17
26
  Dynamic: requires-dist
18
27
  Dynamic: summary
19
28
 
@@ -866,7 +875,7 @@ A geothermal Organic Rankine Cycle (ORC) system uses isobutane as the working fl
866
875
  * Turbine and pump work,
867
876
  * Efficiency of the cycle
868
877
 
869
- ![Schematic Diagrame](diagrame.png "Schematic Diagrame of the ORC plant")
878
+ ![Schematic Diagrame](https://github.com/Nouman090/ThermoSim/blob/main/docs/diagrame.png?raw=true)
870
879
 
871
880
  ## Solution:
872
881
  First, we will set the known parameters
@@ -847,7 +847,7 @@ A geothermal Organic Rankine Cycle (ORC) system uses isobutane as the working fl
847
847
  * Turbine and pump work,
848
848
  * Efficiency of the cycle
849
849
 
850
- ![Schematic Diagrame](diagrame.png "Schematic Diagrame of the ORC plant")
850
+ ![Schematic Diagrame](https://github.com/Nouman090/ThermoSim/blob/main/docs/diagrame.png?raw=true)
851
851
 
852
852
  ## Solution:
853
853
  First, we will set the known parameters
@@ -568,7 +568,6 @@ class ThermodynamicModel():
568
568
  f"Cold Inlet Temp: {self.Cold_In.T } C\n"
569
569
  f"Cold Outlet Temp : {self.Cold_Out.T} C\n"
570
570
  f"Cold Mass Flowrate: {self.Cold_Mass_flowrate} kg/s\n"
571
- f"Heat Loss: {self.Capacity-self.CapacityD} Js ({(self.Capacity-self.CapacityD)*100/self.Capacity:0.2f})%\n"
572
571
  f"Charging Power: {self.Charging_Power} W\n"
573
572
  f"Disharging Power: {self.Discharging_Power} W\n"
574
573
  f"PCM store solution status: {self.Solution_Status}"
@@ -1,9 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ThermoSim
3
- Version: 2.3.2
3
+ Version: 2.3.4
4
4
  Summary: A simulation package for thermodynamic systems
5
- Author: Md. Waheduzzaman Nouman
5
+ Home-page: https://github.com/Nouman090/ThermoSim
6
+ Author: Md. Waheduzzaman Basunia Nouman
7
+ License: MIT
8
+ Project-URL: Bug Tracker, https://github.com/Nouman090/ThermoSim/issues
9
+ Project-URL: Source, https://github.com/Nouman090/ThermoSim
6
10
  Description-Content-Type: text/markdown
11
+ License-File: LICENSE.py
7
12
  Requires-Dist: numpy
8
13
  Requires-Dist: scipy
9
14
  Requires-Dist: matplotlib
@@ -14,6 +19,10 @@ Requires-Dist: pymoo
14
19
  Dynamic: author
15
20
  Dynamic: description
16
21
  Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: license
24
+ Dynamic: license-file
25
+ Dynamic: project-url
17
26
  Dynamic: requires-dist
18
27
  Dynamic: summary
19
28
 
@@ -866,7 +875,7 @@ A geothermal Organic Rankine Cycle (ORC) system uses isobutane as the working fl
866
875
  * Turbine and pump work,
867
876
  * Efficiency of the cycle
868
877
 
869
- ![Schematic Diagrame](diagrame.png "Schematic Diagrame of the ORC plant")
878
+ ![Schematic Diagrame](https://github.com/Nouman090/ThermoSim/blob/main/docs/diagrame.png?raw=true)
870
879
 
871
880
  ## Solution:
872
881
  First, we will set the known parameters
@@ -1,3 +1,4 @@
1
+ LICENSE.py
1
2
  README.md
2
3
  setup.py
3
4
  ThermoSim/__init__.py
@@ -6,12 +6,18 @@ with open("README.md", "r", encoding="utf-8") as f:
6
6
 
7
7
  setup(
8
8
  name="ThermoSim",
9
- version="2.3.2",
10
- author="Md. Waheduzzaman Nouman",
9
+ version="2.3.4",
10
+ author="Md. Waheduzzaman Basunia Nouman",
11
11
  description="A simulation package for thermodynamic systems",
12
12
  long_description=long_description,
13
13
  long_description_content_type="text/markdown",
14
14
  packages= find_packages(),
15
+ url='https://github.com/Nouman090/ThermoSim',
16
+ project_urls={
17
+ "Bug Tracker": "https://github.com/Nouman090/ThermoSim/issues",
18
+ "Source": "https://github.com/Nouman090/ThermoSim",
19
+ },
20
+ license= "MIT",
15
21
  install_requires = [
16
22
  "numpy",
17
23
  "scipy",
File without changes