flixopt 2.1.5__py3-none-any.whl → 2.1.7__py3-none-any.whl
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.
Potentially problematic release.
This version of flixopt might be problematic. Click here for more details.
- docs/examples/00-Minimal Example.md +1 -1
- docs/examples/01-Basic Example.md +1 -1
- docs/examples/02-Complex Example.md +1 -1
- docs/examples/index.md +1 -1
- docs/faq/contribute.md +26 -14
- docs/faq/index.md +1 -1
- docs/javascripts/mathjax.js +1 -1
- docs/user-guide/Mathematical Notation/Bus.md +1 -1
- docs/user-guide/Mathematical Notation/Effects, Penalty & Objective.md +13 -13
- docs/user-guide/Mathematical Notation/Flow.md +1 -1
- docs/user-guide/Mathematical Notation/LinearConverter.md +2 -2
- docs/user-guide/Mathematical Notation/Piecewise.md +1 -1
- docs/user-guide/Mathematical Notation/Storage.md +1 -1
- docs/user-guide/Mathematical Notation/index.md +1 -1
- docs/user-guide/Mathematical Notation/others.md +1 -1
- docs/user-guide/index.md +2 -2
- flixopt/__init__.py +4 -0
- flixopt/aggregation.py +0 -1
- flixopt/calculation.py +3 -7
- flixopt/components.py +140 -21
- flixopt/core.py +10 -6
- flixopt/effects.py +2 -1
- flixopt/elements.py +5 -3
- flixopt/features.py +17 -13
- flixopt/flow_system.py +54 -0
- flixopt/network_app.py +755 -0
- flixopt/structure.py +1 -3
- {flixopt-2.1.5.dist-info → flixopt-2.1.7.dist-info}/METADATA +41 -20
- flixopt-2.1.7.dist-info/RECORD +54 -0
- scripts/extract_release_notes.py +5 -5
- flixopt-2.1.5.dist-info/RECORD +0 -53
- {flixopt-2.1.5.dist-info → flixopt-2.1.7.dist-info}/WHEEL +0 -0
- {flixopt-2.1.5.dist-info → flixopt-2.1.7.dist-info}/licenses/LICENSE +0 -0
- {flixopt-2.1.5.dist-info → flixopt-2.1.7.dist-info}/top_level.txt +0 -0
flixopt/structure.py
CHANGED
|
@@ -303,9 +303,7 @@ class Element(Interface):
|
|
|
303
303
|
class Model:
|
|
304
304
|
"""Stores Variables and Constraints."""
|
|
305
305
|
|
|
306
|
-
def __init__(
|
|
307
|
-
self, model: SystemModel, label_of_element: str, label: str = '', label_full: Optional[str] = None
|
|
308
|
-
):
|
|
306
|
+
def __init__(self, model: SystemModel, label_of_element: str, label: str = '', label_full: Optional[str] = None):
|
|
309
307
|
"""
|
|
310
308
|
Args:
|
|
311
309
|
model: The SystemModel that is used to create the model.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flixopt
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.7
|
|
4
4
|
Summary: Vector based energy and material flow optimization framework in Python.
|
|
5
5
|
Author-email: "Chair of Building Energy Systems and Heat Supply, TU Dresden" <peter.stange@tu-dresden.de>, Felix Bumann <felixbumann387@gmail.com>, Felix Panitz <baumbude@googlemail.com>, Peter Stange <peter.stange@tu-dresden.de>
|
|
6
6
|
Maintainer-email: Felix Bumann <felixbumann387@gmail.com>, Peter Stange <peter.stange@tu-dresden.de>
|
|
@@ -24,7 +24,7 @@ Description-Content-Type: text/markdown
|
|
|
24
24
|
License-File: LICENSE
|
|
25
25
|
Requires-Dist: numpy<3,>=1.21.5
|
|
26
26
|
Requires-Dist: pandas<3,>=2.0.0
|
|
27
|
-
Requires-Dist: linopy<0.
|
|
27
|
+
Requires-Dist: linopy<0.5.8,>=0.5.7
|
|
28
28
|
Requires-Dist: netcdf4<2,>=1.6.1
|
|
29
29
|
Requires-Dist: PyYAML<7,>=6.0.0
|
|
30
30
|
Requires-Dist: rich>=13.0.0
|
|
@@ -32,19 +32,35 @@ Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
|
32
32
|
Requires-Dist: highspy>=1.5.3
|
|
33
33
|
Requires-Dist: matplotlib<4.0.0,>=3.5.2
|
|
34
34
|
Requires-Dist: plotly<6.0.0,>=5.15.0
|
|
35
|
+
Provides-Extra: network-viz
|
|
36
|
+
Requires-Dist: dash>=3.0.0; extra == "network-viz"
|
|
37
|
+
Requires-Dist: dash-cytoscape>=1.0.0; extra == "network-viz"
|
|
38
|
+
Requires-Dist: dash-daq>=0.6.0; extra == "network-viz"
|
|
39
|
+
Requires-Dist: networkx>=3.0.0; extra == "network-viz"
|
|
40
|
+
Requires-Dist: werkzeug>=3.0.0; extra == "network-viz"
|
|
41
|
+
Provides-Extra: full
|
|
42
|
+
Requires-Dist: pyvis==0.3.2; extra == "full"
|
|
43
|
+
Requires-Dist: tsam<3.0.0,>=2.3.1; extra == "full"
|
|
44
|
+
Requires-Dist: scipy<2.0.0,>=1.15.1; extra == "full"
|
|
45
|
+
Requires-Dist: gurobipy>=10.0.0; extra == "full"
|
|
46
|
+
Requires-Dist: dash>=3.0.0; extra == "full"
|
|
47
|
+
Requires-Dist: dash-cytoscape>=1.0.0; extra == "full"
|
|
48
|
+
Requires-Dist: dash-daq>=0.6.0; extra == "full"
|
|
49
|
+
Requires-Dist: networkx>=3.0.0; extra == "full"
|
|
50
|
+
Requires-Dist: werkzeug>=3.0.0; extra == "full"
|
|
35
51
|
Provides-Extra: dev
|
|
36
52
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
37
53
|
Requires-Dist: ruff>=0.9.0; extra == "dev"
|
|
38
|
-
Requires-Dist:
|
|
54
|
+
Requires-Dist: pre-commit>=4.0.0; extra == "dev"
|
|
55
|
+
Requires-Dist: pyvis==0.3.2; extra == "dev"
|
|
39
56
|
Requires-Dist: tsam<3.0.0,>=2.3.1; extra == "dev"
|
|
40
57
|
Requires-Dist: scipy<2.0.0,>=1.15.1; extra == "dev"
|
|
41
58
|
Requires-Dist: gurobipy>=10.0.0; extra == "dev"
|
|
42
|
-
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist: gurobipy>=10.0.0; extra == "full"
|
|
59
|
+
Requires-Dist: dash>=3.0.0; extra == "dev"
|
|
60
|
+
Requires-Dist: dash-cytoscape>=1.0.0; extra == "dev"
|
|
61
|
+
Requires-Dist: dash-daq>=0.6.0; extra == "dev"
|
|
62
|
+
Requires-Dist: networkx>=3.0.0; extra == "dev"
|
|
63
|
+
Requires-Dist: werkzeug>=3.0.0; extra == "dev"
|
|
48
64
|
Provides-Extra: docs
|
|
49
65
|
Requires-Dist: mkdocs-material<10,>=9.0.0; extra == "docs"
|
|
50
66
|
Requires-Dist: mkdocstrings-python>=1.0.0; extra == "docs"
|
|
@@ -55,7 +71,7 @@ Requires-Dist: mkdocs-literate-nav>=0.6.0; extra == "docs"
|
|
|
55
71
|
Requires-Dist: markdown-include>=0.8.0; extra == "docs"
|
|
56
72
|
Requires-Dist: pymdown-extensions>=10.0.0; extra == "docs"
|
|
57
73
|
Requires-Dist: pygments>=2.14.0; extra == "docs"
|
|
58
|
-
Requires-Dist: mike
|
|
74
|
+
Requires-Dist: mike>=2.0.0; extra == "docs"
|
|
59
75
|
Dynamic: license-file
|
|
60
76
|
|
|
61
77
|
# FlixOpt: Energy and Material Flow Optimization Framework
|
|
@@ -78,7 +94,7 @@ Dynamic: license-file
|
|
|
78
94
|
|
|
79
95
|
**flixopt** provides a user-friendly interface with options for advanced users.
|
|
80
96
|
|
|
81
|
-
It was originally developed by [TU Dresden](https://github.com/gewv-tu-dresden) as part of the SMARTBIOGRID project, funded by the German Federal Ministry for Economic Affairs and Energy (FKZ: 03KB159B). Building on the Matlab-based flixOptMat framework (developed in the FAKS project), FlixOpt also incorporates concepts from [oemof/solph](https://github.com/oemof/oemof-solph).
|
|
97
|
+
It was originally developed by [TU Dresden](https://github.com/gewv-tu-dresden) as part of the SMARTBIOGRID project, funded by the German Federal Ministry for Economic Affairs and Energy (FKZ: 03KB159B). Building on the Matlab-based flixOptMat framework (developed in the FAKS project), FlixOpt also incorporates concepts from [oemof/solph](https://github.com/oemof/oemof-solph).
|
|
82
98
|
|
|
83
99
|
---
|
|
84
100
|
|
|
@@ -103,7 +119,7 @@ It was originally developed by [TU Dresden](https://github.com/gewv-tu-dresden)
|
|
|
103
119
|
|
|
104
120
|
- **Calculation Modes**
|
|
105
121
|
- **Full** - Solve the model with highest accuracy and computational requirements.
|
|
106
|
-
- **Segmented** - Speed up solving by using a rolling horizon.
|
|
122
|
+
- **Segmented** - Speed up solving by using a rolling horizon.
|
|
107
123
|
- **Aggregated** - Speed up solving by identifying typical periods using [TSAM](https://github.com/FZJ-IEK3-VSA/tsam). Suitable for large models.
|
|
108
124
|
|
|
109
125
|
---
|
|
@@ -125,22 +141,27 @@ The documentation is available at [https://flixopt.github.io/flixopt/latest/](ht
|
|
|
125
141
|
|
|
126
142
|
---
|
|
127
143
|
|
|
128
|
-
##
|
|
144
|
+
## 🎯️ Solver Integration
|
|
129
145
|
|
|
130
|
-
By default, FlixOpt uses the open-source solver [HiGHS](https://highs.dev/) which is installed by default. However, it is compatible with additional solvers such as:
|
|
146
|
+
By default, FlixOpt uses the open-source solver [HiGHS](https://highs.dev/) which is installed by default. However, it is compatible with additional solvers such as:
|
|
131
147
|
|
|
132
|
-
- [Gurobi](https://www.gurobi.com/)
|
|
133
|
-
- [CBC](https://github.com/coin-or/Cbc)
|
|
148
|
+
- [Gurobi](https://www.gurobi.com/)
|
|
149
|
+
- [CBC](https://github.com/coin-or/Cbc)
|
|
134
150
|
- [GLPK](https://www.gnu.org/software/glpk/)
|
|
135
151
|
- [CPLEX](https://www.ibm.com/analytics/cplex-optimizer)
|
|
136
152
|
|
|
137
|
-
For detailed licensing and installation instructions, refer to the respective solver documentation.
|
|
153
|
+
For detailed licensing and installation instructions, refer to the respective solver documentation.
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## 🛠 Development Setup
|
|
158
|
+
Look into our docs for [development setup](https://flixopt.github.io/flixopt/latest/contribute/)
|
|
138
159
|
|
|
139
160
|
---
|
|
140
161
|
|
|
141
162
|
## 📖 Citation
|
|
142
163
|
|
|
143
|
-
If you use FlixOpt in your research or project, please cite the following:
|
|
164
|
+
If you use FlixOpt in your research or project, please cite the following:
|
|
144
165
|
|
|
145
|
-
- **Main Citation:** [DOI:10.18086/eurosun.2022.04.07](https://doi.org/10.18086/eurosun.2022.04.07)
|
|
146
|
-
- **Short Overview:** [DOI:10.13140/RG.2.2.14948.24969](https://doi.org/10.13140/RG.2.2.14948.24969)
|
|
166
|
+
- **Main Citation:** [DOI:10.18086/eurosun.2022.04.07](https://doi.org/10.18086/eurosun.2022.04.07)
|
|
167
|
+
- **Short Overview:** [DOI:10.13140/RG.2.2.14948.24969](https://doi.org/10.13140/RG.2.2.14948.24969)
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
docs/examples/00-Minimal Example.md,sha256=TjtnI8o96YNOCFwRC8BSXFGoVqfB53BtvOG4b29FwkQ,80
|
|
2
|
+
docs/examples/01-Basic Example.md,sha256=sZHonC6A_wtZ2IEy_6BAMY8wViyIcivmcj8GYIZ_qck,78
|
|
3
|
+
docs/examples/02-Complex Example.md,sha256=5cczYkXFpzpQTNp9dkmOEdTXxoWLETKty417q6MyT8s,287
|
|
4
|
+
docs/examples/03-Calculation Modes.md,sha256=FZPBXmrkir6QhQsiXwWp2sOOntIIkODCgh3lVqOrP6w,231
|
|
5
|
+
docs/examples/index.md,sha256=KwXrsxxiHk563bny4I4B2X_CfPNiSXx8TsfI671MLdg,179
|
|
6
|
+
docs/faq/contribute.md,sha256=CL7Z85zyPes1Kl16_8oWLU2RTTbMdPfhmvt4tsnkikU,2508
|
|
7
|
+
docs/faq/index.md,sha256=MH_SPZllm_5npxPP6DHXbJlpLXZc-nbWTFJvMmZYz9Q,50
|
|
8
|
+
docs/images/architecture_flixOpt-pre2.0.0.png,sha256=9RWSA3vys588aadr2437zor-_-xBTQNQ0bAf8xGcu5g,70605
|
|
9
|
+
docs/images/architecture_flixOpt.png,sha256=KjN1bJwESbkHmTW7UsJ7dZyiKZlTO7Dx20dg8KlR1HU,260219
|
|
10
|
+
docs/images/flixopt-icon.svg,sha256=_1a6bk2pDOVEy233LC1nM6jZ35NdzD8Hd3UqGxW1Xpg,135341
|
|
11
|
+
docs/javascripts/mathjax.js,sha256=LJDaO5MM_5W8gI5-S5SiZ17qeMgeoVJO-inMyBNy7UE,402
|
|
12
|
+
docs/user-guide/index.md,sha256=TBO7lk13M95w2A9WiT5asfZn9oU9GZ1O0XW9eUm5GLo,7450
|
|
13
|
+
docs/user-guide/Mathematical Notation/Bus.md,sha256=pqjGa3PZBSmuO4YR44bK21bMmRcWC8dkzP3z0XX-PJw,1613
|
|
14
|
+
"docs/user-guide/Mathematical Notation/Effects, Penalty & Objective.md",sha256=OZnpxhX0R6NpJNP-FJ4g3lXWTRlv-Hhpp484Wits-ZI,5664
|
|
15
|
+
docs/user-guide/Mathematical Notation/Flow.md,sha256=wqUgP_SntSyzcJNxbkxa2TmApqpPaq6GZ_Qk_qcAAlw,1095
|
|
16
|
+
docs/user-guide/Mathematical Notation/LinearConverter.md,sha256=9oFHIA3-QLSOV-QQ3a6je7kcIluJGZH8qtgquf5zieE,1322
|
|
17
|
+
docs/user-guide/Mathematical Notation/Piecewise.md,sha256=GgTQ7dVTTb0lq14GFuuZeGYrUXtMy1wkztJLIVchchw,1993
|
|
18
|
+
docs/user-guide/Mathematical Notation/Storage.md,sha256=Zk5Irnr4bxIqI2KL2wcbAg8PdFDGTxhDFlRrnvjK6Bk,2200
|
|
19
|
+
docs/user-guide/Mathematical Notation/index.md,sha256=2d6k4zbKET1kg7zBt1fEdKsG8jM5j2IIe6yclMTUlDw,1254
|
|
20
|
+
docs/user-guide/Mathematical Notation/others.md,sha256=z6LOzcnvfI-1qQx0Fg7Q6wSK9tAzH2d34KbW4lYNyCE,48
|
|
21
|
+
flixopt/__init__.py,sha256=xTxHXC-_lWa65roGUM3J3HXfiYcMCJHoQsuL5mS0Xkg,688
|
|
22
|
+
flixopt/aggregation.py,sha256=xgQu2U5YEbtdDAEMjWiuP9uo_KjhzC95VNmY4ZcSX3I,16939
|
|
23
|
+
flixopt/calculation.py,sha256=pj8nvAG3Vv6NHNyvhU3YbrMDogClFni5CfuJk4631Fw,19914
|
|
24
|
+
flixopt/commons.py,sha256=ZNlUN1z-h9OGHPo-s-n5OLlJaoPZKVGcAdRyGKpMk4M,1256
|
|
25
|
+
flixopt/components.py,sha256=o9H4yfwuI_Y31BuYZH_NkVYm_Du4aoAiVTtHO_KhMUg,33297
|
|
26
|
+
flixopt/config.py,sha256=Kt8QYk7hX5qHcQUtfgjM862C6SQr4K2lDvtk_LLER8Y,9085
|
|
27
|
+
flixopt/config.yaml,sha256=imzAnnhcJhIfKNTTXFB5Td7Pvk5ARn5j720k-oGGRug,392
|
|
28
|
+
flixopt/core.py,sha256=vaIBRQE0w9Ro5Xe_jWHKXMLRenSS2P1Tpy9-geTuWcE,38103
|
|
29
|
+
flixopt/effects.py,sha256=7kwZwfv3oRmkzc30kdjeOyB4qnyA9zxsPun1ysQdDxM,16662
|
|
30
|
+
flixopt/elements.py,sha256=MDOQb17FkUGN1bgdbAMoavBuBmVtN6evDbLT7ExL4pI,26944
|
|
31
|
+
flixopt/features.py,sha256=JgvwIK5o8GKJBUnicfMe7sfXbzojFQGfAkCpGVwzKww,43983
|
|
32
|
+
flixopt/flow_system.py,sha256=Gowg5k7LWlF6VYRHtrIbKVCKWKMrzlZQtBCfdeEq4jQ,19607
|
|
33
|
+
flixopt/interface.py,sha256=uXf6Z29OfHpIRsS1-oZZ6SSuy8FLe13FjtqzHPqzzQE,12088
|
|
34
|
+
flixopt/io.py,sha256=2QKdtu2-mkzSGBIqHtUcF9UaG32nq9qcIRxZghf1hLw,11284
|
|
35
|
+
flixopt/linear_converters.py,sha256=ej5V_ML_3m1k9HbDnuey6pHEpQtguYkxBXHxWyE9sq0,10936
|
|
36
|
+
flixopt/network_app.py,sha256=oVdARrTDV43H5ZAypJP3dmIL4A9x-Y3ec0zZC5gS8rA,28019
|
|
37
|
+
flixopt/plotting.py,sha256=wUwBSQxxwy1uui-mi2hgj6h__O6EvxCnocIbX0ewpMk,54111
|
|
38
|
+
flixopt/results.py,sha256=GKSZmz0GCuJwspTC8Ot6MOKinvy_mhnDXCafb_f7uVY,35161
|
|
39
|
+
flixopt/solvers.py,sha256=k1bSoiXec3asWED70-erXkgtpn2C8KRBfSZj0FLviSM,2436
|
|
40
|
+
flixopt/structure.py,sha256=CZIz_8UVF56BT4tiDQYzfH4WCR-yaiZHW0--u6olHx4,26281
|
|
41
|
+
flixopt/utils.py,sha256=f-_vFDvvG27-c_VMpzkv3lb79Yny4rvoSmemushbzhU,1687
|
|
42
|
+
flixopt-2.1.7.dist-info/licenses/LICENSE,sha256=HKsZnbrM_3Rvnr_u9cWSG90cBsj5_slaqI_z_qcxnGI,1118
|
|
43
|
+
pics/architecture_flixOpt-pre2.0.0.png,sha256=9RWSA3vys588aadr2437zor-_-xBTQNQ0bAf8xGcu5g,70605
|
|
44
|
+
pics/architecture_flixOpt.png,sha256=KjN1bJwESbkHmTW7UsJ7dZyiKZlTO7Dx20dg8KlR1HU,260219
|
|
45
|
+
pics/flixOpt_plotting.jpg,sha256=zn7ZPAtXm5eRTxtOj86e4-PPhHpCar1jqGh7vMBgQGY,518862
|
|
46
|
+
pics/flixopt-icon.svg,sha256=_1a6bk2pDOVEy233LC1nM6jZ35NdzD8Hd3UqGxW1Xpg,135341
|
|
47
|
+
pics/pics.pptx,sha256=ImWeGGvjtWJ6BGruipsnZYmWtHj5sWdbw1NSFePbkC8,683344
|
|
48
|
+
scripts/extract_release_notes.py,sha256=3UUE4hWhdd2t2m2x0ZpchGP-A0MvfqO2Wc5EdNN-fgE,1249
|
|
49
|
+
scripts/gen_ref_pages.py,sha256=AYRtXyz78x5I_Hn0oRtGVbTxgLLj2QNyRX6vWRefPjc,1960
|
|
50
|
+
tests/ressources/Zeitreihen2020.csv,sha256=kbsDTKZS0iUsNZAS7m3DohzZI_OHHWe44s3GwLvcTLw,1918412
|
|
51
|
+
flixopt-2.1.7.dist-info/METADATA,sha256=_cFPusrwdee_4dJRFbKQWGhTWZOHTrWsT4PdBVhLhJA,8229
|
|
52
|
+
flixopt-2.1.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
53
|
+
flixopt-2.1.7.dist-info/top_level.txt,sha256=DEuo4R1z7GmEp5R3pjbQEJbaPRjKHFvNX2ceiBnVOL0,32
|
|
54
|
+
flixopt-2.1.7.dist-info/RECORD,,
|
scripts/extract_release_notes.py
CHANGED
|
@@ -11,10 +11,10 @@ from pathlib import Path
|
|
|
11
11
|
|
|
12
12
|
def extract_release_notes(version: str) -> str:
|
|
13
13
|
"""Extract release notes for a specific version from CHANGELOG.md"""
|
|
14
|
-
changelog_path = Path(
|
|
14
|
+
changelog_path = Path('CHANGELOG.md')
|
|
15
15
|
|
|
16
16
|
if not changelog_path.exists():
|
|
17
|
-
print(
|
|
17
|
+
print('❌ Error: CHANGELOG.md not found', file=sys.stderr)
|
|
18
18
|
sys.exit(1)
|
|
19
19
|
|
|
20
20
|
content = changelog_path.read_text(encoding='utf-8')
|
|
@@ -32,8 +32,8 @@ def extract_release_notes(version: str) -> str:
|
|
|
32
32
|
|
|
33
33
|
def main():
|
|
34
34
|
if len(sys.argv) != 2:
|
|
35
|
-
print(
|
|
36
|
-
print(
|
|
35
|
+
print('Usage: python extract_release_notes.py <version>')
|
|
36
|
+
print('Example: python extract_release_notes.py 2.1.2')
|
|
37
37
|
sys.exit(1)
|
|
38
38
|
|
|
39
39
|
version = sys.argv[1]
|
|
@@ -41,5 +41,5 @@ def main():
|
|
|
41
41
|
print(release_notes)
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
if __name__ ==
|
|
44
|
+
if __name__ == '__main__':
|
|
45
45
|
main()
|
flixopt-2.1.5.dist-info/RECORD
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
docs/examples/00-Minimal Example.md,sha256=9byRZWHXtZS6e2iBxCAM12avc3xe2pbRAK38y-Y8Jqg,79
|
|
2
|
-
docs/examples/01-Basic Example.md,sha256=zTFsTf_ZKcO_dENN-yB0MvBTXxcTedjYGDI7TKpJS6s,77
|
|
3
|
-
docs/examples/02-Complex Example.md,sha256=JrvHOJ6fJ1ocVI2lJXqE9z08gkOR4tBVPFo4TcbFVkY,286
|
|
4
|
-
docs/examples/03-Calculation Modes.md,sha256=FZPBXmrkir6QhQsiXwWp2sOOntIIkODCgh3lVqOrP6w,231
|
|
5
|
-
docs/examples/index.md,sha256=3oVSaqxIDt06d1URQ940iPn2KQpjtjEUiEf5m2g8BkU,178
|
|
6
|
-
docs/faq/contribute.md,sha256=Pquj8zcTvUNZl4Ex223k-p-7UktdzyiBpKpUYd-i1Us,2361
|
|
7
|
-
docs/faq/index.md,sha256=7y0Qsc5cdN7iYxmMt7aAlI34SehVKVBYMXcOxLUTRis,49
|
|
8
|
-
docs/images/architecture_flixOpt-pre2.0.0.png,sha256=9RWSA3vys588aadr2437zor-_-xBTQNQ0bAf8xGcu5g,70605
|
|
9
|
-
docs/images/architecture_flixOpt.png,sha256=KjN1bJwESbkHmTW7UsJ7dZyiKZlTO7Dx20dg8KlR1HU,260219
|
|
10
|
-
docs/images/flixopt-icon.svg,sha256=_1a6bk2pDOVEy233LC1nM6jZ35NdzD8Hd3UqGxW1Xpg,135341
|
|
11
|
-
docs/javascripts/mathjax.js,sha256=lkPNMk5XrDlyut9e5nGHgpN7gFl8OejpdJJ_gRW_14k,401
|
|
12
|
-
docs/user-guide/index.md,sha256=fxI_bMjz7czJ5aF_7D7l5rQVpc03WV2EAaBo9y3gB2g,7452
|
|
13
|
-
docs/user-guide/Mathematical Notation/Bus.md,sha256=getjae_-rNTXbotO0euXwYCq2arBoayKsN9KeFb2u60,1612
|
|
14
|
-
"docs/user-guide/Mathematical Notation/Effects, Penalty & Objective.md",sha256=RNqcJzNI1E-U01gaeoKu7m-7gjmtDWvjr2Y5JK9YgTA,5685
|
|
15
|
-
docs/user-guide/Mathematical Notation/Flow.md,sha256=MaBsj5j5dfa1qnUYCKbrNqE2yDZSeJ60_hoq95uhWyg,1094
|
|
16
|
-
docs/user-guide/Mathematical Notation/LinearConverter.md,sha256=XNkRgE8-MVNplKT3n1MyIrtgTRkbbwp7-qfapZw2kfU,1322
|
|
17
|
-
docs/user-guide/Mathematical Notation/Piecewise.md,sha256=ia4rkKYrEidWIBsgLMAkt10JH-idmaavJTAMzAlMH_8,1994
|
|
18
|
-
docs/user-guide/Mathematical Notation/Storage.md,sha256=PeNzk77i-81VX8I5r3zen3karF5v3wal9x2_ReUuyho,2199
|
|
19
|
-
docs/user-guide/Mathematical Notation/index.md,sha256=gkglBsoARhgvppXN9PgdJF33sCSnwGY7MtKDtCC32bE,1255
|
|
20
|
-
docs/user-guide/Mathematical Notation/others.md,sha256=wOUsfspAoSNTMlTNipeQ8ohoVVX2S-eI3dmlzqqrbR8,47
|
|
21
|
-
flixopt/__init__.py,sha256=F49OK5QLUnMGmsaKQ-G0dXsVuKr9Ow_pjM4KMSNZ918,614
|
|
22
|
-
flixopt/aggregation.py,sha256=UaAYh34C4XhDgiSs4lm31XEMLr4YO5BzLKUAx4NQuyI,17002
|
|
23
|
-
flixopt/calculation.py,sha256=1Hs9dc6eqdJoHT6Dd3NlwdRORFO2vKdKx38o95FPxJE,20016
|
|
24
|
-
flixopt/commons.py,sha256=ZNlUN1z-h9OGHPo-s-n5OLlJaoPZKVGcAdRyGKpMk4M,1256
|
|
25
|
-
flixopt/components.py,sha256=7vI0IzWBLj81IErPllWHbMMqrrPlplYOPcH3aHvDbeY,29124
|
|
26
|
-
flixopt/config.py,sha256=Kt8QYk7hX5qHcQUtfgjM862C6SQr4K2lDvtk_LLER8Y,9085
|
|
27
|
-
flixopt/config.yaml,sha256=imzAnnhcJhIfKNTTXFB5Td7Pvk5ARn5j720k-oGGRug,392
|
|
28
|
-
flixopt/core.py,sha256=dBdAzA3khIe64aVGpPj3G5PzOr7RdGdSymnV3xWgaR8,38083
|
|
29
|
-
flixopt/effects.py,sha256=TKpUfUo0wbX5y5HS9U8HcDNOiygg0R7k9V3TM0G6uL4,16650
|
|
30
|
-
flixopt/elements.py,sha256=9P2uB3twwADf48Gx1xCluE-ZJCkzw0X7tYrtKEQOjk8,26932
|
|
31
|
-
flixopt/features.py,sha256=sEtdj7BpaYS9a0XdhRUtdDFXWLdaGABRXdi5JOoLPb0,43919
|
|
32
|
-
flixopt/flow_system.py,sha256=4D2u2ucLig0GbC7ksCuWXuZPZdkgDzPafv-GhjAxRyk,17479
|
|
33
|
-
flixopt/interface.py,sha256=uXf6Z29OfHpIRsS1-oZZ6SSuy8FLe13FjtqzHPqzzQE,12088
|
|
34
|
-
flixopt/io.py,sha256=2QKdtu2-mkzSGBIqHtUcF9UaG32nq9qcIRxZghf1hLw,11284
|
|
35
|
-
flixopt/linear_converters.py,sha256=ej5V_ML_3m1k9HbDnuey6pHEpQtguYkxBXHxWyE9sq0,10936
|
|
36
|
-
flixopt/plotting.py,sha256=wUwBSQxxwy1uui-mi2hgj6h__O6EvxCnocIbX0ewpMk,54111
|
|
37
|
-
flixopt/results.py,sha256=GKSZmz0GCuJwspTC8Ot6MOKinvy_mhnDXCafb_f7uVY,35161
|
|
38
|
-
flixopt/solvers.py,sha256=k1bSoiXec3asWED70-erXkgtpn2C8KRBfSZj0FLviSM,2436
|
|
39
|
-
flixopt/structure.py,sha256=QS0IFBHzdEMKYTgd6uosudhoDD4X0JcdF7LlS-XRacs,26295
|
|
40
|
-
flixopt/utils.py,sha256=f-_vFDvvG27-c_VMpzkv3lb79Yny4rvoSmemushbzhU,1687
|
|
41
|
-
flixopt-2.1.5.dist-info/licenses/LICENSE,sha256=HKsZnbrM_3Rvnr_u9cWSG90cBsj5_slaqI_z_qcxnGI,1118
|
|
42
|
-
pics/architecture_flixOpt-pre2.0.0.png,sha256=9RWSA3vys588aadr2437zor-_-xBTQNQ0bAf8xGcu5g,70605
|
|
43
|
-
pics/architecture_flixOpt.png,sha256=KjN1bJwESbkHmTW7UsJ7dZyiKZlTO7Dx20dg8KlR1HU,260219
|
|
44
|
-
pics/flixOpt_plotting.jpg,sha256=zn7ZPAtXm5eRTxtOj86e4-PPhHpCar1jqGh7vMBgQGY,518862
|
|
45
|
-
pics/flixopt-icon.svg,sha256=_1a6bk2pDOVEy233LC1nM6jZ35NdzD8Hd3UqGxW1Xpg,135341
|
|
46
|
-
pics/pics.pptx,sha256=ImWeGGvjtWJ6BGruipsnZYmWtHj5sWdbw1NSFePbkC8,683344
|
|
47
|
-
scripts/extract_release_notes.py,sha256=0v8B9c6VXz55PJ0I08W7FdxGp7jEY5NOkrqMY6MNdYU,1249
|
|
48
|
-
scripts/gen_ref_pages.py,sha256=AYRtXyz78x5I_Hn0oRtGVbTxgLLj2QNyRX6vWRefPjc,1960
|
|
49
|
-
tests/ressources/Zeitreihen2020.csv,sha256=kbsDTKZS0iUsNZAS7m3DohzZI_OHHWe44s3GwLvcTLw,1918412
|
|
50
|
-
flixopt-2.1.5.dist-info/METADATA,sha256=ZJ7vyViYZJqGjQp1K3Em_9_e414_ckwGnYiKzg4BwRQ,7343
|
|
51
|
-
flixopt-2.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
52
|
-
flixopt-2.1.5.dist-info/top_level.txt,sha256=DEuo4R1z7GmEp5R3pjbQEJbaPRjKHFvNX2ceiBnVOL0,32
|
|
53
|
-
flixopt-2.1.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|