amplpower
- class amplpower.PowerSystem(case_file: str, max_voltage_angle: float = 1.5707963267948966, min_voltage_angle: float = -1.5707963267948966)[source]
PowerSystem class for solving optimal power flow problems.
- __init__(case_file: str, max_voltage_angle: float = 1.5707963267948966, min_voltage_angle: float = -1.5707963267948966)[source]
Initialize the power system with a MATPOWER case file.
- initialize(voltages=None, angles=None)[source]
Initialize the voltage magnitudes, angles, flows, and generation levels.
- solve_opf(opf_type='dc', switching='off', connectivity='off', solver='gurobi', options='outlev=1 timelimit=3600')[source]
Solve the optimal power flow problem using AMPL. Parameters: opf_type (str): Type of optimal power flow (‘dc’, ‘acrect’, ‘acjabr’) switching (str): Switching strategy (‘off’, ‘nl’, ‘bigm’) connectivity (str): Connectivity for topology solutions (‘off’, ‘on’) solver (str): Solver to use (‘gurobi’, ‘cplex’, ‘cbc’) options (str): Options for the solver Returns: dict: Results of the optimal power flow problem