Restore ORDC after updating to PSY5#26
Conversation
abdelrahman-ayad
commented
Dec 16, 2025
- Restore ORDC with timeseries
- Update to PSY5 and corresponding packages (PowerSimulations, HydroPowerSimulations, SiennaPRASInterface)
|
Hey @abdelrahman-ayad , can you retarget the PR to pg/grid-solutions? |
| system_availability_data_rt = DataFrames.DataFrame(CSV.File(joinpath(simulation_dir, "timeseries_data_files", scenario, "sim_year_$(sim_year)", "Availability", "REAL_TIME_availability.csv"))) | ||
| gennames = names(system_availability_data)[5:length(names(system_availability_data))] ################# | ||
|
|
||
| # Remove generators that return nothing |
There was a problem hiding this comment.
I think the gennames returning nothing is because the availability data frame did not have all the new renewable generators. This is fine for thermals and batteries since it just sets them to 1 but we need that data for renewables. So I would say don't filter them since we would need the availability of all the renewable generators. I updated the availability timeseries data to include the new gens. You can copy the timeseries data from /projects/gmlcmarkets/Phase2_EMIS_Analysis/Feb2024_ERCOT_2011_MARKET_Test_PGHOSH/RTS-GMLC_GS/RTS_Data/timeseries_data_files and try running it.
There was a problem hiding this comment.
Oh Okay that makes more sense, thanks Purboday!