![]() |
deltaFlow
|
Abstract reader interface for power system input formats. More...
#include <Reader.H>


Public Member Functions | |
| virtual | ~Reader ()=default |
| Virtual destructor. | |
| virtual void | read (const std::string &filename)=0 |
| Read and parse the input file. | |
| const BusData & | getBusData () const noexcept |
| Get the parsed bus data. | |
| const BranchData & | getBranchData () const noexcept |
| Get the parsed branch data. | |
Protected Attributes | |
| BusData | busData |
| Parsed bus data. | |
| BranchData | branchData |
| Parsed branch data. | |
Abstract reader interface for power system input formats.
Subclasses implement the read() method for specific file formats (e.g., IEEE Common Data Format, PSS/E Raw).
|
virtualdefault |
Virtual destructor.
|
noexcept |
Get the parsed branch data.
Definition at line 32 of file Reader.C.
References branchData.
|
noexcept |
|
pure virtual |
Read and parse the input file.
| filename | Path to the input data file. |
Implemented in IEEECommonDataFormat, and PSSERawFormat.
|
protected |