![]() |
Power System Platform
2026w10a-beta
|
#include <complex>#include <vector>#include "../elements/Element.h"#include "../elements/powerElement/Bus.h"#include "../elements/powerElement/Capacitor.h"#include "../elements/powerElement/HarmCurrent.h"#include "../elements/powerElement/IndMotor.h"#include "../elements/powerElement/Inductor.h"#include "../elements/powerElement/Line.h"#include "../elements/powerElement/Load.h"#include "../elements/powerElement/PowerElement.h"#include "../elements/powerElement/SyncGenerator.h"#include "../elements/powerElement/SyncMotor.h"#include "../elements/powerElement/Transformer.h"#include "../elements/powerElement/EMTElement.h"#include "../utils/PropertiesData.h"Go to the source code of this file.
Classes | |
| struct | ReactiveLimits |
| Stores reactive power limits and their status for a bus. More... | |
| struct | ReactiveMachine |
| Auxiliary structure used to distribute reactive power among machines connected to a bus. More... | |
| class | ElectricCalculation |
| Base class for electrical calculations providing general utility methods. More... | |
Enumerations | |
| enum | BusType { BUS_SLACK = 0 , BUS_PV , BUS_PQ } |
| Types of buses used in power flow analysis. More... | |
| enum | ReactiveLimitsType { RL_UNLIMITED = 0 , RL_LIMITED , RL_UNLIMITED_SOURCE , RL_MAX_REACHED , RL_MIN_REACHED , RL_NONE_REACHED } |
| Types of reactive power limit conditions for buses. More... | |
| enum | YBusSequence { POSITIVE_SEQ = 0 , NEGATIVE_SEQ , ZERO_SEQ } |
| Sequence type used when building the system admittance matrix. More... | |
| enum BusType |
Types of buses used in power flow analysis.
Definition at line 44 of file ElectricCalculation.h.
| enum ReactiveLimitsType |
Types of reactive power limit conditions for buses.
Definition at line 54 of file ElectricCalculation.h.
| enum YBusSequence |
Sequence type used when building the system admittance matrix.
| Enumerator | |
|---|---|
| POSITIVE_SEQ | Positive sequence admittance matrix. |
| NEGATIVE_SEQ | Negative sequence admittance matrix. |
| ZERO_SEQ | Zero sequence admittance matrix. |
Definition at line 67 of file ElectricCalculation.h.