pyfluids 2.7.1__tar.gz → 2.7.2__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.
- {pyfluids-2.7.1 → pyfluids-2.7.2}/PKG-INFO +2 -2
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/humid_air/humid_air.py +6 -3
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyproject.toml +4 -4
- {pyfluids-2.7.1 → pyfluids-2.7.2}/LICENSE +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/PyPI.md +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/__init__.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/config/__init__.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/config/pyfluids_config.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/config/pyfluids_config_builder.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/config/singleton.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/config/unit_converter.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/config/units_system.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/enums/__init__.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/enums/fluids_list.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/enums/mix.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/enums/phases.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/fluids/__init__.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/fluids/abstract_fluid.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/fluids/fluid.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/fluids/mixture.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/humid_air/__init__.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/io/__init__.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/io/abstract_input.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/io/input.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/io/input_humid_air.py +0 -0
- {pyfluids-2.7.1 → pyfluids-2.7.2}/pyfluids/io/outputs_validator.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyfluids
|
|
3
|
-
Version: 2.7.
|
|
3
|
+
Version: 2.7.2
|
|
4
4
|
Summary: Simple, full-featured, lightweight CoolProp wrapper for Python
|
|
5
5
|
Home-page: https://github.com/portyanikhin/PyFluids
|
|
6
6
|
License: MIT
|
|
@@ -35,7 +35,7 @@ Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
|
35
35
|
Classifier: Topic :: Scientific/Engineering :: Chemistry
|
|
36
36
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
37
37
|
Requires-Dist: CoolProp (==6.6.0)
|
|
38
|
-
Requires-Dist: tomli (==2.
|
|
38
|
+
Requires-Dist: tomli (==2.2.1)
|
|
39
39
|
Project-URL: Documentation, https://github.com/portyanikhin/PyFluids
|
|
40
40
|
Project-URL: Repository, https://github.com/portyanikhin/PyFluids
|
|
41
41
|
Description-Content-Type: text/markdown
|
|
@@ -474,10 +474,13 @@ class HumidAir:
|
|
|
474
474
|
),
|
|
475
475
|
InputHumidAir.humidity(
|
|
476
476
|
(
|
|
477
|
-
first_specific_mass_flow * first.humidity
|
|
478
|
-
+ second_specific_mass_flow * second.humidity
|
|
477
|
+
first_specific_mass_flow * first.humidity * (1 + second.humidity)
|
|
478
|
+
+ second_specific_mass_flow * second.humidity * (1 + first.humidity)
|
|
479
|
+
)
|
|
480
|
+
/ (
|
|
481
|
+
first_specific_mass_flow * (1 + second.humidity)
|
|
482
|
+
+ second_specific_mass_flow * (1 + first.humidity)
|
|
479
483
|
)
|
|
480
|
-
/ (first_specific_mass_flow + second_specific_mass_flow)
|
|
481
484
|
),
|
|
482
485
|
)
|
|
483
486
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pyfluids"
|
|
3
|
-
version = "2.7.
|
|
3
|
+
version = "2.7.2"
|
|
4
4
|
description = "Simple, full-featured, lightweight CoolProp wrapper for Python"
|
|
5
5
|
authors = [
|
|
6
6
|
"Vladimir Portyanikhin <v.portyanikhin@ya.ru>",
|
|
@@ -55,10 +55,10 @@ packages = [
|
|
|
55
55
|
[tool.poetry.dependencies]
|
|
56
56
|
python = ">=3.8, <3.13"
|
|
57
57
|
CoolProp = "6.6.0"
|
|
58
|
-
tomli = "2.
|
|
58
|
+
tomli = "2.2.1"
|
|
59
59
|
|
|
60
60
|
[tool.poetry.group.test.dependencies]
|
|
61
|
-
pytest = "8.3.
|
|
61
|
+
pytest = "8.3.4"
|
|
62
62
|
pytest-asyncio = "0.24.0"
|
|
63
63
|
pytest-cov = "5.0.0"
|
|
64
64
|
|
|
@@ -67,4 +67,4 @@ asyncio_default_fixture_loop_scope = "function"
|
|
|
67
67
|
|
|
68
68
|
[build-system]
|
|
69
69
|
requires = ["poetry-core"]
|
|
70
|
-
build-backend = "poetry.core.masonry.api"
|
|
70
|
+
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|