snl.ccss.jpowersystem
Interface Branch

All Known Implementing Classes:
AbstractACPFBranch, AbstractBranch, AbstractDCPFBranch, AbstractPFBranch

public interface Branch

This interface represents the base class for a Branch object that is to be part of a power system. It contains the methods required by a PowerSystem object when adding a new branch to the power system.

Author:
Bryan T. Richardson, Sandia National Laboratories

Method Summary
 void addTo(Bus from, Bus to)
          This method should at a minimum set Bus variables to the given bus objects.
 void remove()
          This method should at a minimum set Bus variables that represent the endpoints of this branch to null.
 

Method Detail

addTo

void addTo(Bus from,
           Bus to)
This method should at a minimum set Bus variables to the given bus objects.

Parameters:
from - Bus object to attach one end of branch to
to - Bus object to attach other end of branch to

remove

void remove()
This method should at a minimum set Bus variables that represent the endpoints of this branch to null.