The Adjustment Factor variables in the SAM GUI have the prefix `adjust_` whereas the PySAM versions do not, as shown for Pvwattsv8 here: https://nrel-pysam.readthedocs.io/en/main/modules/Pvwattsv8.html#adjustmentfactors-group This discrepancy will lead to issues reading inputs that were exported from the SAM GUI. The workaround now is to modify the variable name: ``` for k, v in pv_inputs.items(): if 'adjust_' in k: k = k.replace('adjust_', '') ```
The Adjustment Factor variables in the SAM GUI have the prefix
adjust_whereas the PySAM versions do not, as shown for Pvwattsv8 here: https://nrel-pysam.readthedocs.io/en/main/modules/Pvwattsv8.html#adjustmentfactors-groupThis discrepancy will lead to issues reading inputs that were exported from the SAM GUI.
The workaround now is to modify the variable name: