Hey!
I have some parameters that should initialize as 1 and then optionally be updated with a script. The weird thing is when I use Initial Data and define it as 1, they are empty! Only one of the nine parameters populates properly as 1, the rest are blank. This has caused me to assign them all with := in the script at the beginning, but this is quite ugly and impractical.
Is there something about Initial Data I'm not understanding? Let me know if you need more info!
Here's an example of one that doesn't load, where i is a node index that works throughout the model:
Parameter MultiplierPVCap {
IndexDomain: i;
InitialData: 1;
}
And the one that does load:
Parameter MultiplierH2storage {
IndexDomain: yr;
InitialData: 1;
}