Open aivanova5 opened 1 year ago
This works correctly, gridlabd convert -i MODEL_NAME.csv -o MODEL_NAME.glm -f csv-table -t glm-object -O module:powerflow
gridlabd convert -i MODEL_NAME.csv -o MODEL_NAME.glm -f csv-table -t glm-object -O module:powerflow
However -M or --module or -O pick up
{'-O': True, 'module:powerflow': True} gets passed to convert()
{'-O': True, 'module:powerflow': True}
convert()
In addition, the implementation with : is inconsistent with other converters.
:
Archive.zip
This issue is more complicated that it seems at first. The convert subcommand and the automatic converter options use different syntax. These need to be consistent.
convert
Problem description
This works correctly,
gridlabd convert -i MODEL_NAME.csv -o MODEL_NAME.glm -f csv-table -t glm-object -O module:powerflow
However -M or --module or -O pick up
{'-O': True, 'module:powerflow': True}
gets passed toconvert()
In addition, the implementation with
:
is inconsistent with other converters.Archive.zip