AutoTransformer documentation and attributes? #40
-
Hello! I just discovered that the official OpenDSS has an AutoTransformer class. The official documentation is very sparse and I could not find any documentation for AutoTransformers in the OpenDSSDirect.py nor the dss-python documentation. Am I missing something? I also searched for GICTransformer documentation as it appears that the official OpenDSS has the AutoTransformer inherit from the GICTransformer class. My goal is to model single phase, two-winding regulators with an autotransformer, but I have sequence impedances and not the XHL, XHT, XLT parameters. I have seen the 2013 note from the official OpenDSS docs "Modeling Regulators as Autotransformers" - but the methods described therein seem much more complicated then defining an AutoTransformer directly... if I can figure out how to define an AutoTransformer. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Looks like the docs on the official site at https://opendss.epri.com/AutoTrans.html were accidentally copied from GICTransformer. It doesn't inherit from it, the code was originally derived from the Transformer model. We have this: https://dss-extensions.org/dss-format/AutoTrans.html
You'll see that the list of parameters is very close to the Transformer model. Besides some names, the main difference is the connection:
There are some known issues with both reports and RegControls coupled to AutoTrans in the official implementation. We made some changes in AltDSS/DSS C-API to work around those (mostly to avoid memory corruption), but there might be some issues still. The model itself should match the official version, so any issues there are reproduced here. From the post you also commented on the OpenDSS forum, this doesn't happen in our implementation:
But about the voltage issue, I wasn't aware:
A couple of people lightly mentioned issues in the past (~2020), but nothing this specific. From a quick inspection, there is already a check for a common voltage, so it's probably either not working or it needs to be checked somewhere else too. I'll watch the post to see it there's any news before we work on that here. |
Beta Was this translation helpful? Give feedback.
-
There is also this SourceForge thread where Roger seems to recommend not using the AutoTrans class for single phase regulators :/ I'll stick with the transformer + regulator pattern for now but the AutoTrans (in a trustworthy format) will be a great addition. |
Beta Was this translation helpful? Give feedback.
Looks like the docs on the official site at https://opendss.epri.com/AutoTrans.html were accidentally copied from GICTransformer. It doesn't inherit from it, the code was originally derived from the Transformer model.
We have this: https://dss-extensions.org/dss-format/AutoTrans.html
The single example listed is the one distributed with the official OpenDSS, here's a direct link to the folder: https://sourceforge.net/p/electricdss/code/HEAD/tree/trunk/Version8/Distrib/Examples/AutoTrans/ (
AutoAuto.dss
, as the other files use normal Trans…