Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Fields #17

Open
wants to merge 42 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
7d27905
updating db pipeline
jerrypotts Sep 24, 2024
d01707e
placeholder om data for new builds
jerrypotts Sep 24, 2024
76a58e9
fix typo in demand
jerrypotts Sep 24, 2024
1c60955
field name changes
jerrypotts Sep 24, 2024
1ec8756
change placeholder values
jerrypotts Sep 24, 2024
696f1b5
added zones
jerrypotts Sep 24, 2024
7f24d95
add fields for initial state of charge and discrete investment decisons
jerrypotts Sep 25, 2024
7238d02
remove show
jerrypotts Sep 26, 2024
1d96f96
pipeline addition of some of the operational data
prao7 Sep 26, 2024
f2fc4e4
fixes to type pulled from db
prao7 Sep 26, 2024
8e0bf2f
corrections to syntax
prao7 Sep 26, 2024
418d437
indexing typos
jerrypotts Sep 26, 2024
7ca757b
co2 and heat rate fix
prao7 Sep 26, 2024
74459bd
syntax correction
prao7 Sep 26, 2024
99760fa
bug fix
jerrypotts Sep 26, 2024
f4912de
add three separate structs for TransportTechnology
jerrypotts Oct 16, 2024
71951f4
replace zone type with region
jerrypotts Oct 16, 2024
0f08f38
add default to region
jerrypotts Oct 17, 2024
39c545c
add get_regions
jerrypotts Oct 17, 2024
430feb7
add TransportTechnologies to exports
jerrypotts Oct 19, 2024
acdc4f7
base_power
jerrypotts Oct 19, 2024
62af45b
change gen_id to id
jerrypotts Oct 28, 2024
fb8c47c
update exports
jerrypotts Oct 28, 2024
90844e5
corrected supply curve
prao7 Oct 31, 2024
81120ba
heat rate fixed on the generation units
prao7 Oct 31, 2024
b1befa4
starting to figure out how the time series needs to be added
prao7 Oct 31, 2024
348eed7
time series test
prao7 Oct 31, 2024
fac0113
add decoding to parser
jerrypotts Oct 31, 2024
8d0cf7f
add cluster to storage
jerrypotts Nov 19, 2024
6bdd3e7
add crf and lifetime for supply and storage
jerrypotts Nov 20, 2024
5eb0acd
add base_year
jerrypotts Nov 20, 2024
e8d2d9b
fix base_year
jerrypotts Nov 20, 2024
c80c60e
add inflation rate and fix base year
jerrypotts Nov 20, 2024
ebdf2b7
float to float64
jerrypotts Nov 20, 2024
ef411cf
add interest_rate
jerrypotts Nov 21, 2024
db01f29
remove wacc
jerrypotts Dec 18, 2024
2be61d8
finished parser
prao7 Dec 30, 2024
2c80cc8
Merge branch 'jp/update_fields' into jp/db_pipeline_fix
prao7 Dec 30, 2024
80716f6
Merge pull request #19 from NREL-Sienna:jp/db_pipeline_fix
prao7 Dec 30, 2024
d1d6977
remove duplicate field
jerrypotts Jan 2, 2025
fe3fb41
fixed errors caused by merge
jerrypotts Jan 2, 2025
b57a847
formatter
jerrypotts Jan 2, 2025
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
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ JSONSchema = "7d188eb4-7ad8-530c-ae41-71a32a6d4692"
PowerSystems = "bcd98974-b02a-5e2f-9ee0-a103f5c450dd"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9"
StringEncodings = "69024149-9ee7-55f6-a4c4-859efe599b68"
TimeSeries = "9e3dc215-6440-5c97-bce1-76c03772f85e"

[compat]
Expand Down
13 changes: 10 additions & 3 deletions src/PowerSystemsInvestmentsPortfolios.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,26 +39,33 @@ using DataFrames
using PowerSystems
using Dates
using TimeSeries
using StringEncodings

export Portfolio
export Technology
export Requirements
export SupplyTechnology
export TransportTechnology
export ACTransportTechnology
export HVDCTransportTechnology
export ExistingTransportTechnology
export StorageTechnology
export DemandRequirement
export DemandsideTechnology
export FlexibleDemandTechnology
export Electrolyzers
export CurtailableDemandSideTechnology
export RetireableCapacity
export RetrofitCapacity
export RetirementPotential
export AggregateRetirementPotential
export RetrofitPotential
export AggregateRetrofitPotential
export ExistingCapacity
export CarbonCaps
export MinimumCapacityRequirements
export Region
export Zone

export get_name
export get_regions
export get_technologies
export get_technology
export get_requirements
Expand Down
Loading
Loading