CIM++ Adapted CIM_SINERGIEN Codebase
ShuntCompensatorPhase.h
1 // ShuntCompensatorPhase.h
3 // Implementation of the Class ShuntCompensatorPhase
4 // Original author: T. Kostic
6 
7 #ifndef SHUNTCOMPENSATORPHASE_H
8 #define SHUNTCOMPENSATORPHASE_H
9 
10 #include "IEC61970/Base/Domain/Integer.h"
11 #include "IEC61970/Base/Wires/SinglePhaseKind.h"
12 #include "IEC61970/Base/Core/PowerSystemResource.h"
13 
14 namespace IEC61970
15 {
16  namespace Base
17  {
18  namespace Wires
19  {
25  {
26 
27  public:
29  virtual ~ShuntCompensatorPhase();
33  IEC61970::Base::Domain::Integer maximumSections;
37  IEC61970::Base::Domain::Integer normalSections;
45  IEC61970::Base::Wires::SinglePhaseKind phase;
46 
47  };
48 
49  }
50 
51  }
52 
53 }
54 #endif // SHUNTCOMPENSATORPHASE_H
Definition: AuxiliaryEquipment.h:13
IEC61970::Base::Wires::SinglePhaseKind phase
Definition: ShuntCompensatorPhase.h:45
IEC61970::Base::Domain::Integer normalSections
Definition: ShuntCompensatorPhase.h:37
Definition: PowerSystemResource.h:28
IEC61970::Base::Domain::Integer maximumSections
Definition: ShuntCompensatorPhase.h:33
Definition: ShuntCompensatorPhase.h:24