-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEquipmentBoundary.xmi
4784 lines (4784 loc) · 295 KB
/
EquipmentBoundary.xmi
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
<?xml version="1.0" encoding="windows-1252" standalone="no" ?>
<XMI xmi.version="1.1" xmlns:UML="omg.org/UML1.3" timestamp="2023-08-19 17:40:12">
<XMI.header>
<XMI.documentation>
<XMI.exporter>Enterprise Architect</XMI.exporter>
<XMI.exporterVersion>4.1RR</XMI.exporterVersion>
</XMI.documentation>
<XMI.metamodel XMI.name="UML" XMI.version="1.3"/>
</XMI.header>
<XMI.content>
<UML:Model name="EA Model" xmi.id="MX_EAID_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1">
<UML:Namespace.ownedElement>
<UML:Package name="EquipmentBoundaryProfile" xmi.id="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" visibility="public">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="This profile is deprecated. Use core equipment profile part of the IEC 61970-452 document. "/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Class name="Date" xmi.id="EAID_03B97284_7D30_48c0_91FD_BDF1BD8A4259" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Date as "yyyy-mm-dd", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddZ". A local timezone relative UTC is specified as "yyyy-mm-dd(+/-)hh:mm"."/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="ACDCTerminal" xmi.id="EAID_0EEDB49F_2C5C_4032_B279_D696D05A3B73" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="true" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_1C78C526_2310_4dd8_9D87_344A7B210512"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="An electrical connection point (AC or DC) to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes."/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_0EEDB49F_2C5C_4032_B279_D696D05A3B73" parent="EAID_E95C74A3_EA64_4ca1_9618_408A22FD33DB" xmi.id="EAID_1C78C526_2310_4dd8_9D87_344A7B210512" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_0F8AC4F1_A8DA_4b64_B58C_99BA45866185" parent="EAID_0EEDB49F_2C5C_4032_B279_D696D05A3B73" xmi.id="EAID_54832D80_C4B4_4aa7_A60C_ABAA16CD47EE" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Class name="Terminal" xmi.id="EAID_0F8AC4F1_A8DA_4b64_B58C_99BA45866185" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_54832D80_C4B4_4aa7_A60C_ABAA16CD47EE"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="An AC electrical connection point to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes."/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Association xmi.id="EAID_CD81BB05_4E5C_4b8f_9B91_705C389B3674" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}" xmi.id="EAID_E126718B_FA2C_4cea_822D_931FCE63A91E"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_src81BB05_4E5C_4b8f_9B91_705C389B3674" visibility="public" multiplicity="0..*" name="Terminals" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="false" type="EAID_0F8AC4F1_A8DA_4b64_B58C_99BA45866185">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dst81BB05_4E5C_4b8f_9B91_705C389B3674" visibility="public" multiplicity="1" name="ConductingEquipment" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_29BD3E7A_F25F_474c_8268_AB1F67EDF0BB">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The conducting equipment of the terminal. Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Association xmi.id="EAID_F1FAAE1E_CE98_4b7f_A065_F59271EFD902" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}" xmi.id="EAID_50154C41_F0F6_4a0f_8CF8_27C93137D9BA"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_srcFAAE1E_CE98_4b7f_A065_F59271EFD902" visibility="public" multiplicity="0..1" name="ConnectivityNode" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_25C9252E_BCA3_4536_B0A0_D64FE40B1D79">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The connectivity node to which this terminal connects with zero impedance."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dstFAAE1E_CE98_4b7f_A065_F59271EFD902" visibility="public" multiplicity="0..*" name="Terminals" aggregation="none" isOrdered="false" isNavigable="false" type="EAID_0F8AC4F1_A8DA_4b64_B58C_99BA45866185">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Terminals interconnected with zero impedance at a this connectivity node. "/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Class name="BaseVoltage" xmi.id="EAID_15E4BF5E_0EC8_41fa_957F_AB21D70BEE50" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_1980EB33_8C5D_4722_9A46_210FE6FD9F18"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Defines a system base voltage which is referenced. "/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="nominalVoltage" xmi.id="EAID_80D0FA97_3F8A_4ae4_9A86_CCC16B2C7954" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_4D129353_4D88_4037_AECE_E3D985484677"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The power system resource's base voltage. Shall be a positive value and not zero."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{D37DA22A-916B-4a33-88AB-B77C229DB882}" xmi.id="EAID_8A755FE0_CB86_4eba_9183_AADD95172731"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
</UML:Classifier.feature>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_15E4BF5E_0EC8_41fa_957F_AB21D70BEE50" parent="EAID_E95C74A3_EA64_4ca1_9618_408A22FD33DB" xmi.id="EAID_1980EB33_8C5D_4722_9A46_210FE6FD9F18" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Association xmi.id="EAID_1B5A4625_4862_490d_A829_6B99F2EF10C1" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}" xmi.id="EAID_618BC411_015E_4637_8AE2_6968D74F5945"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_src5A4625_4862_490d_A829_6B99F2EF10C1" visibility="public" multiplicity="1" name="BaseVoltage" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_15E4BF5E_0EC8_41fa_957F_AB21D70BEE50">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The base voltage used for all equipment within the voltage level."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dst5A4625_4862_490d_A829_6B99F2EF10C1" visibility="public" multiplicity="0..*" name="VoltageLevel" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="false" type="EAID_32E9B94A_0225_467b_9F2F_0BD705D3F395">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The voltage levels having this base voltage."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Class name="PowerSystemResource" xmi.id="EAID_1DFB38C1_B07E_495b_95C3_B8CD23EBD897" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="true" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_73FB25BE_5B10_40d5_A7A7_D19CFF092CC0"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A power system resource (PSR) can be an item of equipment such as a switch, an equipment container containing many individual items of equipment such as a substation, or an organisational entity such as sub-control area. Power system resources can have measurements associated."/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_C91C2B14_D9FB_4d1c_982A_2DF7D32F240C" parent="EAID_1DFB38C1_B07E_495b_95C3_B8CD23EBD897" xmi.id="EAID_1B9968EF_964E_4148_9DBF_FB67D6D2958D" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_1DFB38C1_B07E_495b_95C3_B8CD23EBD897" parent="EAID_E95C74A3_EA64_4ca1_9618_408A22FD33DB" xmi.id="EAID_73FB25BE_5B10_40d5_A7A7_D19CFF092CC0" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_C9AE3BAA_3A5B_48dd_96A4_C62F65F0B3B1" parent="EAID_1DFB38C1_B07E_495b_95C3_B8CD23EBD897" xmi.id="EAID_9F34F47D_CF80_41c3_B677_821044DEB895" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_96CD755B_0F50_4746_BD73_6C4D8CA232B2" parent="EAID_1DFB38C1_B07E_495b_95C3_B8CD23EBD897" xmi.id="EAID_CD290F09_6CBA_42a6_856E_092C1E2E074C" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Class name="ConnectivityNode" xmi.id="EAID_25C9252E_BCA3_4536_B0A0_D64FE40B1D79" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_D0683240_D043_4fd6_B0D7_9959C327C729"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Connectivity nodes are points where terminals of AC conducting equipment are connected together with zero impedance."/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_25C9252E_BCA3_4536_B0A0_D64FE40B1D79" parent="EAID_E95C74A3_EA64_4ca1_9618_408A22FD33DB" xmi.id="EAID_D0683240_D043_4fd6_B0D7_9959C327C729" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Association xmi.id="EAID_1B45C561_DC5E_46b1_B2CA_E77E7954E79A" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}" xmi.id="EAID_97A7613F_9D3B_4456_A6E2_DC72F73E92A9"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_src45C561_DC5E_46b1_B2CA_E77E7954E79A" visibility="public" multiplicity="0..*" name="ConnectivityNodes" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="false" type="EAID_25C9252E_BCA3_4536_B0A0_D64FE40B1D79">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Connectivity nodes which belong to this connectivity node container."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dst45C561_DC5E_46b1_B2CA_E77E7954E79A" visibility="public" multiplicity="1" name="ConnectivityNodeContainer" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_C91C2B14_D9FB_4d1c_982A_2DF7D32F240C">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Container of this connectivity node."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Association xmi.id="EAID_3A7A4DC2_5622_419c_A5B6_E81232E37107" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{E6A839F4-AB99-4bd7-A40B-BC2C396EFBF7}" xmi.id="EAID_1E81195F_DE01_42bd_A804_6D32C885ADD1"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_src7A4DC2_5622_419c_A5B6_E81232E37107" visibility="public" multiplicity="0..1" name="BoundaryPoint" aggregation="none" isOrdered="false" isNavigable="false" type="EAID_C9AE3BAA_3A5B_48dd_96A4_C62F65F0B3B1">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The boundary point associated with the connectivity node."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dst7A4DC2_5622_419c_A5B6_E81232E37107" visibility="public" multiplicity="1" name="ConnectivityNode" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_25C9252E_BCA3_4536_B0A0_D64FE40B1D79">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The connectivity node that is designated as a boundary point."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Class name="GeographicalRegion" xmi.id="EAID_268BF692_07FC_49b3_BF36_34F005C65278" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_69D7FFF2_6443_4382_AE19_590E84BC95E5"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A geographical region of a power system network model.
"/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_268BF692_07FC_49b3_BF36_34F005C65278" parent="EAID_E95C74A3_EA64_4ca1_9618_408A22FD33DB" xmi.id="EAID_69D7FFF2_6443_4382_AE19_590E84BC95E5" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Association xmi.id="EAID_56B18124_4900_443d_BACF_FBC226337383" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{023E20DF-DF02-4ffb-A047-E5BBDB18AB59}" xmi.id="EAID_9CAD2775_F2FA_488e_9E19_2A3C2156A7C8"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_srcB18124_4900_443d_BACF_FBC226337383" visibility="public" multiplicity="1..1" name="Region" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_268BF692_07FC_49b3_BF36_34F005C65278">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The geographical region which this sub-geographical region is within."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dstB18124_4900_443d_BACF_FBC226337383" visibility="public" multiplicity="0..*" name="Regions" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="false" type="EAID_A18007BE_C530_4000_AA45_5F4C0387F43C">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="All sub-geographical regions within this geographical region."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Class name="String" xmi.id="EAID_284C4B3B_2F48_43d0_8656_EE79139B81DE" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A string consisting of a sequence of characters. The character encoding is UTF-8. The string length is unspecified and unlimited."/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="ConductingEquipment" xmi.id="EAID_29BD3E7A_F25F_474c_8268_AB1F67EDF0BB" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="true" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_C6FA147B_C79F_4a1c_9308_17C37CD9817A"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="The parts of the AC power system that are designed to carry current or that are conductively connected through terminals."/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_52DE5736_39DC_4e58_8353_DD1A9E449398" parent="EAID_29BD3E7A_F25F_474c_8268_AB1F67EDF0BB" xmi.id="EAID_8FA9061B_EF93_4225_BCCB_7709CEC8F996" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_29BD3E7A_F25F_474c_8268_AB1F67EDF0BB" parent="EAID_96CD755B_0F50_4746_BD73_6C4D8CA232B2" xmi.id="EAID_C6FA147B_C79F_4a1c_9308_17C37CD9817A" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Class name="VoltageLevel" xmi.id="EAID_32E9B94A_0225_467b_9F2F_0BD705D3F395" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_C13FBD0D_4E06_4443_A846_746E0D789198"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A collection of equipment at one common system voltage forming a switchgear. The equipment typically consists of breakers, busbars, instrumentation, control, regulation and protection devices as well as assemblies of all these."/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="highVoltageLimit" xmi.id="EAID_4C2811B9_74F5_4c2d_B937_5FD5D5E6E6BB" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_4D129353_4D88_4037_AECE_E3D985484677"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The bus bar's high voltage limit.
The limit applies to all equipment and nodes contained in a given VoltageLevel. It is not required that it is exchanged in pair with lowVoltageLimit. It is preferable to use operational VoltageLimit, which prevails, if present."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{D1BAD493-B22A-497f-B6A6-CDFDF46EA012}" xmi.id="EAID_B474026A_7681_4732_906B_88F17DB8385D"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="lowVoltageLimit" xmi.id="EAID_A770E09B_E15B_4f5c_974F_CD50004B9849" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_4D129353_4D88_4037_AECE_E3D985484677"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The bus bar's low voltage limit.
The limit applies to all equipment and nodes contained in a given VoltageLevel. It is not required that it is exchanged in pair with highVoltageLimit. It is preferable to use operational VoltageLimit, which prevails, if present."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{EB17FEAC-CDBA-4bbd-B45E-86D3EA333C08}" xmi.id="EAID_EDB99A4E_2088_41ad_BDDC_286CB58808B6"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
</UML:Classifier.feature>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_32E9B94A_0225_467b_9F2F_0BD705D3F395" parent="EAID_439B4F11_A29E_4258_91FE_25EA2356CE0B" xmi.id="EAID_C13FBD0D_4E06_4443_A846_746E0D789198" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Association xmi.id="EAID_CB175187_C982_4ef9_B884_1B76EFDFC3D7" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}" xmi.id="EAID_BDDE4EA6_C493_4faf_9336_6D7EFF942489"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_src175187_C982_4ef9_B884_1B76EFDFC3D7" visibility="public" multiplicity="1" name="Substation" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_77E72DA1_E3D5_4728_973E_66DF1F115D00">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The substation of the voltage level."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dst175187_C982_4ef9_B884_1B76EFDFC3D7" visibility="public" multiplicity="0..*" name="VoltageLevels" aggregation="none" isOrdered="false" isNavigable="false" type="EAID_32E9B94A_0225_467b_9F2F_0BD705D3F395">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The voltage levels within this substation."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Association xmi.id="EAID_E63B06FD_62D8_496b_88D1_2A648621F77E" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{5E328091-5BC1-4fa8-9BA3-F087A215492A}" xmi.id="EAID_EB2CB1EE_3F85_48f2_882E_8467C76DCB8C"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_src3B06FD_62D8_496b_88D1_2A648621F77E" visibility="public" multiplicity="0..*" name="Bays" aggregation="none" isOrdered="false" isNavigable="false" type="EAID_572BD28F_F018_4984_AB73_5ED7FC651E74">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The bays within this voltage level."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dst3B06FD_62D8_496b_88D1_2A648621F77E" visibility="public" multiplicity="1" name="VoltageLevel" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_32E9B94A_0225_467b_9F2F_0BD705D3F395">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The voltage level containing this bay."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Class name="Junction" xmi.id="EAID_37642F17_7D50_47b3_AF41_DA49C2094EEC" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_C45A9F0F_DBE4_4d31_8A2B_D7D91A302A6F"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A point where one or more conducting equipments are connected with zero resistance."/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_37642F17_7D50_47b3_AF41_DA49C2094EEC" parent="EAID_52DE5736_39DC_4e58_8353_DD1A9E449398" xmi.id="EAID_C45A9F0F_DBE4_4d31_8A2B_D7D91A302A6F" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Class name="EquipmentContainer" xmi.id="EAID_439B4F11_A29E_4258_91FE_25EA2356CE0B" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="true" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_0A806A40_E37B_4f66_A3B1_095564612EE9"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A modelling construct to provide a root class for containing equipment. "/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_439B4F11_A29E_4258_91FE_25EA2356CE0B" parent="EAID_C91C2B14_D9FB_4d1c_982A_2DF7D32F240C" xmi.id="EAID_0A806A40_E37B_4f66_A3B1_095564612EE9" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_77E72DA1_E3D5_4728_973E_66DF1F115D00" parent="EAID_439B4F11_A29E_4258_91FE_25EA2356CE0B" xmi.id="EAID_986AF48B_3888_4bcc_8077_8204F6B425DE" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_5038196D_3E12_4851_806A_A7F7BABF488B" parent="EAID_439B4F11_A29E_4258_91FE_25EA2356CE0B" xmi.id="EAID_DF435119_403E_488f_B444_21F15AA49179" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_572BD28F_F018_4984_AB73_5ED7FC651E74" parent="EAID_439B4F11_A29E_4258_91FE_25EA2356CE0B" xmi.id="EAID_E3560FC8_4DCF_45de_AAF6_AAE1F5157636" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Association xmi.id="EAID_8EEB15F3_7A68_4a6f_98F7_189CCEBD4439" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{68BA73EF-8533-48ba-964A-DE0F722292D2}" xmi.id="EAID_E8457361_7670_445b_B967_9B0963457A59"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_srcEB15F3_7A68_4a6f_98F7_189CCEBD4439" visibility="public" multiplicity="0..*" name="Equipments" aggregation="none" isOrdered="false" isNavigable="false" type="EAID_96CD755B_0F50_4746_BD73_6C4D8CA232B2">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Contained equipment."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dstEB15F3_7A68_4a6f_98F7_189CCEBD4439" visibility="public" multiplicity="0..1" name="EquipmentContainer" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_439B4F11_A29E_4258_91FE_25EA2356CE0B">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Container of this equipment."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Class name="Float" xmi.id="EAID_465DB84C_51C5_47dd_9C1A_44E2AE96DB13" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A floating point number. The range is unspecified and not limited.
"/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="Voltage" xmi.id="EAID_4D129353_4D88_4037_AECE_E3D985484677" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Electrical voltage, can be both AC and DC."/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="multiplier" xmi.id="EAID_BFE89D9B_EF15_430f_9DAC_71538E0354B2" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="k"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_ACB3AF11_536B_4e7f_A4F3_BC6AFA9681AD"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{5CFD034E-D7E1-4d20-BE0B-BB9E4F9D2D4B}" xmi.id="EAID_11A99FDE_E0A3_4f6b_AA45_3FCC158E7409"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="unit" xmi.id="EAID_1F9FE6C3_EE9D_4c52_835B_7B075E0F0055" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="V"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_7617BDD1_A646_491c_965C_A09268ABD10B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{6E959BD4-0ACC-4884-99F5-0B158661A3D9}" xmi.id="EAID_D8286391_2DE3_4940_823B_A1CDFA8096DE"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="value" xmi.id="EAID_FF88FA8D_0856_42b1_899D_73046C5022B2" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_465DB84C_51C5_47dd_9C1A_44E2AE96DB13"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{C86122FF-94E1-4244-975A-BA865D8135BC}" xmi.id="EAID_D782AB48_FE71_4156_A658_10ACC005FC48"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
</UML:Classifier.feature>
</UML:Class>
<UML:Class name="Line" xmi.id="EAID_5038196D_3E12_4851_806A_A7F7BABF488B" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_DF435119_403E_488f_B444_21F15AA49179"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Contains equipment beyond a substation belonging to a power transmission line. "/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Association xmi.id="EAID_51FA635E_A5B1_447c_8972_9AACAAEDE4D6" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{BAB73169-D3BE-43c3-A58B-F1B87EAA1239}" xmi.id="EAID_0A8BF20A_944D_4c3e_A497_764FB34B1D76"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_srcFA635E_A5B1_447c_8972_9AACAAEDE4D6" visibility="public" multiplicity="0..*" name="Lines" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="false" type="EAID_5038196D_3E12_4851_806A_A7F7BABF488B">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The lines within the sub-geographical region."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dstFA635E_A5B1_447c_8972_9AACAAEDE4D6" visibility="public" multiplicity="0..1" name="Region" aggregation="aggregate" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_A18007BE_C530_4000_AA45_5F4C0387F43C">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The sub-geographical region of the line."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Class name="Connector" xmi.id="EAID_52DE5736_39DC_4e58_8353_DD1A9E449398" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="true" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_8FA9061B_EF93_4225_BCCB_7709CEC8F996"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A conductor, or group of conductors, with negligible impedance, that serve to connect other conducting equipment within a single substation and are modelled with a single logical terminal."/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="Bay" xmi.id="EAID_572BD28F_F018_4984_AB73_5ED7FC651E74" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_E3560FC8_4DCF_45de_AAF6_AAE1F5157636"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A collection of power system resources (within a given substation) including conducting equipment, protection relays, measurements, and telemetry. A bay typically represents a physical grouping related to modularization of equipment.
"/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="UnitSymbol" xmi.id="EAID_7617BDD1_A646_491c_965C_A09268ABD10B" visibility="public" namespace="EAPK_A6C97EAA_18DA_42e4_BB17_1AD6864C2BB1" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="The derived units defined for usage in the CIM. In some cases, the derived unit is equal to an SI unit. Whenever possible, the standard derived symbol is used instead of the formula for the derived unit. For example, the unit symbol Farad is defined as "F" instead of "CPerV". In cases where a standard symbol does not exist for a derived unit, the formula for the unit is used as the unit symbol. For example, density does not have a standard symbol and so it is represented as "kgPerm3". With the exception of the "kg", which is an SI unit, the unit symbols do not contain multipliers and therefore represent the base derived unit to which a multiplier can be applied as a whole. 
Every unit symbol is treated as an unparseable text as if it were a single-letter symbol. The meaning of each unit symbol is defined by the accompanying descriptive text and not by the text contents of the unit symbol.
To allow the widest possible range of serializations without requiring special character handling, several substitutions are made which deviate from the format described in IEC 80000-1. The division symbol "/" is replaced by the letters "Per". Exponents are written in plain text after the unit as "m3" instead of being formatted as "m" with a superscript of 3 or introducing a symbol as in "m^3". The degree symbol "°" is replaced with the letters "deg". Any clarification of the meaning for a substitution is included in the description for the unit symbol.
Non-SI units are included in list of unit symbols to allow sources of data to be correctly labelled with their non-SI units (for example, a GPS sensor that is reporting numbers that represent feet instead of meters). This allows software to use the unit symbol information correctly convert and scale the raw data of those sources into SI-based units. 
The integer values are used for harmonization with IEC 61850."/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="none" xmi.id="EAID_BE193E89_17AD_4071_88DC_27A9A392A755" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="0"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Dimension less quantity, e.g. count, per unit, etc."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{F14E9D40-A805-4840-B04C-34CD7BD279CC}" xmi.id="EAID_7E1F1804_5CD6_4791_9922_A866A615062E"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="m" xmi.id="EAID_36F8E3A2_A588_45a9_81E9_8D305723BD1D" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="2"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Length in metres."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{5D4DDF01-7840-42a2-9106-C5CA5D41D1F2}" xmi.id="EAID_72C87472_652F_40fc_A089_02FD814C2F4A"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="kg" xmi.id="EAID_E964F9BF_50DD_4223_96E2_5FE246EA736A" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="3"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Mass in kilograms. Note: multiplier k is included in this unit symbol for compatibility with IEC 61850-7-3."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{E8CD3F4B-2301-4f19-BBDF-6D20CD945743}" xmi.id="EAID_383DB81F_4FA1_4439_B14F_859680A7E1F9"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="s" xmi.id="EAID_EC3034E7_84A6_4814_9DCE_9ADE94D1886C" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="4"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Time in seconds."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{D53EB49C-18D1-430f-BBB5-C7ED93CCFC2B}" xmi.id="EAID_C82040AF_C9E6_41c1_923A_5249AF30E99A"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="A" xmi.id="EAID_7FE71CE0_0955_4eda_AE41_F367533C3D54" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="5"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Current in amperes."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{EA92BC2E-3B95-470e-A50B-8BB500136F86}" xmi.id="EAID_C0077EFA_C5B3_450a_A0F5_563AEB0FAB24"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="K" xmi.id="EAID_3C762BFA_7467_4bbe_BDFC_9F7907C313A2" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="6"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Temperature in kelvins."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{1E8C279F-B121-451f-B8D7-7B9F1EF080DF}" xmi.id="EAID_BBE36030_B1D9_4889_A9A9_091ABC3D8581"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="mol" xmi.id="EAID_1783EDEC_29C6_4b5a_A84D_7A9CB57782D6" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="7"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Amount of substance in moles."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{AE67CF4C-C8D9-446d-AF20-8BFC19C17C18}" xmi.id="EAID_9B278AE1_8CFE_4de5_94F9_FB53E61C88AC"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="cd" xmi.id="EAID_74BBBFFA_B9D3_4267_85D5_3C0F97119F25" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="8"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Luminous intensity in candelas."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{E12E81A8-81B6-4286-B477-2A91F984C4FC}" xmi.id="EAID_DFF89BA4_50A3_4766_849C_DF486CD40CF9"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="deg" xmi.id="EAID_3D2038CF_2CA1_4bf0_8650_30AEFBE97DAD" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="9"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Plane angle in degrees."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{4FEE2708-57BD-4ab8-BF2C-504B62A5358F}" xmi.id="EAID_3303DDB2_6476_4992_B150_440B3771A67B"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="rad" xmi.id="EAID_AC21A756_6B87_4cc0_B97A_2D131790F6D5" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="10"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Plane angle in radians (m/m)."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{90D4CFED-C041-47b2-9BD3-B4F34BA5FD95}" xmi.id="EAID_77AFEA84_B5A1_49f6_B53E_45F3DA208D40"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="sr" xmi.id="EAID_291854F8_74D7_4a37_A616_167FD24C4700" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="11"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Solid angle in steradians (m2/m2)."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{EDB8BF68-BB72-4cac-9576-DCC78C57DBB1}" xmi.id="EAID_A52BF119_706F_44a8_9FD2_84FBB5BA017E"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="Gy" xmi.id="EAID_EF3AD94D_4649_4e6b_AF64_5F572E2BF598" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="21"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Absorbed dose in grays (J/kg)."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{60C8424D-7177-444c-BEF0-8E6AC1D1077B}" xmi.id="EAID_EDE4CC8F_F692_4c58_8360_8974BBEFFB6F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="Bq" xmi.id="EAID_3E6151D5_3148_4927_81CC_84FA0686C1BE" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="22"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Radioactivity in becquerels (1/s)."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{6A58DADF-F9D2-4be4-BA67-51992495709D}" xmi.id="EAID_D436AEA1_AF0F_4480_AE00_20A2ADAFAD8E"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="degC" xmi.id="EAID_C2B364DE_66AA_4f96_8E1C_F03CB092C9D8" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="23"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Relative temperature in degrees Celsius.
In the SI unit system the symbol is °C. Electric charge is measured in coulomb that has the unit symbol C. To distinguish degree Celsius from coulomb the symbol used in the UML is degC. The reason for not using °C is that the special character ° is difficult to manage in software."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{9266DB6A-744E-4939-896F-B84E928D14EE}" xmi.id="EAID_829C7A8A_9FCD_4c4f_88D1_0B4028312C97"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="Sv" xmi.id="EAID_D1CF44F2_FF76_4238_9C22_0FA69D528651" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="24"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Dose equivalent in sieverts (J/kg)."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{C408842C-136F-455f-B998-6A661EEA20AF}" xmi.id="EAID_921618FD_1472_468e_A789_2351355528C9"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="F" xmi.id="EAID_A2D1398B_0A9B_4812_95CD_2EDFCFBEFA63" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="25"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Electric capacitance in farads (C/V)."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{9D72A1D6-75D9-4e00-B3B4-42D7DD0990FE}" xmi.id="EAID_9EE55ACC_7E93_4af9_B65C_CD289364D95F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="C" xmi.id="EAID_79AF830C_C8FE_42e9_BA8B_D0D5F4A2C628" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="26"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Electric charge in coulombs (A·s)."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{EC257654-B700-4c74-A3E0-FA2B685C13D5}" xmi.id="EAID_FBCA9C5F_A28D_42eb_B6A9_FF91058B7D0F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="S" xmi.id="EAID_7C9F130F_EEA4_4798_9585_F41E52111829" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="27"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Conductance in siemens."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{C593555B-266C-4ac6-8F80-E91F045DFA89}" xmi.id="EAID_95DAC6E1_EE28_4417_88F1_53239562B13D"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>