webber-energy-group / HOwDI

https://howdi.readthedocs.io/en/develop/
GNU General Public License v3.0
0 stars 0 forks source link

Rework conversion.csv #31

Open bradenpecora opened 2 years ago

bradenpecora commented 2 years ago

The current implementation of conversion.csv is not great as it requires an in depth understanding of how the model works to interact with. A user understanding this file must know the name of the nodes that the converter will be in between. Furthermore, if there are two converters in a row, the user must know that the converter that the upstream converter must be listed before the downstream in the file. (At the very least, an error should be raised; however, it should be easy enough to re-sort so this issue doesn't happen too).

I'm not 100% certain on how I'd like to implement this, but here is my initial thought.

This allows advanced users to still change things around with the model construction, but without obfuscating the most important inputs. Users have the ability to evaluate multiple versions of the same type of converter.

I anticipate that there may be some issues in implantation. I don't know if the model construction can currently handle two parallel converters. The solver can; I just don't know if the current code is robust enough for this yet.