-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.properties
6270 lines (6263 loc) · 283 KB
/
plugin.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# *************************************************************************
# ** Copyright (c) 2016-2021 CentraleSupélec & EDF.
# ** All rights reserved. This program and the accompanying materials
# ** are made available under the terms of the Eclipse Public License v2.0
# ** which accompanies this distribution, and is available at
# ** https://www.eclipse.org/legal/epl-v20.html
# **
# ** This file is part of the RiseClipse tool
# **
# ** Contributors:
# ** Computer Science Department, CentraleSupélec
# ** EDF R&D
# ** Contacts:
# ** [email protected]
# ** [email protected]
# ** Web site:
# ** https://riseclipse.github.io
# *************************************************************************
pluginName = RiseClipse Entsoe CGMES v2.4.15 Edit Support
providerName = CentraleSupélec & EDF
_UI_CreateChild_text = {0}
_UI_CreateChild_text2 = {1} {0}
_UI_CreateChild_text3 = {1}
_UI_CreateChild_tooltip = Create New {0} Under {1} Feature
_UI_CreateChild_description = Create a new child of type {0} for the {1} feature of the selected {2}.
_UI_CreateSibling_description = Create a new sibling of type {0} for the selected {2}, under the {1} feature of their parent.
_UI_PropertyDescriptor_description = The {0} of the {1}
_UI_CimObjectWithID_type = Object With ID
_UI_DecimalQuantity_type = Decimal Quantity
_UI_RemoteConnectDisconnectInfo_type = Remote Connect Disconnect Info
_UI_TimeInterval_type = Time Interval
_UI_DateInterval_type = Date Interval
_UI_StringQuantity_type = String Quantity
_UI_ElectronicAddress_type = Electronic Address
_UI_LifecycleDate_type = Lifecycle Date
_UI_EndDeviceCapability_type = End Device Capability
_UI_IntegerQuantity_type = Integer Quantity
_UI_ServicePointOutageSummary_type = Service Point Outage Summary
_UI_MonthDayInterval_type = Month Day Interval
_UI_ReadingInterharmonic_type = Reading Interharmonic
_UI_AccountingUnit_type = Accounting Unit
_UI_BankAccountDetail_type = Bank Account Detail
_UI_DateTimeInterval_type = Date Time Interval
_UI_LineDetail_type = Line Detail
_UI_AccountMovement_type = Account Movement
_UI_TelephoneNumber_type = Telephone Number
_UI_Status_type = Status
_UI_AcceptanceTest_type = Acceptance Test
_UI_FaultImpedance_type = Fault Impedance
_UI_TownDetail_type = Town Detail
_UI_Due_type = Due
_UI_Priority_type = Priority
_UI_ControlledAppliance_type = Controlled Appliance
_UI_FloatQuantity_type = Float Quantity
_UI_RationalNumber_type = Rational Number
_UI_StreetDetail_type = Street Detail
_UI_EndDeviceTiming_type = End Device Timing
_UI_PostalAddress_type = Postal Address
_UI_StreetAddress_type = Street Address
_UI_WindGenTurbineType3IEC_type = Wind Gen Turbine Type3 IEC
_UI_DCBreaker_type = DC Breaker
_UI_AltGeneratingUnitMeas_type = Alt Generating Unit Meas
_UI_Contingency_type = Contingency
_UI_AltTieMeas_type = Alt Tie Meas
_UI_MeterServiceWork_type = Meter Service Work
_UI_PssSB4_type = Pss SB4
_UI_DCDisconnector_type = DC Disconnector
_UI_WindAeroLinearIEC_type = Wind Aero Linear IEC
_UI_GovHydroPelton_type = Gov Hydro Pelton
_UI_Asset_type = Asset
_UI_NameType_type = Name Type
_UI_CombinedCyclePlant_type = Combined Cycle Plant
_UI_PointOfSale_type = Point Of Sale
_UI_IncidentHazard_type = Incident Hazard
_UI_GovSteamCC_type = Gov Steam CC
_UI_ACDCConverterDCTerminal_type = ACDC Converter DC Terminal
_UI_ExcELIN1_type = Exc ELIN1
_UI_CAESPlant_type = CAES Plant
_UI_ExcIEEEST3A_type = Exc IEEEST3A
_UI_WindDynamicsLookupTable_type = Wind Dynamics Lookup Table
_UI_SynchronousMachine_type = Synchronous Machine
_UI_AsynchronousMachineDynamics_type = Asynchronous Machine Dynamics
_UI_ComFunction_type = Com Function
_UI_Junction_type = Junction
_UI_Subcritical_type = Subcritical
_UI_DCBaseTerminal_type = DC Base Terminal
_UI_Measurement_type = Measurement
_UI_ExcHU_type = Exc HU
_UI_SolarGeneratingUnit_type = Solar Generating Unit
_UI_CTTempActivePowerCurve_type = CT Temp Active Power Curve
_UI_TransformerCoreAdmittance_type = Transformer Core Admittance
_UI_ExcAC8B_type = Exc AC8B
_UI_VoltageCompensatorUserDefined_type = Voltage Compensator User Defined
_UI_ControlAreaGeneratingUnit_type = Control Area Generating Unit
_UI_PanDemandResponse_type = Pan Demand Response
_UI_TariffProfile_type = Tariff Profile
_UI_NonlinearShuntCompensatorPhase_type = Nonlinear Shunt Compensator Phase
_UI_SvShuntCompensatorSections_type = Sv Shunt Compensator Sections
_UI_PerLengthImpedance_type = Per Length Impedance
_UI_PetersenCoil_type = Petersen Coil
_UI_Fuse_type = Fuse
_UI_ServiceSupplier_type = Service Supplier
_UI_AuxiliaryAccount_type = Auxiliary Account
_UI_IncrementalHeatRateCurve_type = Incremental Heat Rate Curve
_UI_WindTurbineType3or4IEC_type = Wind Turbine Type3or4 IEC
_UI_OrganisationRole_type = Organisation Role
_UI_EnergyArea_type = Energy Area
_UI_PFVArType1IEEEPFController_type = PFV Ar Type1 IEEEPF Controller
_UI_AnalogLimitSet_type = Analog Limit Set
_UI_ProtectedSwitch_type = Protected Switch
_UI_Receipt_type = Receipt
_UI_TapSchedule_type = Tap Schedule
_UI_ShuntCompensatorPhase_type = Shunt Compensator Phase
_UI_ExcST3A_type = Exc ST3A
_UI_ACLineSegmentPhase_type = AC Line Segment Phase
_UI_EndDevice_type = End Device
_UI_PSRType_type = PSR Type
_UI_ExcST4B_type = Exc ST4B
_UI_GovHydro3_type = Gov Hydro3
_UI_EquivalentNetwork_type = Equivalent Network
_UI_AssetFunction_type = Asset Function
_UI_Vehicle_type = Vehicle
_UI_CableInfo_type = Cable Info
_UI_BusNameMarker_type = Bus Name Marker
_UI_EnergyConsumer_type = Energy Consumer
_UI_CustomerAgreement_type = Customer Agreement
_UI_SwitchingPlan_type = Switching Plan
_UI_GeographicalRegion_type = Geographical Region
_UI_ExcIEEEST1A_type = Exc IEEEST1A
_UI_PotentialTransformer_type = Potential Transformer
_UI_ExcELIN2_type = Exc ELIN2
_UI_ExcIEEEDC4B_type = Exc IEEEDC4B
_UI_LineFault_type = Line Fault
_UI_TimePoint_type = Time Point
_UI_OverheadWireInfo_type = Overhead Wire Info
_UI_AuxiliaryAgreement_type = Auxiliary Agreement
_UI_MetrologyRequirement_type = Metrology Requirement
_UI_WindContQIEC_type = Wind Cont QIEC
_UI_SwitchInfo_type = Switch Info
_UI_Sensor_type = Sensor
_UI_SynchrocheckRelay_type = Synchrocheck Relay
_UI_ComMedia_type = Com Media
_UI_DiscontinuousExcitationControlUserDefined_type = Discontinuous Excitation Control User Defined
_UI_Name_type = Name
_UI_DiagramStyle_type = Diagram Style
_UI_DCTopologicalIsland_type = DC Topological Island
_UI_WindTurbineType1or2Dynamics_type = Wind Turbine Type1or2 Dynamics
_UI_WindContRotorRIEC_type = Wind Cont Rotor RIEC
_UI_FaultCauseType_type = Fault Cause Type
_UI_LoadMotor_type = Load Motor
_UI_HydroPumpOpSchedule_type = Hydro Pump Op Schedule
_UI_DCShunt_type = DC Shunt
_UI_WindGenTurbineType1IEC_type = Wind Gen Turbine Type1 IEC
_UI_EndDeviceInfo_type = End Device Info
_UI_DCEquipmentContainer_type = DC Equipment Container
_UI_EnergySourceAction_type = Energy Source Action
_UI_ExcAVR5_type = Exc AVR5
_UI_TapChangerInfo_type = Tap Changer Info
_UI_ReadingQualityType_type = Reading Quality Type
_UI_PostLineSensor_type = Post Line Sensor
_UI_ServiceCategory_type = Service Category
_UI_SynchronousMachineTimeConstantReactance_type = Synchronous Machine Time Constant Reactance
_UI_PFVArType2IEEEPFController_type = PFV Ar Type2 IEEEPF Controller
_UI_MechLoad1_type = Mech Load1
_UI_PowerSystemStabilizerDynamics_type = Power System Stabilizer Dynamics
_UI_AsynchronousMachineEquivalentCircuit_type = Asynchronous Machine Equivalent Circuit
_UI_AccumulatorLimitSet_type = Accumulator Limit Set
_UI_UnderexcLimIEEE2_type = Underexc Lim IEEE2
_UI_ActivityRecord_type = Activity Record
_UI_Quality61850_type = Quality61850
_UI_ExcDC2A_type = Exc DC2A
_UI_EndDeviceControl_type = End Device Control
_UI_NonConformLoadGroup_type = Non Conform Load Group
_UI_SeasonDayTypeSchedule_type = Season Day Type Schedule
_UI_CogenerationPlant_type = Cogeneration Plant
_UI_PssSH_type = Pss SH
_UI_EnergySource_type = Energy Source
_UI_ControlArea_type = Control Area
_UI_IntervalBlock_type = Interval Block
_UI_NonlinearShuntCompensatorPoint_type = Nonlinear Shunt Compensator Point
_UI_EquivalentShunt_type = Equivalent Shunt
_UI_EquivalentEquipment_type = Equivalent Equipment
_UI_TapeShieldCableInfo_type = Tape Shield Cable Info
_UI_GovGAST_type = Gov GAST
_UI_WindProtectionIEC_type = Wind Protection IEC
_UI_ExcAVR2_type = Exc AVR2
_UI_TransformerMeshImpedance_type = Transformer Mesh Impedance
_UI_TransformerTest_type = Transformer Test
_UI_PhaseTapChangerSymmetrical_type = Phase Tap Changer Symmetrical
_UI_HydroGeneratingUnit_type = Hydro Generating Unit
_UI_VoltageCompensatorDynamics_type = Voltage Compensator Dynamics
_UI_Jumper_type = Jumper
_UI_ExcAVR3_type = Exc AVR3
_UI_TransformerTank_type = Transformer Tank
_UI_Transaction_type = Transaction
_UI_SvPowerFlow_type = Sv Power Flow
_UI_AnalogValue_type = Analog Value
_UI_MeterMultiplier_type = Meter Multiplier
_UI_Diagram_type = Diagram
_UI_Bay_type = Bay
_UI_ExcAC6A_type = Exc AC6A
_UI_AirCompressor_type = Air Compressor
_UI_UnderexcLimIEEE1_type = Underexc Lim IEEE1
_UI_VoltageAdjusterDynamics_type = Voltage Adjuster Dynamics
_UI_HydroPump_type = Hydro Pump
_UI_EnergyConsumerPhase_type = Energy Consumer Phase
_UI_ConformLoad_type = Conform Load
_UI_CombustionTurbine_type = Combustion Turbine
_UI_StartupModel_type = Startup Model
_UI_ExternalNetworkInjection_type = External Network Injection
_UI_DiagramObjectGluePoint_type = Diagram Object Glue Point
_UI_TransformerTankEnd_type = Transformer Tank End
_UI_PFVArType1IEEEVArController_type = PFV Ar Type1 IEEEV Ar Controller
_UI_BusbarSectionInfo_type = Busbar Section Info
_UI_BaseVoltage_type = Base Voltage
_UI_PhaseTapChangerNonLinear_type = Phase Tap Changer Non Linear
_UI_LoadAggregate_type = Load Aggregate
_UI_OperationalRestriction_type = Operational Restriction
_UI_Pss2B_type = Pss2 B
_UI_Control_type = Control
_UI_TopologicalIsland_type = Topological Island
_UI_TransformerTankInfo_type = Transformer Tank Info
_UI_PenstockLossCurve_type = Penstock Loss Curve
_UI_WindContPType4bIEC_type = Wind Cont PType4b IEC
_UI_MerchantAgreement_type = Merchant Agreement
_UI_Register_type = Register
_UI_ConfigurationEvent_type = Configuration Event
_UI_VoltageControlZone_type = Voltage Control Zone
_UI_RaiseLowerCommand_type = Raise Lower Command
_UI_BasicIntervalSchedule_type = Basic Interval Schedule
_UI_GovCT2_type = Gov CT2
_UI_ExcitationSystemDynamics_type = Excitation System Dynamics
_UI_ExcIEEEST2A_type = Exc IEEEST2A
_UI_WireInfo_type = Wire Info
_UI_SetPoint_type = Set Point
_UI_PowerTransformerEnd_type = Power Transformer End
_UI_GovGAST4_type = Gov GAST4
_UI_TextDiagramObject_type = Text Diagram Object
_UI_ConductingEquipment_type = Conducting Equipment
_UI_PssELIN2_type = Pss ELIN2
_UI_HydroTurbine_type = Hydro Turbine
_UI_ExcitationSystemUserDefined_type = Excitation System User Defined
_UI_CustomerAccount_type = Customer Account
_UI_WorkTimeSchedule_type = Work Time Schedule
_UI_DCChopper_type = DC Chopper
_UI_ConnectivityNodeContainer_type = Connectivity Node Container
_UI_ExcAC4A_type = Exc AC4A
_UI_BranchGroupTerminal_type = Branch Group Terminal
_UI_RatioTapChangerTable_type = Ratio Tap Changer Table
_UI_MaintenanceLocation_type = Maintenance Location
_UI_FrequencyConverter_type = Frequency Converter
_UI_Conductor_type = Conductor
_UI_ShuntCompensatorInfo_type = Shunt Compensator Info
_UI_SubGeographicalRegion_type = Sub Geographical Region
_UI_PersonRole_type = Person Role
_UI_Terminal_type = Terminal
_UI_StationSupply_type = Station Supply
_UI_LoadUserDefined_type = Load User Defined
_UI_HydroPowerPlant_type = Hydro Power Plant
_UI_Line_type = Line
_UI_Command_type = Command
_UI_SynchronousMachineDynamics_type = Synchronous Machine Dynamics
_UI_WorkTask_type = Work Task
_UI_AccumulatorLimit_type = Accumulator Limit
_UI_ACLineSegment_type = AC Line Segment
_UI_WindContPType4aIEC_type = Wind Cont PType4a IEC
_UI_EquipmentContainer_type = Equipment Container
_UI_RemoteSource_type = Remote Source
_UI_EndDeviceEventDetail_type = End Device Event Detail
_UI_HydroGeneratingEfficiencyCurve_type = Hydro Generating Efficiency Curve
_UI_WorkAsset_type = Work Asset
_UI_PssIEEE2B_type = Pss IEEE2B
_UI_CsConverter_type = Cs Converter
_UI_OpenCircuitTest_type = Open Circuit Test
_UI_GovSteamFV4_type = Gov Steam FV4
_UI_TimeTariffInterval_type = Time Tariff Interval
_UI_SynchronousMachineSimplified_type = Synchronous Machine Simplified
_UI_MechanicalLoadDynamics_type = Mechanical Load Dynamics
_UI_GroundingImpedance_type = Grounding Impedance
_UI_WindContPType3IEC_type = Wind Cont PType3 IEC
_UI_Ground_type = Ground
_UI_PssPTIST1_type = Pss PTIST1
_UI_ACDCConverter_type = ACDC Converter
_UI_PhaseImpedanceData_type = Phase Impedance Data
_UI_ConcentricNeutralCableInfo_type = Concentric Neutral Cable Info
_UI_PerLengthDCLineParameter_type = Per Length DC Line Parameter
_UI_CutAction_type = Cut Action
_UI_SteamSupply_type = Steam Supply
_UI_PanDisplay_type = Pan Display
_UI_ScheduledEventData_type = Scheduled Event Data
_UI_Tariff_type = Tariff
_UI_WindTurbineType3or4Dynamics_type = Wind Turbine Type3or4 Dynamics
_UI_ReadingQuality_type = Reading Quality
_UI_WindPlantUserDefined_type = Wind Plant User Defined
_UI_GovGASTWD_type = Gov GASTWD
_UI_PhaseTapChanger_type = Phase Tap Changer
_UI_WindGenTurbineType3bIEC_type = Wind Gen Turbine Type3b IEC
_UI_UnderexcitationLimiterUserDefined_type = Underexcitation Limiter User Defined
_UI_NonConformLoad_type = Non Conform Load
_UI_DCConductingEquipment_type = DC Conducting Equipment
_UI_PerLengthLineParameter_type = Per Length Line Parameter
_UI_UsagePoint_type = Usage Point
_UI_GovSteamEU_type = Gov Steam EU
_UI_Person_type = Person
_UI_WireSpacingInfo_type = Wire Spacing Info
_UI_Text_type = Text
_UI_SvTapStep_type = Sv Tap Step
_UI_ExcIEEEAC1A_type = Exc IEEEAC1A
_UI_BWRSteamSupply_type = BWR Steam Supply
_UI_SimpleEndDeviceFunction_type = Simple End Device Function
_UI_EndDeviceFunction_type = End Device Function
_UI_GovSteamSGO_type = Gov Steam SGO
_UI_GovHydro1_type = Gov Hydro1
_UI_MeasurementValueQuality_type = Measurement Value Quality
_UI_WindType3or4UserDefined_type = Wind Type3or4 User Defined
_UI_ExcREXS_type = Exc REXS
_UI_ComModule_type = Com Module
_UI_ProductAssetModel_type = Product Asset Model
_UI_WindTurbineType4aIEC_type = Wind Turbine Type4a IEC
_UI_BranchGroup_type = Branch Group
_UI_WindType1or2UserDefined_type = Wind Type1or2 User Defined
_UI_GovSteam1_type = Gov Steam1
_UI_LoadResponseCharacteristic_type = Load Response Characteristic
_UI_EmissionCurve_type = Emission Curve
_UI_PowerCutZone_type = Power Cut Zone
_UI_AssetInfo_type = Asset Info
_UI_ScheduledEvent_type = Scheduled Event
_UI_PrimeMover_type = Prime Mover
_UI_GenUnitOpCostCurve_type = Gen Unit Op Cost Curve
_UI_EndDeviceEvent_type = End Device Event
_UI_AssetOwner_type = Asset Owner
_UI_OutageSchedule_type = Outage Schedule
_UI_Pss2ST_type = Pss2 ST
_UI_ExcANS_type = Exc ANS
_UI_DemandResponseProgram_type = Demand Response Program
_UI_SwitchPhase_type = Switch Phase
_UI_SvVoltage_type = Sv Voltage
_UI_WaveTrap_type = Wave Trap
_UI_StaticVarCompensator_type = Static Var Compensator
_UI_DCSwitch_type = DC Switch
_UI_IrregularIntervalSchedule_type = Irregular Interval Schedule
_UI_UsagePointGroup_type = Usage Point Group
_UI_LevelVsVolumeCurve_type = Level Vs Volume Curve
_UI_OperationPersonRole_type = Operation Person Role
_UI_BaseFrequency_type = Base Frequency
_UI_Pss5_type = Pss5
_UI_GovHydroR_type = Gov Hydro R
_UI_AsynchronousMachine_type = Asynchronous Machine
_UI_Reading_type = Reading
_UI_Sectionaliser_type = Sectionaliser
_UI_GovHydroPID2_type = Gov Hydro PID2
_UI_OverexcLim2_type = Overexc Lim2
_UI_DCTopologicalNode_type = DC Topological Node
_UI_OverexcitationLimiterUserDefined_type = Overexcitation Limiter User Defined
_UI_DiscreteCommand_type = Discrete Command
_UI_StringMeasurementValue_type = String Measurement Value
_UI_Accumulator_type = Accumulator
_UI_NoLoadTest_type = No Load Test
_UI_BasePower_type = Base Power
_UI_LinearShuntCompensator_type = Linear Shunt Compensator
_UI_RatioTapChangerTablePoint_type = Ratio Tap Changer Table Point
_UI_CompositeSwitch_type = Composite Switch
_UI_ServiceLocation_type = Service Location
_UI_PFVArType2IEEEVArController_type = PFV Ar Type2 IEEEV Ar Controller
_UI_PhaseTapChangerAsymmetrical_type = Phase Tap Changer Asymmetrical
_UI_PowerSystemStabilizerUserDefined_type = Power System Stabilizer User Defined
_UI_ExcAC2A_type = Exc AC2A
_UI_Equipment_type = Equipment
_UI_SwitchingStepGroup_type = Switching Step Group
_UI_GovSteamIEEE1_type = Gov Steam IEEE1
_UI_WindPlantFreqPcontrolIEC_type = Wind Plant Freq Pcontrol IEC
_UI_RegularTimePoint_type = Regular Time Point
_UI_PowerTransformer_type = Power Transformer
_UI_TapChangerTablePoint_type = Tap Changer Table Point
_UI_DCNode_type = DC Node
_UI_OverexcitationLimiterDynamics_type = Overexcitation Limiter Dynamics
_UI_RemoteInputSignal_type = Remote Input Signal
_UI_TurbineGovernorDynamics_type = Turbine Governor Dynamics
_UI_Hazard_type = Hazard
_UI_CurrentRelay_type = Current Relay
_UI_GeneratingUnit_type = Generating Unit
_UI_OperationalLimit_type = Operational Limit
_UI_WindTurbineType1or2IEC_type = Wind Turbine Type1or2 IEC
_UI_WirePosition_type = Wire Position
_UI_FossilFuel_type = Fossil Fuel
_UI_AssetLocationHazard_type = Asset Location Hazard
_UI_MeasurementValue_type = Measurement Value
_UI_Reservoir_type = Reservoir
_UI_DynamicsFunctionBlock_type = Dynamics Function Block
_UI_Plant_type = Plant
_UI_ConnectDisconnectFunction_type = Connect Disconnect Function
_UI_PFVArControllerType2Dynamics_type = PFV Ar Controller Type2 Dynamics
_UI_PssSK_type = Pss SK
_UI_RemotePoint_type = Remote Point
_UI_PhaseTapChangerTable_type = Phase Tap Changer Table
_UI_ClearanceAction_type = Clearance Action
_UI_IntervalReading_type = Interval Reading
_UI_RegulatingCondEq_type = Regulating Cond Eq
_UI_SwitchAction_type = Switch Action
_UI_DiscExcContIEEEDEC1A_type = Disc Exc Cont IEEEDEC1A
_UI_AssetUser_type = Asset User
_UI_DayType_type = Day Type
_UI_GrossToNetActivePowerCurve_type = Gross To Net Active Power Curve
_UI_ExcAVR1_type = Exc AVR1
_UI_IdentifiedObject_type = Identified Object
_UI_SwitchingStep_type = Switching Step
_UI_LoadComposite_type = Load Composite
_UI_PssIEEE4B_type = Pss IEEE4B
_UI_Supercritical_type = Supercritical
_UI_ExcSEXS_type = Exc SEXS
_UI_IEC61970CIMVersion_type = IEC61970CIM Version
_UI_ConnectivityNode_type = Connectivity Node
_UI_GovCT1_type = Gov CT1
_UI_EndDeviceControlType_type = End Device Control Type
_UI_StartRampCurve_type = Start Ramp Curve
_UI_UserAttribute_type = User Attribute
_UI_RemoteUnit_type = Remote Unit
_UI_EquivalentInjection_type = Equivalent Injection
_UI_ThermalGeneratingUnit_type = Thermal Generating Unit
_UI_Cheque_type = Cheque
_UI_DCLine_type = DC Line
_UI_MaterialItem_type = Material Item
_UI_AsynchronousMachineTimeConstantReactance_type = Asynchronous Machine Time Constant Reactance
_UI_BusbarSection_type = Busbar Section
_UI_UnderexcLimX2_type = Underexc Lim X2
_UI_OperationalLimitSet_type = Operational Limit Set
_UI_ExcIEEEST6B_type = Exc IEEEST6B
_UI_ShuntCompensator_type = Shunt Compensator
_UI_Crew_type = Crew
_UI_VendorShift_type = Vendor Shift
_UI_WindContCurrLimIEC_type = Wind Cont Curr Lim IEC
_UI_InflowForecast_type = Inflow Forecast
_UI_TailbayLossCurve_type = Tailbay Loss Curve
_UI_Agreement_type = Agreement
_UI_ExcIEEEAC6A_type = Exc IEEEAC6A
_UI_LoadArea_type = Load Area
_UI_WindGenType4IEC_type = Wind Gen Type4 IEC
_UI_Operator_type = Operator
_UI_SafetyDocument_type = Safety Document
_UI_ExcDC1A_type = Exc DC1A
_UI_TurbineGovernorUserDefined_type = Turbine Governor User Defined
_UI_GovGAST2_type = Gov GAST2
_UI_PhaseTapChangerTabular_type = Phase Tap Changer Tabular
_UI_UnderexcLimX1_type = Underexc Lim X1
_UI_ExcST1A_type = Exc ST1A
_UI_TieFlow_type = Tie Flow
_UI_RemoteControl_type = Remote Control
_UI_SurgeArrester_type = Surge Arrester
_UI_ReadingType_type = Reading Type
_UI_EndDeviceGroup_type = End Device Group
_UI_FuelAllocationSchedule_type = Fuel Allocation Schedule
_UI_DCConverterUnit_type = DC Converter Unit
_UI_ExcIEEEAC4A_type = Exc IEEEAC4A
_UI_ExcAC5A_type = Exc AC5A
_UI_LinearShuntCompensatorPhase_type = Linear Shunt Compensator Phase
_UI_SeriesCompensator_type = Series Compensator
_UI_DCLineSegment_type = DC Line Segment
_UI_WindGenTurbineType3aIEC_type = Wind Gen Turbine Type3a IEC
_UI_UnderexcitationLimiterDynamics_type = Underexcitation Limiter Dynamics
_UI_NuclearGeneratingUnit_type = Nuclear Generating Unit
_UI_ValueToAlias_type = Value To Alias
_UI_CustomerNotification_type = Customer Notification
_UI_ContingencyEquipment_type = Contingency Equipment
_UI_RegulationSchedule_type = Regulation Schedule
_UI_AssetOrganisationRole_type = Asset Organisation Role
_UI_SvStatus_type = Sv Status
_UI_PositionPoint_type = Position Point
_UI_ExcSK_type = Exc SK
_UI_DiscExcContIEEEDEC3A_type = Disc Exc Cont IEEEDEC3A
_UI_Work_type = Work
_UI_WindContPitchAngleIEC_type = Wind Cont Pitch Angle IEC
_UI_OverexcLimIEEE_type = Overexc Lim IEEE
_UI_Disconnector_type = Disconnector
_UI_VCompIEEEType2_type = VComp IEEE Type2
_UI_ExcIEEEAC8B_type = Exc IEEEAC8B
_UI_GovHydroFrancis_type = Gov Hydro Francis
_UI_ExcBBC_type = Exc BBC
_UI_PssWECC_type = Pss WECC
_UI_RatioTapChanger_type = Ratio Tap Changer
_UI_WorkLocation_type = Work Location
_UI_RotatingMachineDynamics_type = Rotating Machine Dynamics
_UI_NonlinearShuntCompensatorPhasePoint_type = Nonlinear Shunt Compensator Phase Point
_UI_PFVArControllerType1Dynamics_type = PFV Ar Controller Type1 Dynamics
_UI_TransformerStarImpedance_type = Transformer Star Impedance
_UI_PWRSteamSupply_type = PWR Steam Supply
_UI_DiagramObjectPoint_type = Diagram Object Point
_UI_Meter_type = Meter
_UI_Tool_type = Tool
_UI_AccumulatorReset_type = Accumulator Reset
_UI_RegularIntervalSchedule_type = Regular Interval Schedule
_UI_Pss1A_type = Pss1 A
_UI_WindPitchContEmulIEC_type = Wind Pitch Cont Emul IEC
_UI_PhaseTapChangerLinear_type = Phase Tap Changer Linear
_UI_SynchronousMachineDetailed_type = Synchronous Machine Detailed
_UI_Shift_type = Shift
_UI_RecloseSequence_type = Reclose Sequence
_UI_NameTypeAuthority_type = Name Type Authority
_UI_StringMeasurement_type = String Measurement
_UI_VisibilityLayer_type = Visibility Layer
_UI_GroundAction_type = Ground Action
_UI_ConformLoadGroup_type = Conform Load Group
_UI_ServiceMultiplier_type = Service Multiplier
_UI_TurbLCFB1_type = Turb LCFB1
_UI_MechanicalLoadUserDefined_type = Mechanical Load User Defined
_UI_HeatInputCurve_type = Heat Input Curve
_UI_Season_type = Season
_UI_TurbineLoadControllerUserDefined_type = Turbine Load Controller User Defined
_UI_WindTurbineType4bIEC_type = Wind Turbine Type4b IEC
_UI_GovHydroWEH_type = Gov Hydro WEH
_UI_Transactor_type = Transactor
_UI_Incident_type = Incident
_UI_WindPlantIEC_type = Wind Plant IEC
_UI_PssIEEE1A_type = Pss IEEE1A
_UI_HeatRateCurve_type = Heat Rate Curve
_UI_AsynchronousMachineUserDefined_type = Asynchronous Machine User Defined
_UI_TapChangerControl_type = Tap Changer Control
_UI_ValueAliasSet_type = Value Alias Set
_UI_SynchronousMachineUserDefined_type = Synchronous Machine User Defined
_UI_GovSteam2_type = Gov Steam2
_UI_ClearanceDocument_type = Clearance Document
_UI_GovSteamFV3_type = Gov Steam FV3
_UI_Ownership_type = Ownership
_UI_Document_type = Document
_UI_DrumBoiler_type = Drum Boiler
_UI_PerLengthPhaseImpedance_type = Per Length Phase Impedance
_UI_LoadBreakSwitch_type = Load Break Switch
_UI_PFVArControllerType2UserDefined_type = PFV Ar Controller Type2 User Defined
_UI_ProprietaryParameterDynamics_type = Proprietary Parameter Dynamics
_UI_RegulatingControl_type = Regulating Control
_UI_PanPricing_type = Pan Pricing
_UI_ExcIEEEST7B_type = Exc IEEEST7B
_UI_VAdjIEEE_type = VAdj IEEE
_UI_EndDeviceEventType_type = End Device Event Type
_UI_ExcST2A_type = Exc ST2A
_UI_VoltageLimit_type = Voltage Limit
_UI_DiagramObjectStyle_type = Diagram Object Style
_UI_EmissionAccount_type = Emission Account
_UI_WindMechIEC_type = Wind Mech IEC
_UI_VCompIEEEType1_type = VComp IEEE Type1
_UI_Clamp_type = Clamp
_UI_StartIgnFuelCurve_type = Start Ign Fuel Curve
_UI_MeasurementValueSource_type = Measurement Value Source
_UI_ExcIEEEAC7B_type = Exc IEEEAC7B
_UI_Tender_type = Tender
_UI_JumperAction_type = Jumper Action
_UI_Analog_type = Analog
_UI_EquipmentFault_type = Equipment Fault
_UI_PanPricingDetail_type = Pan Pricing Detail
_UI_Location_type = Location
_UI_SubLoadArea_type = Sub Load Area
_UI_WindAeroConstIEC_type = Wind Aero Const IEC
_UI_ExcAC3A_type = Exc AC3A
_UI_OperationalLimitType_type = Operational Limit Type
_UI_ExcSCRX_type = Exc SCRX
_UI_WindGenTurbineType2IEC_type = Wind Gen Turbine Type2 IEC
_UI_WindPlantDynamics_type = Wind Plant Dynamics
_UI_CoordinateSystem_type = Coordinate System
_UI_OperatingShare_type = Operating Share
_UI_GovHydroIEEE2_type = Gov Hydro IEEE2
_UI_SteamTurbine_type = Steam Turbine
_UI_ExcCZ_type = Exc CZ
_UI_Connector_type = Connector
_UI_VoltageAdjusterUserDefined_type = Voltage Adjuster User Defined
_UI_IEC61968CIMVersion_type = IEC61968CIM Version
_UI_DiscreteValue_type = Discrete Value
_UI_UsagePointLocation_type = Usage Point Location
_UI_Substation_type = Substation
_UI_NonConformLoadSchedule_type = Non Conform Load Schedule
_UI_GovGAST1_type = Gov GAST1
_UI_ConformLoadSchedule_type = Conform Load Schedule
_UI_OperatingParticipant_type = Operating Participant
_UI_SteamSendoutSchedule_type = Steam Sendout Schedule
_UI_ApparentPowerLimit_type = Apparent Power Limit
_UI_GenICompensationForGenJ_type = Gen ICompensation For Gen J
_UI_LoadStatic_type = Load Static
_UI_WindGeneratingUnit_type = Wind Generating Unit
_UI_GenericAction_type = Generic Action
_UI_ExcDC3A_type = Exc DC3A
_UI_ExcAVR7_type = Exc AVR7
_UI_GenUnitOpSchedule_type = Gen Unit Op Schedule
_UI_TroubleTicket_type = Trouble Ticket
_UI_LoadDynamics_type = Load Dynamics
_UI_GovSteamFV2_type = Gov Steam FV2
_UI_PowerTransformerInfo_type = Power Transformer Info
_UI_TurbineLoadControllerDynamics_type = Turbine Load Controller Dynamics
_UI_ExcAVR4_type = Exc AVR4
_UI_Customer_type = Customer
_UI_GovHydroWPID_type = Gov Hydro WPID
_UI_EndDeviceAction_type = End Device Action
_UI_VsCapabilityCurve_type = Vs Capability Curve
_UI_PricingStructure_type = Pricing Structure
_UI_StartMainFuelCurve_type = Start Main Fuel Curve
_UI_LoadGroup_type = Load Group
_UI_BaseReading_type = Base Reading
_UI_Curve_type = Curve
_UI_GovSteam0_type = Gov Steam0
_UI_ContingencyElement_type = Contingency Element
_UI_Card_type = Card
_UI_TransformerEnd_type = Transformer End
_UI_ExcIEEEAC3A_type = Exc IEEEAC3A
_UI_DCSeriesDevice_type = DC Series Device
_UI_Charge_type = Charge
_UI_UnderexcLim2Simplified_type = Underexc Lim2 Simplified
_UI_ExcIEEEDC2A_type = Exc IEEEDC2A
_UI_AccumulatorValue_type = Accumulator Value
_UI_SvInjection_type = Sv Injection
_UI_ReportingSuperGroup_type = Reporting Super Group
_UI_GovHydro4_type = Gov Hydro4
_UI_Procedure_type = Procedure
_UI_ProcedureDataSet_type = Procedure Data Set
_UI_GovHydro2_type = Gov Hydro2
_UI_PowerSystemResource_type = Power System Resource
_UI_PssPTIST3_type = Pss PTIST3
_UI_AssetContainer_type = Asset Container
_UI_SynchronousMachineEquivalentCircuit_type = Synchronous Machine Equivalent Circuit
_UI_ExcDC3A1_type = Exc DC3A1
_UI_Fault_type = Fault
_UI_PerLengthSequenceImpedance_type = Per Length Sequence Impedance
_UI_Organisation_type = Organisation
_UI_PFVArControllerType1UserDefined_type = PFV Ar Controller Type1 User Defined
_UI_ExcIEEEDC3A_type = Exc IEEEDC3A
_UI_Discrete_type = Discrete
_UI_CommunicationLink_type = Communication Link
_UI_PhaseTapChangerTablePoint_type = Phase Tap Changer Table Point
_UI_ProtectionEquipment_type = Protection Equipment
_UI_PssIEEE3B_type = Pss IEEE3B
_UI_StateVariable_type = State Variable
_UI_Cashier_type = Cashier
_UI_MeterReading_type = Meter Reading
_UI_Breaker_type = Breaker
_UI_AnalogLimit_type = Analog Limit
_UI_OverexcLimX1_type = Overexc Lim X1
_UI_ACDCTerminal_type = ACDC Terminal
_UI_AnalogControl_type = Analog Control
_UI_TargetLevelSchedule_type = Target Level Schedule
_UI_VsConverter_type = Vs Converter
_UI_DCBusbar_type = DC Busbar
_UI_GovGAST3_type = Gov GAST3
_UI_Manufacturer_type = Manufacturer
_UI_EquivalentBranch_type = Equivalent Branch
_UI_ShutdownCurve_type = Shutdown Curve
_UI_BaseWork_type = Base Work
_UI_PFVArType2Common1_type = PFV Ar Type2 Common1
_UI_TapChanger_type = Tap Changer
_UI_DCGround_type = DC Ground
_UI_CurrentLimit_type = Current Limit
_UI_ActivePowerLimit_type = Active Power Limit
_UI_NonlinearShuntCompensator_type = Nonlinear Shunt Compensator
_UI_Channel_type = Channel
_UI_SwitchSchedule_type = Switch Schedule
_UI_ExcST6B_type = Exc ST6B
_UI_PSREvent_type = PSR Event
_UI_ExcIEEEST4B_type = Exc IEEEST4B
_UI_CrewMember_type = Crew Member
_UI_OperationTag_type = Operation Tag
_UI_CurrentTransformer_type = Current Transformer
_UI_FossilSteamSupply_type = Fossil Steam Supply
_UI_FaultIndicator_type = Fault Indicator
_UI_ExcAC1A_type = Exc AC1A
_UI_Maintainer_type = Maintainer
_UI_DCTerminal_type = DC Terminal
_UI_Pss1_type = Pss1
_UI_ShortCircuitTest_type = Short Circuit Test
_UI_ExcIEEEAC5A_type = Exc IEEEAC5A
_UI_MutualCoupling_type = Mutual Coupling
_UI_TagAction_type = Tag Action
_UI_VoltageLevel_type = Voltage Level
_UI_GovHydroPID_type = Gov Hydro PID
_UI_Outage_type = Outage
_UI_Recloser_type = Recloser
_UI_ExcOEX3T_type = Exc OEX3T
_UI_IrregularTimePoint_type = Irregular Time Point
_UI_ExcPIC_type = Exc PIC
_UI_OperationalUpdatedRating_type = Operational Updated Rating
_UI_LimitSet_type = Limit Set
_UI_CurveData_type = Curve Data
_UI_DiscExcContIEEEDEC2A_type = Disc Exc Cont IEEEDEC2A
_UI_Switch_type = Switch
_UI_ConsumptionTariffInterval_type = Consumption Tariff Interval
_UI_EarthFaultCompensator_type = Earth Fault Compensator
_UI_DiagramObject_type = Diagram Object
_UI_WindPlantReactiveControlIEC_type = Wind Plant Reactive Control IEC
_UI_Cut_type = Cut
_UI_PendingCalculation_type = Pending Calculation
_UI_Limit_type = Limit
_UI_AuxiliaryEquipment_type = Auxiliary Equipment
_UI_TopologicalNode_type = Topological Node
_UI_TimeSchedule_type = Time Schedule
_UI_ExcIEEEAC2A_type = Exc IEEEAC2A
_UI_LoadGenericNonLinear_type = Load Generic Non Linear
_UI_AssetModel_type = Asset Model
_UI_Vendor_type = Vendor
_UI_ReactiveCapabilityCurve_type = Reactive Capability Curve
_UI_TransformerEndInfo_type = Transformer End Info
_UI_Appointment_type = Appointment
_UI_DiscontinuousExcitationControlDynamics_type = Discontinuous Excitation Control Dynamics
_UI_ExcIEEEST5B_type = Exc IEEEST5B
_UI_Seal_type = Seal
_UI_MerchantAccount_type = Merchant Account
_UI_RotatingMachine_type = Rotating Machine
_UI_GovHydroDD_type = Gov Hydro DD
_UI_CrewType_type = Crew Type
_UI_GovHydroIEEE0_type = Gov Hydro IEEE0
_UI_CashierShift_type = Cashier Shift
_UI_OverexcLimX2_type = Overexc Lim X2
_UI_ExcST7B_type = Exc ST7B
_UI_GroundDisconnector_type = Ground Disconnector
_UI_HeatRecoveryBoiler_type = Heat Recovery Boiler
_UI_ExcIEEEDC1A_type = Exc IEEEDC1A
_UI_EnergySchedulingType_type = Energy Scheduling Type
_UI_Unknown_type = Object
_UI_Unknown_datatype= Value
_UI_CimObjectWithID_ID_feature = ID
_UI_DecimalQuantity_currency_feature = Currency
_UI_DecimalQuantity_multiplier_feature = Multiplier
_UI_DecimalQuantity_unit_feature = Unit
_UI_DecimalQuantity_value_feature = Value
_UI_RemoteConnectDisconnectInfo_armedTimeout_feature = Armed Timeout
_UI_RemoteConnectDisconnectInfo_customerVoltageLimit_feature = Customer Voltage Limit
_UI_RemoteConnectDisconnectInfo_energyLimit_feature = Energy Limit
_UI_RemoteConnectDisconnectInfo_energyUsageStartDateTime_feature = Energy Usage Start Date Time
_UI_RemoteConnectDisconnectInfo_energyUsageWarning_feature = Energy Usage Warning
_UI_RemoteConnectDisconnectInfo_isArmConnect_feature = Is Arm Connect
_UI_RemoteConnectDisconnectInfo_isArmDisconnect_feature = Is Arm Disconnect
_UI_RemoteConnectDisconnectInfo_isEnergyLimiting_feature = Is Energy Limiting
_UI_RemoteConnectDisconnectInfo_needsPowerLimitCheck_feature = Needs Power Limit Check
_UI_RemoteConnectDisconnectInfo_needsVoltageLimitCheck_feature = Needs Voltage Limit Check
_UI_RemoteConnectDisconnectInfo_powerLimit_feature = Power Limit
_UI_RemoteConnectDisconnectInfo_usePushbutton_feature = Use Pushbutton
_UI_TimeInterval_end_feature = End
_UI_TimeInterval_start_feature = Start
_UI_DateInterval_end_feature = End
_UI_DateInterval_start_feature = Start
_UI_StringQuantity_multiplier_feature = Multiplier
_UI_StringQuantity_unit_feature = Unit
_UI_StringQuantity_value_feature = Value
_UI_ElectronicAddress_email1_feature = Email1
_UI_ElectronicAddress_email2_feature = Email2
_UI_ElectronicAddress_lan_feature = Lan
_UI_ElectronicAddress_mac_feature = Mac
_UI_ElectronicAddress_password_feature = Password
_UI_ElectronicAddress_radio_feature = Radio
_UI_ElectronicAddress_userID_feature = User ID
_UI_ElectronicAddress_web_feature = Web
_UI_LifecycleDate_installationDate_feature = Installation Date
_UI_LifecycleDate_manufacturedDate_feature = Manufactured Date
_UI_LifecycleDate_purchaseDate_feature = Purchase Date
_UI_LifecycleDate_receivedDate_feature = Received Date
_UI_LifecycleDate_removalDate_feature = Removal Date
_UI_LifecycleDate_retiredDate_feature = Retired Date
_UI_EndDeviceCapability_autonomousDst_feature = Autonomous Dst
_UI_EndDeviceCapability_communication_feature = Communication
_UI_EndDeviceCapability_connectDisconnect_feature = Connect Disconnect
_UI_EndDeviceCapability_demandResponse_feature = Demand Response
_UI_EndDeviceCapability_electricMetering_feature = Electric Metering
_UI_EndDeviceCapability_gasMetering_feature = Gas Metering
_UI_EndDeviceCapability_metrology_feature = Metrology
_UI_EndDeviceCapability_onRequestRead_feature = On Request Read
_UI_EndDeviceCapability_outageHistory_feature = Outage History
_UI_EndDeviceCapability_pressureCompensation_feature = Pressure Compensation
_UI_EndDeviceCapability_pricingInfo_feature = Pricing Info
_UI_EndDeviceCapability_pulseOutput_feature = Pulse Output
_UI_EndDeviceCapability_relaysProgramming_feature = Relays Programming
_UI_EndDeviceCapability_reverseFlow_feature = Reverse Flow
_UI_EndDeviceCapability_superCompressibilityCompensation_feature = Super Compressibility Compensation
_UI_EndDeviceCapability_temperatureCompensation_feature = Temperature Compensation
_UI_EndDeviceCapability_textMessage_feature = Text Message
_UI_EndDeviceCapability_waterMetering_feature = Water Metering
_UI_IntegerQuantity_multiplier_feature = Multiplier
_UI_IntegerQuantity_unit_feature = Unit
_UI_IntegerQuantity_value_feature = Value
_UI_ServicePointOutageSummary_criticalCount_feature = Critical Count
_UI_ServicePointOutageSummary_totalCount_feature = Total Count
_UI_MonthDayInterval_end_feature = End
_UI_MonthDayInterval_start_feature = Start
_UI_ReadingInterharmonic_denominator_feature = Denominator
_UI_ReadingInterharmonic_numerator_feature = Numerator
_UI_AccountingUnit_energyUnit_feature = Energy Unit
_UI_AccountingUnit_monetaryUnit_feature = Monetary Unit
_UI_AccountingUnit_multiplier_feature = Multiplier
_UI_AccountingUnit_value_feature = Value
_UI_BankAccountDetail_accountNumber_feature = Account Number
_UI_BankAccountDetail_bankName_feature = Bank Name
_UI_BankAccountDetail_branchCode_feature = Branch Code
_UI_BankAccountDetail_holderID_feature = Holder ID
_UI_BankAccountDetail_holderName_feature = Holder Name
_UI_DateTimeInterval_end_feature = End
_UI_DateTimeInterval_start_feature = Start
_UI_LineDetail_amount_feature = Amount
_UI_LineDetail_dateTime_feature = Date Time
_UI_LineDetail_note_feature = Note
_UI_LineDetail_rounding_feature = Rounding
_UI_AccountMovement_amount_feature = Amount
_UI_AccountMovement_dateTime_feature = Date Time
_UI_AccountMovement_reason_feature = Reason
_UI_TelephoneNumber_areaCode_feature = Area Code
_UI_TelephoneNumber_cityCode_feature = City Code
_UI_TelephoneNumber_countryCode_feature = Country Code
_UI_TelephoneNumber_extension_feature = Extension
_UI_TelephoneNumber_localNumber_feature = Local Number
_UI_Status_dateTime_feature = Date Time
_UI_Status_reason_feature = Reason
_UI_Status_remark_feature = Remark
_UI_Status_value_feature = Value
_UI_AcceptanceTest_dateTime_feature = Date Time
_UI_AcceptanceTest_success_feature = Success
_UI_AcceptanceTest_type_feature = Type
_UI_FaultImpedance_rGround_feature = RGround
_UI_FaultImpedance_rLineToLine_feature = RLine To Line
_UI_FaultImpedance_xGround_feature = XGround
_UI_FaultImpedance_xLineToLine_feature = XLine To Line
_UI_TownDetail_code_feature = Code
_UI_TownDetail_country_feature = Country
_UI_TownDetail_name_feature = Name
_UI_TownDetail_section_feature = Section
_UI_TownDetail_stateOrProvince_feature = State Or Province
_UI_Due_arrears_feature = Arrears
_UI_Due_charges_feature = Charges
_UI_Due_current_feature = Current
_UI_Due_interest_feature = Interest
_UI_Due_principle_feature = Principle
_UI_Priority_justification_feature = Justification
_UI_Priority_rank_feature = Rank
_UI_Priority_type_feature = Type
_UI_ControlledAppliance_isElectricVehicle_feature = Is Electric Vehicle
_UI_ControlledAppliance_isExteriorLighting_feature = Is Exterior Lighting
_UI_ControlledAppliance_isGenerationSystem_feature = Is Generation System
_UI_ControlledAppliance_isHvacCompressorOrFurnace_feature = Is Hvac Compressor Or Furnace
_UI_ControlledAppliance_isInteriorLighting_feature = Is Interior Lighting
_UI_ControlledAppliance_isIrrigationPump_feature = Is Irrigation Pump
_UI_ControlledAppliance_isManagedCommercialIndustrialLoad_feature = Is Managed Commercial Industrial Load
_UI_ControlledAppliance_isPoolPumpSpaJacuzzi_feature = Is Pool Pump Spa Jacuzzi
_UI_ControlledAppliance_isSimpleMiscLoad_feature = Is Simple Misc Load
_UI_ControlledAppliance_isSmartAppliance_feature = Is Smart Appliance
_UI_ControlledAppliance_isStripAndBaseboardHeater_feature = Is Strip And Baseboard Heater
_UI_ControlledAppliance_isWaterHeater_feature = Is Water Heater
_UI_FloatQuantity_multiplier_feature = Multiplier
_UI_FloatQuantity_unit_feature = Unit
_UI_FloatQuantity_value_feature = Value
_UI_RationalNumber_denominator_feature = Denominator
_UI_RationalNumber_numerator_feature = Numerator
_UI_StreetDetail_addressGeneral_feature = Address General
_UI_StreetDetail_buildingName_feature = Building Name
_UI_StreetDetail_code_feature = Code
_UI_StreetDetail_name_feature = Name
_UI_StreetDetail_number_feature = Number
_UI_StreetDetail_prefix_feature = Prefix
_UI_StreetDetail_suffix_feature = Suffix
_UI_StreetDetail_suiteNumber_feature = Suite Number
_UI_StreetDetail_type_feature = Type
_UI_StreetDetail_withinTownLimits_feature = Within Town Limits
_UI_EndDeviceTiming_duration_feature = Duration
_UI_EndDeviceTiming_durationIndefinite_feature = Duration Indefinite
_UI_EndDeviceTiming_randomisation_feature = Randomisation
_UI_EndDeviceTiming_interval_feature = Interval
_UI_PostalAddress_poBox_feature = Po Box
_UI_PostalAddress_postalCode_feature = Postal Code
_UI_PostalAddress_streetDetail_feature = Street Detail
_UI_PostalAddress_townDetail_feature = Town Detail
_UI_StreetAddress_status_feature = Status
_UI_StreetAddress_streetDetail_feature = Street Detail
_UI_StreetAddress_townDetail_feature = Town Detail
_UI_WindGenTurbineType3IEC_dipmax_feature = Dipmax
_UI_WindGenTurbineType3IEC_diqmax_feature = Diqmax
_UI_WindGenTurbineType3IEC_WindContPitchAngleIEC_feature = Wind Cont Pitch Angle IEC
_UI_WindGenTurbineType3IEC_WindContPType3IEC_feature = Wind Cont PType3 IEC
_UI_WindGenTurbineType3IEC_WindMechIEC_feature = Wind Mech IEC
_UI_WindGenTurbineType3IEC_WindAeroLinearIEC_feature = Wind Aero Linear IEC
_UI_AltGeneratingUnitMeas_priority_feature = Priority
_UI_AltGeneratingUnitMeas_ControlAreaGeneratingUnit_feature = Control Area Generating Unit
_UI_AltGeneratingUnitMeas_AnalogValue_feature = Analog Value
_UI_Contingency_mustStudy_feature = Must Study
_UI_Contingency_ContingencyElement_feature = Contingency Element
_UI_AltTieMeas_priority_feature = Priority
_UI_AltTieMeas_AnalogValue_feature = Analog Value
_UI_AltTieMeas_TieFlow_feature = Tie Flow
_UI_MeterServiceWork_UsagePoint_feature = Usage Point
_UI_MeterServiceWork_Meter_feature = Meter
_UI_MeterServiceWork_OldMeter_feature = Old Meter
_UI_PssSB4_kx_feature = Kx
_UI_PssSB4_ta_feature = Ta
_UI_PssSB4_tb_feature = Tb
_UI_PssSB4_tc_feature = Tc
_UI_PssSB4_td_feature = Td
_UI_PssSB4_te_feature = Te
_UI_PssSB4_tt_feature = Tt
_UI_PssSB4_tx1_feature = Tx1
_UI_PssSB4_tx2_feature = Tx2
_UI_PssSB4_vsmax_feature = Vsmax
_UI_PssSB4_vsmin_feature = Vsmin
_UI_WindAeroLinearIEC_dpomega_feature = Dpomega
_UI_WindAeroLinearIEC_dptheta_feature = Dptheta
_UI_WindAeroLinearIEC_omegazero_feature = Omegazero
_UI_WindAeroLinearIEC_pavail_feature = Pavail
_UI_WindAeroLinearIEC_thetazero_feature = Thetazero
_UI_WindAeroLinearIEC_WindGenTurbineType3IEC_feature = Wind Gen Turbine Type3 IEC
_UI_GovHydroPelton_av0_feature = Av0
_UI_GovHydroPelton_av1_feature = Av1
_UI_GovHydroPelton_bp_feature = Bp
_UI_GovHydroPelton_db1_feature = Db1
_UI_GovHydroPelton_db2_feature = Db2
_UI_GovHydroPelton_h1_feature = H1
_UI_GovHydroPelton_h2_feature = H2
_UI_GovHydroPelton_hn_feature = Hn
_UI_GovHydroPelton_kc_feature = Kc
_UI_GovHydroPelton_kg_feature = Kg
_UI_GovHydroPelton_qc0_feature = Qc0
_UI_GovHydroPelton_qn_feature = Qn
_UI_GovHydroPelton_simplifiedPelton_feature = Simplified Pelton
_UI_GovHydroPelton_staticCompensating_feature = Static Compensating
_UI_GovHydroPelton_ta_feature = Ta
_UI_GovHydroPelton_ts_feature = Ts
_UI_GovHydroPelton_tv_feature = Tv
_UI_GovHydroPelton_twnc_feature = Twnc
_UI_GovHydroPelton_twng_feature = Twng
_UI_GovHydroPelton_tx_feature = Tx
_UI_GovHydroPelton_va_feature = Va
_UI_GovHydroPelton_valvmax_feature = Valvmax
_UI_GovHydroPelton_valvmin_feature = Valvmin
_UI_GovHydroPelton_vav_feature = Vav
_UI_GovHydroPelton_vc_feature = Vc
_UI_GovHydroPelton_vcv_feature = Vcv
_UI_GovHydroPelton_waterTunnelSurgeChamberSimulation_feature = Water Tunnel Surge Chamber Simulation
_UI_GovHydroPelton_zsfc_feature = Zsfc
_UI_Asset_critical_feature = Critical
_UI_Asset_initialCondition_feature = Initial Condition
_UI_Asset_initialLossOfLife_feature = Initial Loss Of Life
_UI_Asset_lotNumber_feature = Lot Number
_UI_Asset_purchasePrice_feature = Purchase Price
_UI_Asset_serialNumber_feature = Serial Number
_UI_Asset_type_feature = Type
_UI_Asset_utcNumber_feature = Utc Number
_UI_Asset_acceptanceTest_feature = Acceptance Test
_UI_Asset_electronicAddress_feature = Electronic Address
_UI_Asset_lifecycle_feature = Lifecycle
_UI_Asset_status_feature = Status
_UI_Asset_WorkTasks_feature = Work Tasks
_UI_Asset_PowerSystemResources_feature = Power System Resources
_UI_Asset_Procedures_feature = Procedures
_UI_Asset_ScheduledEvents_feature = Scheduled Events
_UI_Asset_ConfigurationEvents_feature = Configuration Events
_UI_Asset_OrganisationRoles_feature = Organisation Roles
_UI_Asset_ActivityRecords_feature = Activity Records
_UI_Asset_ReplacementWorkTasks_feature = Replacement Work Tasks
_UI_Asset_AssetContainer_feature = Asset Container
_UI_Asset_Ownerships_feature = Ownerships
_UI_Asset_OperationTags_feature = Operation Tags
_UI_Asset_Location_feature = Location
_UI_Asset_AssetInfo_feature = Asset Info
_UI_Asset_Measurements_feature = Measurements
_UI_NameType_description_feature = Description
_UI_NameType_name_feature = Name
_UI_NameType_NameTypeAuthority_feature = Name Type Authority
_UI_NameType_Names_feature = Names
_UI_CombinedCyclePlant_combCyclePlantRating_feature = Comb Cycle Plant Rating
_UI_CombinedCyclePlant_ThermalGeneratingUnits_feature = Thermal Generating Units
_UI_PointOfSale_location_feature = Location
_UI_PointOfSale_CashierShifts_feature = Cashier Shifts
_UI_IncidentHazard_Incident_feature = Incident
_UI_IncidentHazard_TroubleTicket_feature = Trouble Ticket
_UI_GovSteamCC_dhp_feature = Dhp
_UI_GovSteamCC_dlp_feature = Dlp
_UI_GovSteamCC_fhp_feature = Fhp
_UI_GovSteamCC_flp_feature = Flp
_UI_GovSteamCC_mwbase_feature = Mwbase
_UI_GovSteamCC_pmaxhp_feature = Pmaxhp
_UI_GovSteamCC_pmaxlp_feature = Pmaxlp
_UI_GovSteamCC_rhp_feature = Rhp
_UI_GovSteamCC_rlp_feature = Rlp
_UI_GovSteamCC_t1hp_feature = T1hp
_UI_GovSteamCC_t1lp_feature = T1lp
_UI_GovSteamCC_t3hp_feature = T3hp
_UI_GovSteamCC_t3lp_feature = T3lp
_UI_GovSteamCC_t4hp_feature = T4hp
_UI_GovSteamCC_t4lp_feature = T4lp
_UI_GovSteamCC_t5hp_feature = T5hp
_UI_GovSteamCC_t5lp_feature = T5lp
_UI_ACDCConverterDCTerminal_polarity_feature = Polarity
_UI_ACDCConverterDCTerminal_DCConductingEquipment_feature = DC Conducting Equipment
_UI_ExcELIN1_dpnf_feature = Dpnf
_UI_ExcELIN1_efmax_feature = Efmax
_UI_ExcELIN1_efmin_feature = Efmin
_UI_ExcELIN1_ks1_feature = Ks1
_UI_ExcELIN1_ks2_feature = Ks2
_UI_ExcELIN1_smax_feature = Smax
_UI_ExcELIN1_tfi_feature = Tfi
_UI_ExcELIN1_tnu_feature = Tnu
_UI_ExcELIN1_ts1_feature = Ts1
_UI_ExcELIN1_ts2_feature = Ts2
_UI_ExcELIN1_tsw_feature = Tsw
_UI_ExcELIN1_vpi_feature = Vpi
_UI_ExcELIN1_vpnf_feature = Vpnf
_UI_ExcELIN1_vpu_feature = Vpu
_UI_ExcELIN1_xe_feature = Xe