NREL-reV 0.8.6__tar.gz → 0.8.9__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.
Files changed (90) hide show
  1. {NREL-reV-0.8.6 → NREL-reV-0.8.9/NREL_reV.egg-info}/PKG-INFO +11 -9
  2. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/NREL_reV.egg-info/requires.txt +1 -1
  3. {NREL-reV-0.8.6/NREL_reV.egg-info → NREL-reV-0.8.9}/PKG-INFO +11 -9
  4. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/README.rst +10 -8
  5. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/SAM/SAM.py +182 -133
  6. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/SAM/econ.py +18 -14
  7. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/SAM/generation.py +640 -414
  8. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/SAM/windbos.py +93 -79
  9. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/bespoke/bespoke.py +690 -445
  10. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/bespoke/place_turbines.py +6 -6
  11. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/project_points.py +220 -140
  12. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/econ/econ.py +165 -113
  13. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/econ/economies_of_scale.py +57 -34
  14. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/generation/base.py +310 -183
  15. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/generation/generation.py +309 -191
  16. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/handlers/exclusions.py +16 -15
  17. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/handlers/multi_year.py +12 -9
  18. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/handlers/outputs.py +6 -5
  19. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/hybrids/hybrid_methods.py +28 -30
  20. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/hybrids/hybrids.py +304 -188
  21. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/nrwal/nrwal.py +262 -168
  22. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/qa_qc/cli_qa_qc.py +14 -10
  23. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/qa_qc/qa_qc.py +217 -119
  24. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/qa_qc/summary.py +228 -146
  25. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/rep_profiles/rep_profiles.py +349 -230
  26. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/aggregation.py +349 -188
  27. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/competitive_wind_farms.py +90 -48
  28. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/exclusions.py +138 -85
  29. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/extent.py +75 -50
  30. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/points.py +620 -295
  31. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/sc_aggregation.py +396 -226
  32. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/supply_curve.py +505 -308
  33. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/tech_mapping.py +144 -82
  34. NREL-reV-0.8.9/reV/utilities/__init__.py +251 -0
  35. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/utilities/pytest_utils.py +8 -4
  36. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/version.py +1 -1
  37. NREL-reV-0.8.6/reV/utilities/__init__.py +0 -68
  38. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/LICENSE +0 -0
  39. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/NREL_reV.egg-info/SOURCES.txt +0 -0
  40. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/NREL_reV.egg-info/dependency_links.txt +0 -0
  41. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/NREL_reV.egg-info/entry_points.txt +0 -0
  42. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/NREL_reV.egg-info/not-zip-safe +0 -0
  43. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/NREL_reV.egg-info/top_level.txt +0 -0
  44. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/SAM/__init__.py +0 -0
  45. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/SAM/defaults.py +0 -0
  46. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/SAM/version_checker.py +0 -0
  47. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/__init__.py +0 -0
  48. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/bespoke/__init__.py +0 -0
  49. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/bespoke/cli_bespoke.py +0 -0
  50. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/bespoke/gradient_free.py +0 -0
  51. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/bespoke/pack_turbs.py +0 -0
  52. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/bespoke/plotting_functions.py +0 -0
  53. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/cli.py +0 -0
  54. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/__init__.py +0 -0
  55. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/base_analysis_config.py +0 -0
  56. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/base_config.py +0 -0
  57. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/cli_project_points.py +0 -0
  58. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/curtailment.py +0 -0
  59. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/execution.py +0 -0
  60. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/output_request.py +0 -0
  61. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/config/sam_config.py +0 -0
  62. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/econ/__init__.py +0 -0
  63. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/econ/cli_econ.py +0 -0
  64. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/econ/utilities.py +0 -0
  65. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/generation/__init__.py +0 -0
  66. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/generation/cli_gen.py +0 -0
  67. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/handlers/__init__.py +0 -0
  68. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/handlers/cli_collect.py +0 -0
  69. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/handlers/cli_multi_year.py +0 -0
  70. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/handlers/transmission.py +0 -0
  71. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/hybrids/__init__.py +0 -0
  72. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/hybrids/cli_hybrids.py +0 -0
  73. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/losses/__init__.py +0 -0
  74. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/losses/power_curve.py +0 -0
  75. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/losses/scheduled.py +0 -0
  76. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/losses/utils.py +0 -0
  77. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/nrwal/__init__.py +0 -0
  78. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/nrwal/cli_nrwal.py +0 -0
  79. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/qa_qc/__init__.py +0 -0
  80. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/rep_profiles/__init__.py +0 -0
  81. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/rep_profiles/cli_rep_profiles.py +0 -0
  82. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/__init__.py +0 -0
  83. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/cli_sc_aggregation.py +0 -0
  84. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/supply_curve/cli_supply_curve.py +0 -0
  85. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/utilities/cli_functions.py +0 -0
  86. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/utilities/curtailment.py +0 -0
  87. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/utilities/exceptions.py +0 -0
  88. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/reV/utilities/slots.py +0 -0
  89. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/setup.cfg +0 -0
  90. {NREL-reV-0.8.6 → NREL-reV-0.8.9}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: NREL-reV
3
- Version: 0.8.6
3
+ Version: 0.8.9
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
- .. image:: https://github.com/NREL/reV/workflows/Documentation/badge.svg
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,4 +1,4 @@
1
- NREL-gaps>=0.6.9
1
+ NREL-gaps>=0.6.11
2
2
  NREL-NRWAL>=0.0.7
3
3
  NREL-PySAM~=4.1.0
4
4
  NREL-rex>=0.2.85
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: NREL-reV
3
- Version: 0.8.6
3
+ Version: 0.8.9
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
- .. image:: https://github.com/NREL/reV/workflows/Documentation/badge.svg
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
- .. image:: https://github.com/NREL/reV/workflows/Documentation/badge.svg
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
  |