From 8a7c533c21bb770e837628104db10941a40e8f8a Mon Sep 17 00:00:00 2001 From: Jeffrey Gifford <41640124+jgifford914@users.noreply.github.com> Date: Mon, 2 Dec 2024 15:24:16 -0700 Subject: [PATCH] Update cst_ssc.jl uncommented line 176 --- src/core/cst_ssc.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/cst_ssc.jl b/src/core/cst_ssc.jl index 8fcf359c4..acb50a184 100644 --- a/src/core/cst_ssc.jl +++ b/src/core/cst_ssc.jl @@ -173,7 +173,7 @@ function run_ssc(case_data::Dict) libfile = "ssc_new.dll" end global hdl = joinpath(@__DIR__, "sam", libfile) - ###chmod(hdl, filemode(hdl) | 0o755) ### added just because I saw this in the wind module + chmod(hdl, filemode(hdl) | 0o755) ### added just because I saw this in the wind module ssc_module = @ccall hdl.ssc_module_create(model_ssc[model]::Cstring)::Ptr{Cvoid} data = @ccall hdl.ssc_data_create()::Ptr{Cvoid} # data pointer @ccall hdl.ssc_module_exec_set_print(1::Cint)::Cvoid # change to 1 to print outputs/errors (for debugging)