We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the function create_dss_object, for creating loads, the following occurs three times:
load.kva = abs(load.kw) + load.kvar^2
I believe the equation be:
load.kva = sqrt(load.kw^2 + load.kvar^2)
In the same function, line 27, the following appears:
elseif :pf ∈ raw_fields && load.pf != 0.88
This seems like a rather strange test for power factor. Is it intended to be this way?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the function create_dss_object, for creating loads, the following occurs three times:
I believe the equation be:
In the same function, line 27, the following appears:
This seems like a rather strange test for power factor. Is it intended to be this way?
The text was updated successfully, but these errors were encountered: