dwind 0.3__py3-none-any.whl → 0.3.2__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.
- dwind/__init__.py +1 -1
- dwind/btm_sizing.py +2 -2
- dwind/cli/__init__.py +0 -0
- dwind/cli/collect.py +114 -0
- dwind/cli/debug.py +137 -0
- dwind/cli/run.py +288 -0
- dwind/cli/utils.py +166 -0
- dwind/config.py +159 -8
- dwind/loader.py +4 -1
- dwind/main.py +20 -0
- dwind/model.py +265 -99
- dwind/mp.py +61 -61
- dwind/resource.py +122 -40
- dwind/run.py +50 -17
- dwind/scenarios.py +75 -35
- dwind/utils/__init__.py +0 -0
- dwind/utils/array.py +99 -0
- dwind/utils/hpc.py +138 -0
- dwind/utils/loader.py +63 -0
- dwind/utils/progress.py +60 -0
- dwind/valuation.py +396 -290
- {dwind-0.3.dist-info → dwind-0.3.2.dist-info}/METADATA +2 -1
- dwind-0.3.2.dist-info/RECORD +28 -0
- dwind-0.3.2.dist-info/entry_points.txt +2 -0
- dwind-0.3.dist-info/RECORD +0 -17
- dwind-0.3.dist-info/entry_points.txt +0 -2
- {dwind-0.3.dist-info → dwind-0.3.2.dist-info}/WHEEL +0 -0
- {dwind-0.3.dist-info → dwind-0.3.2.dist-info}/licenses/LICENSE.txt +0 -0
- {dwind-0.3.dist-info → dwind-0.3.2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: dwind
|
3
|
-
Version: 0.3
|
3
|
+
Version: 0.3.2
|
4
4
|
Summary: Distributed Wind Generation Model
|
5
5
|
Author-email: Jane Lockshin <jane.lockshin@nrel.gov>, Paritosh Das <paritosh.das@nrel.gov>, Rob Hammond <rob.hammond@nrel.gov>
|
6
6
|
Project-URL: source, https://github.com/NREL/dwind
|
@@ -33,6 +33,7 @@ Requires-Dist: pyarrow==17
|
|
33
33
|
Requires-Dist: fastparquet
|
34
34
|
Requires-Dist: h5pyd
|
35
35
|
Requires-Dist: typer
|
36
|
+
Requires-Dist: rich
|
36
37
|
Requires-Dist: tomli>=1.1.0; python_version < "3.11"
|
37
38
|
Provides-Extra: dev
|
38
39
|
Requires-Dist: pre-commit; extra == "dev"
|
@@ -0,0 +1,28 @@
|
|
1
|
+
dwind/__init__.py,sha256=KNd3RypDyojvbMmJPXohTXa1fuqpL_4qbqDYxUqdp40,57
|
2
|
+
dwind/btm_sizing.py,sha256=S1QxmUgTVMGxnDtmOeJv2jpfQp1GBAG8WuH4PMRFvhA,5009
|
3
|
+
dwind/config.py,sha256=EuIc5pGjdBzma5qVebp2C3pft8wdZglQxzjh3yo6TJA,8756
|
4
|
+
dwind/helper.py,sha256=BCYnZYq1aKUZZ5FBEw69Et4nEspG7l7p3X4Qb0VOkV8,6285
|
5
|
+
dwind/loader.py,sha256=-E2LYkAkXx30BwDdGmQ_pMtAUVLYaoe8zQ6BxkdCBMk,2294
|
6
|
+
dwind/main.py,sha256=Vrv9MbNkFQSHxhdfw0wjnE5LZu0OmztJEU17OVqKHfQ,514
|
7
|
+
dwind/model.py,sha256=L6M7hnkAxiGMYoJRwNj6cF28hBGPT_mnvWa9oIEB7cg,22167
|
8
|
+
dwind/mp.py,sha256=afL1IfnV9-aXbR1Hrl6hRG22WtDJSEjXEUt-fYUdKwo,8423
|
9
|
+
dwind/resource.py,sha256=t2aFL9VCobIIpXMk8i4kyQYqsyEeej4V0STZcvG9xKc,10385
|
10
|
+
dwind/run.py,sha256=fdxBBKEHEh9wXgJ3EtXCx1VI-wOSsfHiHQCz1I3DJu0,10015
|
11
|
+
dwind/scenarios.py,sha256=QKzGNmvRAkVZQL_leX7TWO5CD8HKwfzCoUwAcDxS_aE,6513
|
12
|
+
dwind/valuation.py,sha256=CHQkU0myVdmse-21rr4fD_tCpXATgJ7Odl-hOkpvaXI,67937
|
13
|
+
dwind/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
+
dwind/cli/collect.py,sha256=hYGgwy0rW25arur-2XcdMhpErp9W5MJgd-eYZvZQPNE,3210
|
15
|
+
dwind/cli/debug.py,sha256=Mev72RKphMi8oCYm3by-rlp-iKpWVcMCllUzAx4Igao,4478
|
16
|
+
dwind/cli/run.py,sha256=Zou4MFGpNNO7zqw1Km3kmahcpjWqCX938L0npnr9yDk,9129
|
17
|
+
dwind/cli/utils.py,sha256=e1R9XfULMotbZXJvlqlgVQ3nFr_wqBD5QPenzD5-nwM,5687
|
18
|
+
dwind/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
+
dwind/utils/array.py,sha256=_iWC_IH8oD-Sb6Ezz6pS9A17pfcqx51U7eoTimqiY7c,3682
|
20
|
+
dwind/utils/hpc.py,sha256=E3D7q5fiWPGdE5oKK2kBzCQhNoPEENhs_bGHbWxi-jI,4860
|
21
|
+
dwind/utils/loader.py,sha256=eC7RVofPHeCnW28d8taP8SBG7gPAgC0QJvox3qfGgvA,2447
|
22
|
+
dwind/utils/progress.py,sha256=Q3RR58BG1LUCD6VHucA3ruBL2wyVUSnrCpejGWjeJEM,1985
|
23
|
+
dwind-0.3.2.dist-info/licenses/LICENSE.txt,sha256=a6siYqaIG9I77f9adAqiWPBgyL-MGjAorTMa5c1YtUY,1536
|
24
|
+
dwind-0.3.2.dist-info/METADATA,sha256=Dr56jACxkb6BAxieEIsOHjOzGzW4jJ3T2YRFyQcHwaM,6953
|
25
|
+
dwind-0.3.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
26
|
+
dwind-0.3.2.dist-info/entry_points.txt,sha256=DOVAlTYbfTjuOjJF74nex__Exs62-huie__RTiGh7eo,41
|
27
|
+
dwind-0.3.2.dist-info/top_level.txt,sha256=fj_esaS-KV1YSmx7yCUoXFiRJ0dHx34B876svoE7NGE,6
|
28
|
+
dwind-0.3.2.dist-info/RECORD,,
|
dwind-0.3.dist-info/RECORD
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
dwind/__init__.py,sha256=1SS8cDsZlyc8ptI9EiFCN7kRnI9sqd0sz8D78uMYL8A,55
|
2
|
-
dwind/btm_sizing.py,sha256=cDOHWgS0Mzqyqx9mgct5M6ve33TqQFn5dU3JkFRy2gY,5016
|
3
|
-
dwind/config.py,sha256=KdDj0FjaOLI4XqBE2Q3-SKslRGeFvo49JKFiKlj6kI4,4001
|
4
|
-
dwind/helper.py,sha256=BCYnZYq1aKUZZ5FBEw69Et4nEspG7l7p3X4Qb0VOkV8,6285
|
5
|
-
dwind/loader.py,sha256=DDmaI6scXK8xC15KB7I4F1yF77_vx-bvad65TIV0eik,2239
|
6
|
-
dwind/model.py,sha256=g-MYvIGW0n_uxCQtt5Egt3MRdzuFV7DSlDpZCsaMsZg,15142
|
7
|
-
dwind/mp.py,sha256=TSwv8ql2UtVyZfPmRgbixYbVepQUVKptHgLBgfrnT3Q,8469
|
8
|
-
dwind/resource.py,sha256=l7Oz-yFEmRSbK1CwMUGB16URcxkr1onkKE0nJLIJgWM,6662
|
9
|
-
dwind/run.py,sha256=3AN084jOg0XU9ArTn7LySRs6v0p64-6bQfXqVhJY3sM,8801
|
10
|
-
dwind/scenarios.py,sha256=UOACORe_Sf0a2MialEKAHNAwXHu1bD--0B94az6VNJA,4926
|
11
|
-
dwind/valuation.py,sha256=1QLPm-X_QsxrTHOBSoVHjWWLtafhaqNPCTa2u9sFaqI,61145
|
12
|
-
dwind-0.3.dist-info/licenses/LICENSE.txt,sha256=a6siYqaIG9I77f9adAqiWPBgyL-MGjAorTMa5c1YtUY,1536
|
13
|
-
dwind-0.3.dist-info/METADATA,sha256=GL6UpyyGY-kj6uy3Sf1zB7Y5rYxyFWSYUEs0nd-u_vk,6931
|
14
|
-
dwind-0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
15
|
-
dwind-0.3.dist-info/entry_points.txt,sha256=i0jOR14bQHIF8Ayw9QTQ2F_lWM9spZWApao58FpgFL4,40
|
16
|
-
dwind-0.3.dist-info/top_level.txt,sha256=fj_esaS-KV1YSmx7yCUoXFiRJ0dHx34B876svoE7NGE,6
|
17
|
-
dwind-0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|