CIM++ Adapted CIM_SINERGIEN Codebase
TurbineType.h
1 // TurbineType.h
3 // Implementation of the Class TurbineType
5 
6 #ifndef TURBINETYPE_H
7 #define TURBINETYPE_H
8 
9 namespace IEC61970
10 {
11  namespace Base
12  {
13  namespace Generation
14  {
15  namespace GenerationTrainingSimulation
16  {
20  enum class TurbineType
21  {
25  francis,
29  pelton,
33  kaplan
34  };
35 
36  }
37 
38  }
39 
40  }
41 
42 }
43 #endif // TURBINETYPE_H
Definition: AuxiliaryEquipment.h:13