plotCircuitLinesOptions

GUI for providing options for how to plot the feeder circuit diagram

Contents

Syntax

plotCircuitLinesOptions(DSSCircObj);

Description

plotCircuitLines plots the feeder circuit diagram and has many different input argument parameters for changing coloring, line thickness, background, etc. This function provides a GUI for selecting the plotting styles for plotCircuitLines instead of through text arguments. This function can be called directly with the OpenDSS circuit object, or plotCircuitLines.m will call this function if no input arguments were selected.

Inputs

Outputs

Example

Examples of calling the GUI for plotCircuitLinesOptions

[DSSCircObj, DSSText, gridpvPath] = DSSStartup;
DSSText.command = ['Compile "' gridpvPath 'ExampleCircuit\master_Ckt24.dss"'];
DSSText.command = 'solve';
figure; plotCircuitLinesOptions(DSSCircObj)
%