Fault current mismatch #42
-
Hello, I am running a simple fault study for a small LV network. The purpose of my study is to compare it with another model for validation using OpenDSS. When I use the COM interface on Windows I get a set of results but using OpenDSSDirect I get differnt results. Does anybody have an idea why? This is what I am running: dss(['clear', dss.Circuit.SetActiveElement(f"Fault.F1") |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I gave it a try and got nearly the same results on all platforms. With DSS-Extensions, latest versions:
With OpenDSS "Version 9.8.0.1 (64-bit build)" via COM:
Depends what you mean by different. Can you confirm you are seeing the same results as above? If not, it's probably worth checking which versions of the packages you're using. I have some more comments but I'll post them after we confirm the basics are OK on your side. |
Beta Was this translation helpful? Give feedback.
-
Add Without that, the currents also match with the default settings (60Hz). Comparing the GUI results using Using 50Hz:
I understand you're comparing to something else, but remember that the basic data is not realistic, e.g. lines with diagonal matrices with no capacitance. Besides that, just a more general comment: try to avoid using tiny impedances too much since the system can get ill conditioned. That would also result in numeric differences between the current OpenDSS GUI and the other alternatives (including the official COM DLL). |
Beta Was this translation helpful? Give feedback.
Add
set defaultbasefreq=50
before creating the circuit. I think that's the main issue.Without that, the currents also match with the default settings (60Hz). Comparing the GUI results using
visualize currents fault.f1
:Using 50Hz:
I understand you're comparing to something else, but remember that the basic data is not realistic, e.g. lines with diagonal matrices with no capacitance.
Besides that, just a more general comment: try to avoid using tiny impedances too much since the system can get ill conditioned. That would also result in numeric differences between the current OpenDSS GUI and the o…