Transmission System Configuration¶
This file contains functions that help configure the transmission system
-
supportFunctions.transmissionSystemConfiguration.
create_transmission_system
(populationDict, transmissionDict, haveMATLAB=False)¶ This function creates the MATPOWER simulator according the user specified settings
- Inputs
populationDict - dictionary containing properties for all the feeders we are using
transmissionDict - - dictionary containing properties for the transmission system we are using
haveMATLAB - setting to tell the script if you have MATLAB installed
- Outputs
- populationDict - modified dictionary containing properties for all the feeders we are using
-
supportFunctions.transmissionSystemConfiguration.
pythonLoadCase
(casePath)¶ This funciton is used to load a MATPOWER case file without using MATLAB
- Inputs
- casePath - path for the MATPOWER case file
- Outputs
- matpowerCaseStruct - MATPOWER case struct
-
supportFunctions.transmissionSystemConfiguration.
pythonLoadMat
(loadProfilePath)¶ This funciton is used to load .mat files in python without using MATLAB
- Inputs
- loadProfilePath - path for the load profile file
- Outputs
- loadprofiles
-
supportFunctions.transmissionSystemConfiguration.
pythonSaveCase
(casePath, matpowerCaseStruct)¶ This funciton is used to save a MATPOWER case file without using MATLAB
- Inputs
casePath - path where you want to save the modified MATPOWER case file
matpowerCaseStruct - MATPOWER case struct
- Outputs
- None