Open joshdr83 opened 1 year ago
Thanks @joshdr83 . Will take a look at it ASAP.
I'm not sure who wrote this code and comment, but I think this was about being suspect of the values in the files.
Hi GenX dev team.
Have you had a chance to look into this issue?
Best, Anton
In the
src/write_outputs/write_outputs.jl
file, the line (121)if setup["MultiStage"] == 0
stops the model from writing some multi-stage outputs, such as time weights from being written. The comment above it says:# Temporary! Suppress these outputs until we know that they are compatible with multi-stage modeling
However, if I change that line tosetup["MultiStage"] >= 0
it seems to work (writes the results in the folders) with my multi-stage model. Is the comment about being able to write the files or should I be suspect of the values in those files?