Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Examples/BatteryStateful.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Examples/BatteryStateful_CustomLifeModel.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"7.0.0\n"
"7.1.0\n"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion Examples/BatteryWithCustomDispatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Additional financial models, inputs, and outputs can be found at https://nrel-pysam.readthedocs.io/en/master/modules/Battery.html

Most recently tested against PySAM 7.0.0
Most recently tested against PySAM 7.1.0

@author: brtietz
"""
Expand Down
2 changes: 1 addition & 1 deletion Examples/FetchResourceFileExample.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
To use the `FetchResourceFile` function, register an email address to receive a
free API key at at https://developer.nrel.gov/signup/.

Most recently tested against PySAM 7.0.0
Most recently tested against PySAM 7.1.0

@authors: skoeb, cpaulgilman
'''
Expand Down
5 changes: 3 additions & 2 deletions Examples/GenericSystemSingleOwnerExample.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@
"""
Created on Wed Mar 4 13:47:58 2020

Most recently tested against PySAM 7.0.0
Most recently tested against PySAM 7.1.0

@author: frohro
"""
import json
from pathlib import Path
import PySAM.CustomGeneration as CustomGeneration
import PySAM.Grid as Grid
import PySAM.Singleowner as Singleowner
import PySAM.PySSC as pssc

ssc = pssc.PySSC()
with open("Examples/100mW_Generic.json") as f:
with open(Path(__file__).parent / "100mW_Generic.json") as f:
dic = json.load(f)
gs_dat = pssc.dict_to_ssc_table(dic, "custom_generation")
grid_dat = pssc.dict_to_ssc_table(dic, "grid")
Expand Down
2 changes: 1 addition & 1 deletion Examples/LoadToolsExample.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""
A usage example for LoadTools.get_monthly peaks with hourly annual data
Requires PySAM 4.2.0 or greater
Recently tested with 7.0.0
Recently tested with 7.1.0
"""
if __name__ == "__main__":
df = pd.read_csv(str(Path(__file__).parent / "sample_load.csv"), dtype=float)
Expand Down
6 changes: 3 additions & 3 deletions Examples/Marine_energy_examples/WaveFileReader_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"6.0.0\n"
"7.1.0\n"
]
}
],
Expand Down Expand Up @@ -141,7 +141,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "pysam_build_3.10",
"display_name": "pysam_build_3.12",
"language": "python",
"name": "python3"
},
Expand All @@ -155,7 +155,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.13"
"version": "3.12.0"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion Examples/NonAnnualSimulation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"metadata": {},
"outputs": [],
"source": [
"# Most recently tested against PySAM 7.0.0\n",
"# Most recently tested against PySAM 7.1.0\n",
"\n",
"import pandas as pd\n",
"import json\n",
Expand Down
Loading
Loading