Skip to content

Commit 972a363

Browse files
committed
Merge branch 'main' into 6parsolve
2 parents db68ab7 + 894b81b commit 972a363

34 files changed

+169
-796
lines changed

.github/workflows/test_pkg.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,17 @@ jobs:
1818

1919
name: ${{ matrix.os }} ${{ matrix.python-version }}
2020
steps:
21-
- uses: actions/checkout@v3
22-
- name: Setup conda
23-
uses: s-weigand/setup-conda@v1
24-
with:
25-
update-conda: true
26-
python-version: ${{ matrix.python-version }}
27-
conda-channels: anaconda, conda-forge
28-
- run: conda --version
29-
- run: which python
30-
3121
- name: Checkout Repo
3222
uses: actions/checkout@v3
3323

3424
- name: Get PySAM Version Unix
35-
if: ${{ matrix.os != 'windows-latest' }}
25+
if: ${{ matrix.os != 'windows-2019' }}
3626
run: |
3727
VER=$(python -c "from files.version import __version__; print(__version__)")
3828
echo "VERSION=$VER" >> $GITHUB_ENV
3929
4030
- name: Get PySAM Version Windows
41-
if: ${{ matrix.os == 'windows-latest'}}
31+
if: ${{ matrix.os == 'windows-2019'}}
4232
run: |
4333
$VER=$(python -c "from files.version import __version__; print(__version__)")
4434
echo "VERSION=$VER" >> $env:GITHUB_ENV

Examples/100kW_PVWatts.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,9 @@
188188
"metric_3_label" : "Levelized COE (nominal)",
189189
"metric_4" : "lcoe_real",
190190
"metric_4_label" : "Levelized COE (real)",
191-
"metric_5" : "elec_cost_without_system_year1",
191+
"metric_5" : "utility_bill_wo_sys",
192192
"metric_5_label" : "Electricity bill without system (year 1)",
193-
"metric_6" : "elec_cost_with_system_year1",
193+
"metric_6" : "utility_bill_w_sys",
194194
"metric_6_label" : "Electricity bill with system (year 1)",
195195
"metric_7" : "savings_year1",
196196
"metric_7_label" : "Net savings with system (year 1)",

Examples/SelectingModuleandInverterExample/Row2Prism.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,9 +484,9 @@
484484
"metric_4_label" : "Levelized COE (nominal)",
485485
"metric_5" : "lcoe_real",
486486
"metric_5_label" : "Levelized COE (real)",
487-
"metric_6" : "elec_cost_without_system_year1",
487+
"metric_6" : "utility_bill_wo_sys_year1",
488488
"metric_6_label" : "Electricity bill without system (year 1)",
489-
"metric_7" : "elec_cost_with_system_year1",
489+
"metric_7" : "utility_bill_w_sys_year1",
490490
"metric_7_label" : "Electricity bill with system (year 1)",
491491
"metric_8" : "savings_year1",
492492
"metric_8_label" : "Net savings with system (year 1)",

docs/modules/Cashloan.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,6 @@ Lifetime Group
105105
.. autoclass:: PySAM.Cashloan.Cashloan.Lifetime
106106
:members:
107107

108-
ThirdPartyOwnership Group
109-
--------------------------
110-
111-
.. autoclass:: PySAM.Cashloan.Cashloan.ThirdPartyOwnership
112-
:members:
113-
114108
LCOS Group
115109
-----------
116110

docs/modules/CashloanHeat.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,6 @@ Lifetime Group
113113
.. autoclass:: PySAM.CashloanHeat.CashloanHeat.Lifetime
114114
:members:
115115

116-
ThirdPartyOwnership Group
117-
--------------------------
118-
119-
.. autoclass:: PySAM.CashloanHeat.CashloanHeat.ThirdPartyOwnership
120-
:members:
121-
122116
LCOS Group
123117
-----------
124118

docs/modules/HostDeveloper.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ The variables listed below are interdependent with other variables. If you chang
1919

2020
- construction_financing_cost
2121

22-
- land_area
23-
2422
- om_batt_nameplate
2523

2624
- total_installed_cost

docs/modules/Thirdpartyownership.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,6 @@ CashFlow Group
5757
.. autoclass:: PySAM.Thirdpartyownership.Thirdpartyownership.CashFlow
5858
:members:
5959

60-
ElectricityCost Group
61-
----------------------
62-
63-
.. autoclass:: PySAM.Thirdpartyownership.Thirdpartyownership.ElectricityCost
64-
:members:
65-
6660
Outputs Group
6761
--------------
6862

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
NREL-PySAM==6.0.0
1+
NREL-PySAM==6.0.1
22
pandas
33
sphinx_rtd_theme

files/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '6.0.0'
1+
__version__ = '6.0.1'

modules/Battery.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5211,7 +5211,7 @@ static PyGetSetDef HybridCosts_getset[] = {
52115211
PyDoc_STR("*sequence*: Annual AC degradation [%]\n\n**Required:**\nFalse. Automatically set to 0.0 if not assigned explicitly or loaded from defaults."),
52125212
NULL},
52135213
{"land_area", (getter)HybridCosts_get_land_area,(setter)HybridCosts_set_land_area,
5214-
PyDoc_STR("*float*: Total land area [acres]\n\n**Required:**\nFalse. Automatically set to 0 if not assigned explicitly or loaded from defaults.\n\nThe value of ``land_area`` depends on the following variables:\n\n\t - batt_Qfull\n\t - batt_Vnom_default\n\t - batt_ac_dc_efficiency\n\t - batt_ac_or_dc\n\t - batt_chem\n\t - batt_current_choice\n\t - batt_dc_ac_efficiency\n\t - batt_dc_dc_efficiency\n\t - batt_power_discharge_max_kwac\n"),
5214+
PyDoc_STR("*float*: Total land area [acres]\n\n**Required:**\nFalse. Automatically set to 0 if not assigned explicitly or loaded from defaults."),
52155215
NULL},
52165216
{"om_batt_capacity_cost", (getter)HybridCosts_get_om_batt_capacity_cost,(setter)HybridCosts_set_om_batt_capacity_cost,
52175217
PyDoc_STR("*sequence*: Battery capacity-based System Costs amount [$/kWcap]\n\n**Info:**\nbattery\n\n**Required:**\nFalse. Automatically set to 0.0 if not assigned explicitly or loaded from defaults."),

0 commit comments

Comments
 (0)