NREL-reV 0.8.7__tar.gz → 0.9.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.
- {NREL-reV-0.8.7 → NREL-reV-0.9.0/NREL_reV.egg-info}/PKG-INFO +11 -9
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/NREL_reV.egg-info/requires.txt +2 -1
- {NREL-reV-0.8.7/NREL_reV.egg-info → NREL-reV-0.9.0}/PKG-INFO +11 -9
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/README.rst +10 -8
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/SAM/SAM.py +217 -133
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/SAM/econ.py +18 -14
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/SAM/generation.py +611 -422
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/SAM/windbos.py +93 -79
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/bespoke/bespoke.py +681 -377
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/bespoke/cli_bespoke.py +2 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/bespoke/place_turbines.py +187 -43
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/output_request.py +2 -1
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/project_points.py +218 -140
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/econ/econ.py +166 -114
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/econ/economies_of_scale.py +91 -45
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/generation/base.py +331 -184
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/generation/generation.py +326 -200
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/handlers/__init__.py +0 -1
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/handlers/exclusions.py +16 -15
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/handlers/multi_year.py +57 -26
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/handlers/outputs.py +6 -5
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/handlers/transmission.py +44 -27
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/hybrids/hybrid_methods.py +30 -30
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/hybrids/hybrids.py +305 -189
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/nrwal/nrwal.py +262 -168
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/qa_qc/cli_qa_qc.py +14 -10
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/qa_qc/qa_qc.py +217 -119
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/qa_qc/summary.py +228 -146
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/rep_profiles/rep_profiles.py +349 -230
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/aggregation.py +349 -188
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/competitive_wind_farms.py +90 -48
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/exclusions.py +138 -85
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/extent.py +75 -50
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/points.py +735 -390
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/sc_aggregation.py +357 -248
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/supply_curve.py +604 -347
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/tech_mapping.py +144 -82
- NREL-reV-0.9.0/reV/utilities/__init__.py +326 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/utilities/pytest_utils.py +8 -4
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/version.py +1 -1
- NREL-reV-0.8.7/reV/utilities/__init__.py +0 -68
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/LICENSE +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/NREL_reV.egg-info/SOURCES.txt +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/NREL_reV.egg-info/dependency_links.txt +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/NREL_reV.egg-info/entry_points.txt +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/NREL_reV.egg-info/not-zip-safe +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/NREL_reV.egg-info/top_level.txt +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/SAM/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/SAM/defaults.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/SAM/version_checker.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/bespoke/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/bespoke/gradient_free.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/bespoke/pack_turbs.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/bespoke/plotting_functions.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/cli.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/base_analysis_config.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/base_config.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/cli_project_points.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/curtailment.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/execution.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/config/sam_config.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/econ/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/econ/cli_econ.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/econ/utilities.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/generation/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/generation/cli_gen.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/handlers/cli_collect.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/handlers/cli_multi_year.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/hybrids/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/hybrids/cli_hybrids.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/losses/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/losses/power_curve.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/losses/scheduled.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/losses/utils.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/nrwal/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/nrwal/cli_nrwal.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/qa_qc/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/rep_profiles/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/rep_profiles/cli_rep_profiles.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/__init__.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/cli_sc_aggregation.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/supply_curve/cli_supply_curve.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/utilities/cli_functions.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/utilities/curtailment.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/utilities/exceptions.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/reV/utilities/slots.py +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/setup.cfg +0 -0
- {NREL-reV-0.8.7 → NREL-reV-0.9.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: NREL-reV
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.9.0
|
4
4
|
Summary: National Renewable Energy Laboratory's (NREL's) Renewable Energy Potential(V) Model: reV
|
5
5
|
Home-page: https://nrel.github.io/reV/
|
6
6
|
Author: Galen Maclaurin
|
@@ -10,28 +10,30 @@ Description:
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
|
13
|
+
|Docs| |Tests| |Linter| |PythonV| |Pypi| |Codecov| |Zenodo| |Binder|
|
14
|
+
|
15
|
+
.. |Docs| image:: https://github.com/NREL/reV/workflows/Documentation/badge.svg
|
14
16
|
:target: https://nrel.github.io/reV/
|
15
17
|
|
16
|
-
.. image:: https://github.com/NREL/reV/workflows/Pytests/badge.svg
|
18
|
+
.. |Tests| image:: https://github.com/NREL/reV/workflows/Pytests/badge.svg
|
17
19
|
:target: https://github.com/NREL/reV/actions?query=workflow%3A%22Pytests%22
|
18
20
|
|
19
|
-
.. image:: https://github.com/NREL/reV/workflows/Lint%20Code%20Base/badge.svg
|
21
|
+
.. |Linter| image:: https://github.com/NREL/reV/workflows/Lint%20Code%20Base/badge.svg
|
20
22
|
:target: https://github.com/NREL/reV/actions?query=workflow%3A%22Lint+Code+Base%22
|
21
23
|
|
22
|
-
.. image:: https://img.shields.io/pypi/pyversions/NREL-reV.svg
|
24
|
+
.. |PythonV| image:: https://img.shields.io/pypi/pyversions/NREL-reV.svg
|
23
25
|
:target: https://pypi.org/project/NREL-reV/
|
24
26
|
|
25
|
-
.. image:: https://badge.fury.io/py/NREL-reV.svg
|
27
|
+
.. |Pypi| image:: https://badge.fury.io/py/NREL-reV.svg
|
26
28
|
:target: https://badge.fury.io/py/NREL-reV
|
27
29
|
|
28
|
-
.. image:: https://codecov.io/gh/nrel/reV/branch/main/graph/badge.svg?token=U4ZU9F0K0Z
|
30
|
+
.. |Codecov| image:: https://codecov.io/gh/nrel/reV/branch/main/graph/badge.svg?token=U4ZU9F0K0Z
|
29
31
|
:target: https://codecov.io/gh/nrel/reV
|
30
32
|
|
31
|
-
.. image:: https://zenodo.org/badge/201343076.svg
|
33
|
+
.. |Zenodo| image:: https://zenodo.org/badge/201343076.svg
|
32
34
|
:target: https://zenodo.org/badge/latestdoi/201343076
|
33
35
|
|
34
|
-
.. image:: https://mybinder.org/badge_logo.svg
|
36
|
+
.. |Binder| image:: https://mybinder.org/badge_logo.svg
|
35
37
|
:target: https://mybinder.org/v2/gh/nrel/reV/HEAD
|
36
38
|
|
37
39
|
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: NREL-reV
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.9.0
|
4
4
|
Summary: National Renewable Energy Laboratory's (NREL's) Renewable Energy Potential(V) Model: reV
|
5
5
|
Home-page: https://nrel.github.io/reV/
|
6
6
|
Author: Galen Maclaurin
|
@@ -10,28 +10,30 @@ Description:
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
|
13
|
+
|Docs| |Tests| |Linter| |PythonV| |Pypi| |Codecov| |Zenodo| |Binder|
|
14
|
+
|
15
|
+
.. |Docs| image:: https://github.com/NREL/reV/workflows/Documentation/badge.svg
|
14
16
|
:target: https://nrel.github.io/reV/
|
15
17
|
|
16
|
-
.. image:: https://github.com/NREL/reV/workflows/Pytests/badge.svg
|
18
|
+
.. |Tests| image:: https://github.com/NREL/reV/workflows/Pytests/badge.svg
|
17
19
|
:target: https://github.com/NREL/reV/actions?query=workflow%3A%22Pytests%22
|
18
20
|
|
19
|
-
.. image:: https://github.com/NREL/reV/workflows/Lint%20Code%20Base/badge.svg
|
21
|
+
.. |Linter| image:: https://github.com/NREL/reV/workflows/Lint%20Code%20Base/badge.svg
|
20
22
|
:target: https://github.com/NREL/reV/actions?query=workflow%3A%22Lint+Code+Base%22
|
21
23
|
|
22
|
-
.. image:: https://img.shields.io/pypi/pyversions/NREL-reV.svg
|
24
|
+
.. |PythonV| image:: https://img.shields.io/pypi/pyversions/NREL-reV.svg
|
23
25
|
:target: https://pypi.org/project/NREL-reV/
|
24
26
|
|
25
|
-
.. image:: https://badge.fury.io/py/NREL-reV.svg
|
27
|
+
.. |Pypi| image:: https://badge.fury.io/py/NREL-reV.svg
|
26
28
|
:target: https://badge.fury.io/py/NREL-reV
|
27
29
|
|
28
|
-
.. image:: https://codecov.io/gh/nrel/reV/branch/main/graph/badge.svg?token=U4ZU9F0K0Z
|
30
|
+
.. |Codecov| image:: https://codecov.io/gh/nrel/reV/branch/main/graph/badge.svg?token=U4ZU9F0K0Z
|
29
31
|
:target: https://codecov.io/gh/nrel/reV
|
30
32
|
|
31
|
-
.. image:: https://zenodo.org/badge/201343076.svg
|
33
|
+
.. |Zenodo| image:: https://zenodo.org/badge/201343076.svg
|
32
34
|
:target: https://zenodo.org/badge/latestdoi/201343076
|
33
35
|
|
34
|
-
.. image:: https://mybinder.org/badge_logo.svg
|
36
|
+
.. |Binder| image:: https://mybinder.org/badge_logo.svg
|
35
37
|
:target: https://mybinder.org/v2/gh/nrel/reV/HEAD
|
36
38
|
|
37
39
|
|
|
@@ -8,28 +8,30 @@
|
|
8
8
|
|
9
9
|
---------
|
10
10
|
|
11
|
-
|
11
|
+
|Docs| |Tests| |Linter| |PythonV| |Pypi| |Codecov| |Zenodo| |Binder|
|
12
|
+
|
13
|
+
.. |Docs| image:: https://github.com/NREL/reV/workflows/Documentation/badge.svg
|
12
14
|
:target: https://nrel.github.io/reV/
|
13
15
|
|
14
|
-
.. image:: https://github.com/NREL/reV/workflows/Pytests/badge.svg
|
16
|
+
.. |Tests| image:: https://github.com/NREL/reV/workflows/Pytests/badge.svg
|
15
17
|
:target: https://github.com/NREL/reV/actions?query=workflow%3A%22Pytests%22
|
16
18
|
|
17
|
-
.. image:: https://github.com/NREL/reV/workflows/Lint%20Code%20Base/badge.svg
|
19
|
+
.. |Linter| image:: https://github.com/NREL/reV/workflows/Lint%20Code%20Base/badge.svg
|
18
20
|
:target: https://github.com/NREL/reV/actions?query=workflow%3A%22Lint+Code+Base%22
|
19
21
|
|
20
|
-
.. image:: https://img.shields.io/pypi/pyversions/NREL-reV.svg
|
22
|
+
.. |PythonV| image:: https://img.shields.io/pypi/pyversions/NREL-reV.svg
|
21
23
|
:target: https://pypi.org/project/NREL-reV/
|
22
24
|
|
23
|
-
.. image:: https://badge.fury.io/py/NREL-reV.svg
|
25
|
+
.. |Pypi| image:: https://badge.fury.io/py/NREL-reV.svg
|
24
26
|
:target: https://badge.fury.io/py/NREL-reV
|
25
27
|
|
26
|
-
.. image:: https://codecov.io/gh/nrel/reV/branch/main/graph/badge.svg?token=U4ZU9F0K0Z
|
28
|
+
.. |Codecov| image:: https://codecov.io/gh/nrel/reV/branch/main/graph/badge.svg?token=U4ZU9F0K0Z
|
27
29
|
:target: https://codecov.io/gh/nrel/reV
|
28
30
|
|
29
|
-
.. image:: https://zenodo.org/badge/201343076.svg
|
31
|
+
.. |Zenodo| image:: https://zenodo.org/badge/201343076.svg
|
30
32
|
:target: https://zenodo.org/badge/latestdoi/201343076
|
31
33
|
|
32
|
-
.. image:: https://mybinder.org/badge_logo.svg
|
34
|
+
.. |Binder| image:: https://mybinder.org/badge_logo.svg
|
33
35
|
:target: https://mybinder.org/v2/gh/nrel/reV/HEAD
|
34
36
|
|
35
37
|
|
|