-
Notifications
You must be signed in to change notification settings - Fork 17
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
Better specify PowerFlowData
parametric type aliases
#50
Comments
I'm not fully convinced that these pseudo-subtypes should be based on the types of the matrices they contain; that feels like an implementation detail, even though it's a pretty fundamental one. One can at least in principle imagine a pair of |
For now I'll just strictly specify |
I added the pf solver as a kwargs argument for AC power flow data (see below). What do you think? # Multiperiod power flow
function solve_powerflow!(
data::ACPowerFlowData;
pf::ACPowerFlow{<:ACPowerFlowSolverType} = ACPowerFlow(),
kwargs...,
) |
This:

is
The text was updated successfully, but these errors were encountered: