Skip to main content
Version: Next
Only available for some customers

This feature is only available to certain customers and is currently in early release. If you encounter any problems or have questions, please contact Zepben support.

Feeder Load Analysis (Segment Level Loading)

Feeder Load Analysis, also known as Segment Level Loading, is a tool for finding key parameters for a given list of feeders and/or substations.

For each feeder segment, the tool reports:

  • Maximum demand
  • Maximum export
  • Minimum usage/export (smallest absolute value that is not zero)

How to run

This guide assumes you have the basic set up configured. For more information on how to set up the basic configuration, see the How to Run a Work Package guide.

  1. Clone the repo ewb-sdk-examples-python.

  2. As per the readme, install the required dependencies by running pip install -e .. If you encounter any issues, please contact Zepben support.

  3. Open the file request_feeder_load_analysis_study.py in your IDE of choice and modify the parameters to match your needs (see below).

  4. Run the file.

Here is an example of a feeder load analysis input:

FeederLoadAnalysisInput(
feeders=["feeder1", "feeder2"],
substations=None,
subGeographicalRegions=None,
geographicalRegions=None,
startDate="2022-04-01",
endDate="2022-12-31",
fetchLvNetwork=True,
processFeederLoads=True,
processCoincidentLoads=True,
aggregateAtFeederLevel=False,
output="TestResults1"
)

Configuration Parameters

FieldTypeDescription
feedersList[str]Optional (must have at least 1 of these 4 parameters) - The mRIDs of feeders to solve for feeder load analysis
substationsList[str]Optional (must have at least 1 of these 4 parameters) - The mRIDs of substations to solve for feeder load analysis
subGeographicalRegionsList[str]Optional (must have at least 1 of these 4 parameters) - The mRIDs of sub-Geographical Region to solve for feeder load analysis
geographicalRegionsList[str]Optional (must have at least 1 of these 4 parameters) - The mRIDs of Geographical Region to solve for feeder load analysis
startDatestrStart date for this analysis
endDatestrEnd date for this analysis
fetchLvNetworkboolWhether to include the LV network in the analysis
processFeederLoadsboolWhether to include values corresponding to feeder event time points in the report
processCoincidentLoadsboolWhether to include values corresponding to conductor event time points in the report
aggregateAtFeederLevelboolRequest for a report which aggregate all downstream load at the feeder level
outputstrThe file name of the resulting study

For a full description of the output of the feeder load analysis, please refer to the documentation section on Feeder Load Analysis Outputs.