-
Notifications
You must be signed in to change notification settings - Fork 30
Description
Wflow version checks
-
I have checked that this issue has not already been reported.
-
I have checked that this bug exists on the latest version of Wflow.
Reproducible Example
Wflow.run(
"~/Wflow/sbm_gwf_config.toml";
silent = false,
)
Current behaviour
Wflow starts to read the configuration, but never finishes.
Desired behaviour
Wfow reads all the configuration and starts the model run.
Additional Context
I used the example files for the 1.0.0 release (https://github.com/visr/wflow-artifacts/releases/) and an TOML file as described in the documentation. However, the Wflow.run(.../sbm_gwf_config.toml) started, but never comes to an end. Turns out, the program halted in the function Model(config::Config, type::SbmGwfModel) when clock = Clock(config, reader) is called, maybe because there is no file to read (no error occurs). Changing this to clock = Clock(config) to take the data alone from the toml file, wflow crashes later on (UndefVarError: NetworkLand not defined in Main.Wflow - it is defined in a function call, may be its not called before).
Have someone an idea how to fix it or how to run the model successfull?