-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
Newton-Raphson method for state estimation #369
Comments
Update 2024/02/08: Since #438 , Newton-Raphson for state estimation is now in beta as an experimental feature. Because we do not officially support it yet, nor guarantee its correctness, it is not yet possible to call this feature via the regular API's Instead, to use the experimental feature, call the protected method
E.g. someone who would usually call from power_grid_model import PowerGridModel
from power_grid_model.enum import CalculationMethod
# create input data
model = PowerGridModel(input_data)
model.calculate_state_estimation(calculation_method=CalculationMethod.iterative_linear) may run the Newton-Raphson state estimation by running from power_grid_model import PowerGridModel
from power_grid_model.enum import CalculationMethod, _ExperimentalFeatures
# create input data
model = PowerGridModel(input_data)
model.calculate_state_estimation(calculation_method=CalculationMethod.newton_raphson, experimental_features=_ExperimentalFeatures.enabled) |
Newton-Raphson method should solve the issue in #237
The text was updated successfully, but these errors were encountered: