CIM++ Adapted CIM Codebase
PrimeMover.h
1 // PrimeMover.h
3 // Implementation of the Class PrimeMover
5 
6 #ifndef PRIMEMOVER_H
7 #define PRIMEMOVER_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/Float.h"
12 #include "IEC61970/Base/Wires/SynchronousMachine.h"
13 #include "IEC61970/Base/Core/PowerSystemResource.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace Generation
20  {
21  namespace GenerationTrainingSimulation
22  {
27  {
28 
29  public:
30  PrimeMover();
31  virtual ~PrimeMover();
39  std::list<IEC61970::Base::Wires::SynchronousMachine*> SynchronousMachines;
40 
41  };
42 
43  }
44 
45  }
46 
47  }
48 
49 }
50 #endif // PRIMEMOVER_H
Definition: AuxiliaryEquipment.h:13
std::list< IEC61970::Base::Wires::SynchronousMachine * > SynchronousMachines
Definition: PrimeMover.h:39
Definition: PowerSystemResource.h:28
Definition: Float.h:17
IEC61970::Base::Domain::Float primeMoverRating
Definition: PrimeMover.h:35