CIM++ Adapted CIM Codebase
RotorKind.h
1 // RotorKind.h
3 // Implementation of the Class RotorKind
4 // Original author: ppbr003
6 
7 #ifndef ROTORKIND_H
8 #define ROTORKIND_H
9 
10 namespace IEC61970
11 {
12  namespace Dynamics
13  {
14  namespace StandardModels
15  {
16  namespace SynchronousMachineDynamics
17  {
21  enum class RotorKind
22  {
26  roundRotor,
30  salientPole
31  };
32 
33  }
34 
35  }
36 
37  }
38 
39 }
40 #endif // ROTORKIND_H
Definition: AuxiliaryEquipment.h:13