Skip to content

Commit

Permalink
Update cst_ssc.jl
Browse files Browse the repository at this point in the history
switched back to unsafe_load
  • Loading branch information
jgifford914 authored Dec 2, 2024
1 parent be0b8aa commit f7dccad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/cst_ssc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ function run_ssc(case_data::Dict)
thermal_production = []
# elec_consumption = []
for i in 1:8760
# push!(thermal_production,unsafe_load(thermal_production_response,i)) # For array type outputs
push!(thermal_production,1.0) #for pass through
push!(thermal_production,unsafe_load(thermal_production_response,i)) # For array type outputs
# push!(thermal_production,1.0) #for pass through
# push!(elec_consumption,unsafe_load(electrical_consumption_response,i)) # For array type outputs
end
# if typeof(outputs[3]) == String
Expand Down

0 comments on commit f7dccad

Please sign in to comment.