CIM++ Adapted CIM Codebase
UnitMultiplier.h
1 // UnitMultiplier.h
3 // Implementation of the Class UnitMultiplier
5 
6 #ifndef UNITMULTIPLIER_H
7 #define UNITMULTIPLIER_H
8 
9 namespace IEC61970
10 {
11  namespace Base
12  {
13  namespace Domain
14  {
21  enum class UnitMultiplier
22  {
26  y = -24,
30  z = -21,
34  a = -18,
38  f = -15,
42  p = -12,
46  n = -9,
50  micro = -6,
54  m = -3,
58  c = -2,
62  d = -1,
66  none = 0,
70  da = 1,
74  h = 2,
78  k = 3,
82  M = 6,
86  G = 9,
90  T = 12,
94  P = 15,
98  E = 18,
102  Z = 21,
106  Y = 24
107  };
108 
109  }
110 
111  }
112 
113 }
114 #endif // UNITMULTIPLIER_H
Definition: AuxiliaryEquipment.h:13