sti.ttl
51.4 KB
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
@prefix p2: <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#> .
@prefix stirdl: <http://sti.data.posccaesar.org/rdl/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix list: <http://www.co-ode.org/ontologies/list.owl#> .
@prefix lci: <http://standards.iso.org/iso/15926/tech/ontology/> .
@prefix ptrn: <http://data.posccaesar.org/ptrn/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix oldrdl: <http://rds.posccaesar.org/2008/06/OWL/RDL#> .
@prefix rdl: <http://data.posccaesar.org/rdl/> .
@prefix pn: <http://www.w3.org/2005/xpath-functions#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
stirdl:R-55da5e9a-a6db-48da-a89e-8d497d086537
rdfs:label "4.96"^^xsd:string ;
rdl:defaultRdsId "R-55da5e9a-a6db-48da-a89e-8d497d086537"^^xsd:string ;
stirdl:RDS1314539 "4.96"^^xsd:float .
stirdl:R-5c2747dd-556e-4497-89e8-263cc4047454
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-5c2747dd-556e-4497-89e8-263cc4047454"^^xsd:string ;
stirdl:RDS1314539 "137.9"^^xsd:float .
stirdl:R-691301e6-a456-467f-b50f-322b078c0e65
rdfs:label "Electronic Module"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1413185365 , stirdl:RDS1422805611 ;
rdl:defaultRdsId "R-691301e6-a456-467f-b50f-322b078c0e65"^^xsd:string ;
stirdl:hasCommunicationStandard
stirdl:R-099ff3de-c36b-4f72-b6e2-2380bdecde98 ;
stirdl:hasLowerLimitPressureMeasuringSpanInstance
stirdl:R-fb3a80a0-19f1-4c7a-aad4-6987dab7bdbe ;
stirdl:hasPercentageAccuracyInstance
stirdl:R-48a737ba-fb1f-40ec-b328-ed753f061c54 ;
stirdl:hasSupplyVoltageRangeInstance
stirdl:R-d49f4b0d-9321-4789-9baf-94119c174763 ;
stirdl:hasUpperLimitElectricalLoadInstance
stirdl:R-3107179f-18ab-47c7-b24f-796b13b2d059 ;
stirdl:hasUpperLimitPressureMeasuringSpanInstance
stirdl:R-cfdbe1e3-aeb7-494a-9491-d47dd6a4c929 .
stirdl:R-099ff3de-c36b-4f72-b6e2-2380bdecde98
a lci:TextString ;
rdfs:label "HART"^^xsd:string ;
rdl:defaultRdsId "R-099ff3de-c36b-4f72-b6e2-2380bdecde98"^^xsd:string .
stirdl:R-da7a17e2-9626-4d8f-bbad-88fa4cf21bc3
a lci:TextString ;
rdfs:label "TEK-00781210"^^xsd:string ;
rdl:defaultRdsId "R-da7a17e2-9626-4d8f-bbad-88fa4cf21bc3"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/10/33/86/TEK-00781210.pdf"^^xsd:string .
stirdl:R-89d3cca2-a4eb-4986-a013-907fb29ddf91
a lci:TextString ;
rdfs:label "HART"^^xsd:string ;
rdl:defaultRdsId "R-89d3cca2-a4eb-4986-a013-907fb29ddf91"^^xsd:string .
stirdl:R-e94600bf-e352-4605-b818-a6390baa844a
rdfs:label "Manifolds"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1413185361 ;
rdl:defaultRdsId "R-e94600bf-e352-4605-b818-a6390baa844a"^^xsd:string .
stirdl:R-03fbdae7-be35-4cba-be57-bd0502c4d51c
rdfs:label "-40 - 80"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13114692 ;
rdl:defaultRdsId "R-03fbdae7-be35-4cba-be57-bd0502c4d51c"^^xsd:string ;
stirdl:hasLowerLimitTemperature
stirdl:R-0b24cc0b-f11d-41f3-b00a-a4a23b60ad6f ;
stirdl:hasUpperLimitTemperature
stirdl:R-fd8e6f32-ebbe-48dc-9c33-ba4830492a0a .
stirdl:R-ba61b549-367e-478a-b131-152ec319a55b
rdfs:label "-137.9"^^xsd:string ;
rdl:defaultRdsId "R-ba61b549-367e-478a-b131-152ec319a55b"^^xsd:string ;
stirdl:RDS1314539 "-137.9"^^xsd:float .
stirdl:hasOperationAndMaintenanceInstructionsReference
rdfs:label "Operation and maintenance instructions"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS1465585571 .
stirdl:R-94afd485-6db1-42a3-83dd-49e68487efc4
a lci:TextString ;
rdfs:label "TEK-00781210"^^xsd:string ;
rdl:defaultRdsId "R-94afd485-6db1-42a3-83dd-49e68487efc4"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/10/33/86/TEK-00781210.pdf"^^xsd:string .
stirdl:R-9055a8e9-2145-4234-b2e6-4cffde25e974
a lci:TextString ;
rdfs:label "Rosemount 3051 Pressure Transmitter with 4-20 mA HART Revision 5 and 7 Selectable Protocol"^^xsd:string ;
rdl:defaultRdsId "R-9055a8e9-2145-4234-b2e6-4cffde25e974"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/03/85/27/26/00809-0100-4007_AB_2013.pdf"^^xsd:string .
stirdl:R-14f624bf-f1dd-42c0-8432-529822a667cb
rdfs:label "Silicone oil"^^xsd:string ;
rdfs:subClassOf stirdl:RDS6696832 ;
rdl:defaultRdsId "R-14f624bf-f1dd-42c0-8432-529822a667cb"^^xsd:string .
stirdl:R-cfdbe1e3-aeb7-494a-9491-d47dd6a4c929
rdfs:label "4.96"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-cfdbe1e3-aeb7-494a-9491-d47dd6a4c929"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-55da5e9a-a6db-48da-a89e-8d497d086537 .
stirdl:R-42b5cbbc-edf9-4e0d-9abf-c769a4defa93
rdfs:label "0.055"^^xsd:string ;
stirdl:RDS1317959 "0.055"^^xsd:float .
stirdl:R-9e9fd316-0827-4e14-9176-7e5f81682f1d
rdfs:label "3.3"^^xsd:string ;
stirdl:RDS1328669 "3.3"^^xsd:float .
stirdl:R-601bbc68-ad67-4576-b9a1-8797ac79c7db
a lci:TextString ;
rdfs:label "Rosemount 3051 Pressure Transmitter with 4-20 mA HART Revision 5 and 7 Selectable Protocol"^^xsd:string ;
rdl:defaultRdsId "R-601bbc68-ad67-4576-b9a1-8797ac79c7db"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/03/85/27/26/00809-0100-4007_AB_2013.pdf"^^xsd:string .
stirdl:hasUpperLimitPressure
rdfs:subPropertyOf lci:hasUpperLimit .
stirdl:hasPowerConsumptionRangeInstance
rdfs:subPropertyOf stirdl:hasPowerConsumptionRange .
stirdl:R-aae5ce06-e7d0-458c-b036-c8694536f903
rdfs:label "0.01"^^xsd:string ;
rdl:defaultRdsId "R-aae5ce06-e7d0-458c-b036-c8694536f903"^^xsd:string ;
stirdl:RDS1314539 "0.01"^^xsd:float .
stirdl:R-98647660-65e7-4972-af15-0431b2478cdd
a lci:TextString ;
rdfs:label "TEK-00781210"^^xsd:string ;
rdl:defaultRdsId "R-98647660-65e7-4972-af15-0431b2478cdd"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/10/33/86/TEK-00781210.pdf"^^xsd:string .
stirdl:R-a2ac40e5-4dca-4f83-8e0f-28f035f06a8f
a lci:TextString ;
rdfs:label "TEK-00781210"^^xsd:string ;
rdl:defaultRdsId "R-a2ac40e5-4dca-4f83-8e0f-28f035f06a8f"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/10/33/86/TEK-00781210.pdf"^^xsd:string .
stirdl:R-bf914140-3d62-4327-8bd0-5a2dcc12c5cc
rdfs:label "-137.9 - 137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-bf914140-3d62-4327-8bd0-5a2dcc12c5cc"^^xsd:string ;
stirdl:hasLowerLimitPressure stirdl:R-fba79e41-ee91-4125-9f34-9ee1f964dd25 ;
stirdl:hasUpperLimitPressure stirdl:R-978fb95c-4fe1-471a-aeff-4bbf810a92a8 .
stirdl:R-fba79e41-ee91-4125-9f34-9ee1f964dd25
rdfs:label "-137.9"^^xsd:string ;
rdl:defaultRdsId "R-fba79e41-ee91-4125-9f34-9ee1f964dd25"^^xsd:string ;
stirdl:RDS1348919 "-137.9"^^xsd:float .
stirdl:R-67245b6d-26f8-44d4-a3a9-cfdae108a96a
a lci:TextString ;
rdfs:label "General Arrangement 3051CD-0305RC5"^^xsd:string ;
rdl:defaultRdsId "R-67245b6d-26f8-44d4-a3a9-cfdae108a96a"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/20/56/21/3051CD_0305RC5.pdf"^^xsd:string .
stirdl:R-c2fb905b-3bb6-4d80-b1e4-c8076f1d267b
rdfs:label "-20 - 80"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13114692 ;
rdl:defaultRdsId "R-c2fb905b-3bb6-4d80-b1e4-c8076f1d267b"^^xsd:string ;
stirdl:hasLowerLimitTemperature
stirdl:R-f8802a27-9c6b-4e54-a212-4297c67c0182 ;
stirdl:hasUpperLimitTemperature
stirdl:R-afa0aeb6-d886-4af4-b64a-10b40d60d474 .
stirdl:R-848717ba-bc4b-435b-bbd7-f88f822833f5
rdfs:label "-20 - 80"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13114692 ;
rdl:defaultRdsId "R-848717ba-bc4b-435b-bbd7-f88f822833f5"^^xsd:string ;
stirdl:hasLowerLimitTemperature
stirdl:R-9733bca9-dfc5-4dde-8711-1ae098fb853b ;
stirdl:hasUpperLimitTemperature
stirdl:R-2946cde6-9cf7-4fb2-856f-c43e5680bdf3 .
stirdl:hasUpperLimitTemperature
rdfs:subPropertyOf lci:hasUpperLimit .
stirdl:R-4117bb3a-2455-40f1-acdb-c1c2d450794d
rdfs:label "-20 - 80"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13114692 ;
rdl:defaultRdsId "R-4117bb3a-2455-40f1-acdb-c1c2d450794d"^^xsd:string ;
stirdl:hasLowerLimitTemperature
stirdl:R-22c0e605-02c9-4508-a15e-66b0f379823f ;
stirdl:hasUpperLimitTemperature
stirdl:R-a3c39fe6-fc1e-4ff7-9f12-4f82f4c41739 .
stirdl:hasLowerLimitPressure
rdfs:subPropertyOf lci:hasLowerLimit .
stirdl:R-e92e53b6-1838-40ff-be77-1b5d75bb10df
rdfs:label "2.48"^^xsd:string ;
rdl:defaultRdsId "R-e92e53b6-1838-40ff-be77-1b5d75bb10df"^^xsd:string ;
stirdl:RDS1348919 "2.48"^^xsd:float .
stirdl:R-47fc14d1-de6b-4aec-8e16-a0544a1075d5
rdfs:label "-2.48 - 2.48"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-47fc14d1-de6b-4aec-8e16-a0544a1075d5"^^xsd:string ;
stirdl:hasLowerLimitPressure stirdl:R-98606a31-5010-422d-8b6f-a9af33f0b6b7 ;
stirdl:hasUpperLimitPressure stirdl:R-e92e53b6-1838-40ff-be77-1b5d75bb10df .
stirdl:R-31f74899-c615-4032-b7b2-931aa4535b9d
rdfs:label "137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-31f74899-c615-4032-b7b2-931aa4535b9d"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-b060b200-2476-456a-9c46-5a5f6c54ed65 .
stirdl:R-fca3172d-9d1b-4959-9f9b-9b1de25a2017
a lci:TextString ;
rdfs:label "NACE MR 01-75"^^xsd:string ;
rdl:defaultRdsId "R-fca3172d-9d1b-4959-9f9b-9b1de25a2017"^^xsd:string ;
rdl:hasDefinition "NACE MR 01-75"^^xsd:string .
stirdl:R-4b1e8a33-c8b7-432d-9e1c-a4ed30ac2dfb
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-4b1e8a33-c8b7-432d-9e1c-a4ed30ac2dfb"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-e7219ea0-fef8-45a4-a750-c6a21a4a65f2
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-e7219ea0-fef8-45a4-a750-c6a21a4a65f2"^^xsd:string ;
stirdl:RDS1314539 "137.9"^^xsd:float .
stirdl:R-fb3a80a0-19f1-4c7a-aad4-6987dab7bdbe
rdfs:label "0.01"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-fb3a80a0-19f1-4c7a-aad4-6987dab7bdbe"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-aae5ce06-e7d0-458c-b036-c8694536f903 .
stirdl:hasAmbientOperatingTemperatureRangeInstance
rdfs:subPropertyOf stirdl:hasAmbientOperatingTemperatureRange .
stirdl:R-08669971-8325-43fe-a299-2491741b0b6e
rdfs:label "0.055"^^xsd:string ;
stirdl:RDS1317959 "0.055"^^xsd:float .
stirdl:R-48a737ba-fb1f-40ec-b328-ed753f061c54
rdfs:label "+/- 0.04 %"^^xsd:string ;
rdfs:subClassOf stirdl:RDS627075900 ;
rdl:defaultRdsId "R-48a737ba-fb1f-40ec-b328-ed753f061c54"^^xsd:string ;
stirdl:hasLowerLimitPercentage stirdl:R-54dc2a9c-1a5a-4055-b823-bb49f9b618fd ;
stirdl:hasUpperLimitPercentage stirdl:R-997d9643-3647-4b12-b4a4-8f1638e4d6e7 .
stirdl:R-244953b9-5a60-44c7-9c21-b24055551f04
rdfs:label "Diaphragm Seals"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1469942981 ;
rdl:defaultRdsId "R-244953b9-5a60-44c7-9c21-b24055551f04"^^xsd:string .
stirdl:R-d4ce5052-ba03-4da8-a6c5-305a717149ab
rdfs:label "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1051694 , stirdl:RDS1015109 , stirdl:RDS1400191931 , stirdl:RDS1007459 , stirdl:RDS1400865471 , stirdl:RDS38822373235 ;
rdl:defaultRdsId "R-d4ce5052-ba03-4da8-a6c5-305a717149ab"^^xsd:string ;
lci:assembledPartOf stirdl:R-2a09b8ac-acda-4656-9734-699a0ac5f6bf , stirdl:R-7f044c79-b952-40c0-b1c7-8ccc2c798c22 , stirdl:R-b23deb75-97d8-4351-9c1c-e5f38df79b8d , stirdl:R-244953b9-5a60-44c7-9c21-b24055551f04 , stirdl:R-a8097baf-e157-4ad3-a469-36bcfd4da733 ;
lci:identifiedBy stirdl:R-2c82ed55-0d19-4b15-baf1-fa6b54282c84 ;
stirdl:hasAmbientOperatingTemperatureRangeInstance
stirdl:R-4117bb3a-2455-40f1-acdb-c1c2d450794d ;
stirdl:hasApprovalAuthority ""^^xsd:string ;
stirdl:hasCEIdentificationCode "CE1180"^^xsd:string ;
stirdl:hasInstallationAndRemovalProcedureReference
stirdl:R-05e3704d-e67c-45d1-9abf-683a8f62f58c ;
stirdl:hasManufacturingCompanyName
"EMERSON PROCESS MANAGEMENT"^^xsd:string ;
stirdl:hasMeasurementAndArrangementDrawingReference
stirdl:R-a91e9ad7-a5e1-444d-a9a0-8caf3b2bdbc9 , stirdl:R-da7a17e2-9626-4d8f-bbad-88fa4cf21bc3 ;
stirdl:hasOperationAndMaintenanceInstructionsReference
stirdl:R-fd053557-7ea9-485d-95ba-f86e44e80ee7 ;
stirdl:hasPowerConsumptionRangeInstance
stirdl:R-0c3a0248-74a6-4cfb-b5f9-06a7ddef9b5f ;
stirdl:hasProductDescriptionAndOrderingInformationReference
stirdl:R-725513e4-c1d8-4f03-85dc-8ab91b4bae6d ;
stirdl:hasSectionalDrawingReference
stirdl:R-d58f31a8-3c29-4a96-8182-7119d43ab548 , stirdl:R-c1f53a97-20fa-4267-97ce-55bcf79e2d59 ;
stirdl:hasWeightRangeInstance stirdl:R-14fc1c6c-decf-4792-8a18-bebcb0c046e3 .
stirdl:R-2a09b8ac-acda-4656-9734-699a0ac5f6bf
rdfs:label "Electronic Module"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1413185363 , stirdl:RDS1422805611 , stirdl:RDS1413185365 ;
rdl:defaultRdsId "R-2a09b8ac-acda-4656-9734-699a0ac5f6bf"^^xsd:string ;
stirdl:hasCommunicationStandard
stirdl:R-6b401e4a-3e5f-4a55-ace6-9aa59ed4b035 ;
stirdl:hasLowerLimitPressureMeasuringSpanInstance
stirdl:R-1705ebab-bff7-4f6a-bb81-57ccf543c1eb ;
stirdl:hasPercentageAccuracyInstance
stirdl:R-334d40cc-6300-4702-98f3-81bd9e0eb230 ;
stirdl:hasUpperLimitPressureMeasuringSpanInstance
stirdl:R-31f74899-c615-4032-b7b2-931aa4535b9d .
stirdl:hasInstallationAndRemovalProcedureReference
rdfs:label "Installation and removal procedures"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS1465580191 .
stirdl:R-7592076a-0d3f-4b81-9d62-cc4a3a9e6d6e
rdfs:label "Supply Connection"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1459162771 ;
rdl:defaultRdsId "R-7592076a-0d3f-4b81-9d62-cc4a3a9e6d6e"^^xsd:string .
stirdl:R-5686bdb3-d4b3-4833-9017-f302800741b4
rdfs:label "3.3"^^xsd:string ;
stirdl:RDS1328669 "3.3"^^xsd:float .
stirdl:hasUpperLimitVoltage
rdfs:subPropertyOf lci:hasUpperLimit .
stirdl:R-978fb95c-4fe1-471a-aeff-4bbf810a92a8
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-978fb95c-4fe1-471a-aeff-4bbf810a92a8"^^xsd:string ;
stirdl:RDS1348919 "137.9"^^xsd:float .
stirdl:R-fba93822-c441-4a96-bda6-1b0e2e9c7a8c
a lci:TextString ;
rdfs:label "TEK-00781210"^^xsd:string ;
rdl:defaultRdsId "R-fba93822-c441-4a96-bda6-1b0e2e9c7a8c"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/10/33/86/TEK-00781210.pdf"^^xsd:string .
stirdl:R-56ecfb43-765c-4ae9-bff5-6d4c230ca413
rdfs:label "Transmitter Housing"^^xsd:string ;
rdfs:subClassOf stirdl:RDS573609921 ;
rdl:defaultRdsId "R-56ecfb43-765c-4ae9-bff5-6d4c230ca413"^^xsd:string ;
lci:featurePartOf stirdl:R-5292e99e-b0d1-4514-aeb0-fed5175f7d96 .
stirdl:hasLowerLimitTemperature
rdfs:subPropertyOf lci:hasLowerLimit .
stirdl:R-4c370fa9-1877-4a84-b776-d79307c958c5
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-14fc1c6c-decf-4792-8a18-bebcb0c046e3
rdfs:label "3.3"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1468222121 ;
rdl:defaultRdsId "R-14fc1c6c-decf-4792-8a18-bebcb0c046e3"^^xsd:string ;
stirdl:hasNormalWeight stirdl:R-9e9fd316-0827-4e14-9176-7e5f81682f1d .
stirdl:R-b060b200-2476-456a-9c46-5a5f6c54ed65
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-b060b200-2476-456a-9c46-5a5f6c54ed65"^^xsd:string ;
stirdl:RDS1314539 "137.9"^^xsd:float .
stirdl:R-cf639549-7523-4f60-9cf9-7146be1ebd93
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-aec27ca6-cedb-40bb-9d58-400cbc87a5c0
rdfs:label "4.3"^^xsd:string ;
stirdl:RDS1328669 "4.3"^^xsd:float .
stirdl:R-497e2181-0c86-4c1a-96ff-96bfad856432
rdfs:label "D.C. 210 SILICONE OIL"^^xsd:string ;
rdfs:subClassOf stirdl:RDS6696939 ;
rdl:defaultRdsId "R-497e2181-0c86-4c1a-96ff-96bfad856432"^^xsd:string .
stirdl:hasLowerLimitPower
rdfs:subPropertyOf lci:hasLowerLimit .
stirdl:R-51d23f73-f443-456d-bef8-01dec12b0449
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-e84c2ee0-4521-46f2-ac89-6ef6b9b1e9fb
rdfs:label "-137.9"^^xsd:string ;
rdl:defaultRdsId "R-e84c2ee0-4521-46f2-ac89-6ef6b9b1e9fb"^^xsd:string ;
stirdl:RDS1348919 "-137.9"^^xsd:float .
stirdl:R-8bca73bf-7fc5-483e-85a6-23823820a78f
rdfs:label "-137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-8bca73bf-7fc5-483e-85a6-23823820a78f"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-ba61b549-367e-478a-b131-152ec319a55b .
stirdl:R-65bd30cb-8bf4-4521-b139-125c2ba955ef
rdfs:label "137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-65bd30cb-8bf4-4521-b139-125c2ba955ef"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-e7219ea0-fef8-45a4-a750-c6a21a4a65f2 .
stirdl:R-f4f4726a-ebef-47e2-8271-4ee5b4f57d0c
a lci:TextString , stirdl:RDS1386450251 ;
rdfs:label "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string ;
rdl:hasDefinition "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string .
stirdl:R-0e99e3b6-6073-4d64-8464-b96b89726bee
rdfs:label "Silicone oil"^^xsd:string ;
rdfs:subClassOf stirdl:RDS6696832 ;
rdl:defaultRdsId "R-0e99e3b6-6073-4d64-8464-b96b89726bee"^^xsd:string .
stirdl:R-0e8f446a-a287-4c78-a979-755d5cbcae86
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-0e8f446a-a287-4c78-a979-755d5cbcae86"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-407399e2-3764-4915-9911-400ecca05b0e
rdfs:label "0.055"^^xsd:string ;
stirdl:RDS1317959 "0.055"^^xsd:float .
stirdl:R-0b24cc0b-f11d-41f3-b00a-a4a23b60ad6f
rdfs:label "-40"^^xsd:string ;
stirdl:RDS1322684 "-40"^^xsd:float .
stirdl:R-ac03f413-7583-4cf8-9e4d-84f9f52d7ba6
rdfs:label "3.3"^^xsd:string ;
stirdl:RDS1328669 "3.3"^^xsd:float .
stirdl:R-334d40cc-6300-4702-98f3-81bd9e0eb230
rdfs:label "+/- 0.055 %"^^xsd:string ;
rdfs:subClassOf stirdl:RDS627075900 ;
rdl:defaultRdsId "R-334d40cc-6300-4702-98f3-81bd9e0eb230"^^xsd:string ;
stirdl:hasLowerLimitPercentage stirdl:R-14c293ab-97aa-4391-b5fa-6c8d8b9231a9 ;
stirdl:hasUpperLimitPercentage stirdl:R-407399e2-3764-4915-9911-400ecca05b0e .
stirdl:R-ab8fcb54-442f-4d7a-a736-1c13321c555c
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-ab8fcb54-442f-4d7a-a736-1c13321c555c"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-a3c39fe6-fc1e-4ff7-9f12-4f82f4c41739
rdfs:label "80"^^xsd:string ;
stirdl:RDS1322684 "80"^^xsd:float .
stirdl:R-4142c6d7-fbcd-48b3-8eec-01c17f3d89c3
rdfs:label "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string ;
rdfs:subClassOf stirdl:RDS38822373235 , stirdl:RDS1400865471 , stirdl:RDS1015109 , stirdl:RDS1400191931 , stirdl:RDS1007459 , stirdl:RDS1051694 ;
rdl:defaultRdsId "R-4142c6d7-fbcd-48b3-8eec-01c17f3d89c3"^^xsd:string ;
lci:assembledPartOf stirdl:R-58c63af8-22f5-4ba1-ab5b-a034828d7ef7 , stirdl:R-6cbb375e-2b97-4670-925c-78eeabc02ce1 , stirdl:R-991d4209-7585-4771-b0ab-968df9ed6f82 , stirdl:R-ecf10688-e3c4-4375-a8a6-7d32c4a23a2c ;
lci:identifiedBy stirdl:R-f4f4726a-ebef-47e2-8271-4ee5b4f57d0c ;
stirdl:hasAmbientOperatingTemperatureRangeInstance
stirdl:R-848717ba-bc4b-435b-bbd7-f88f822833f5 ;
stirdl:hasCEIdentificationCode "CE1180"^^xsd:string ;
stirdl:hasInstallationAndRemovalProcedureReference
stirdl:R-4b1e8a33-c8b7-432d-9e1c-a4ed30ac2dfb ;
stirdl:hasManufacturingCompanyName
"EMERSON PROCESS MANAGEMENT"^^xsd:string ;
stirdl:hasMeasurementAndArrangementDrawingReference
stirdl:R-a2ac40e5-4dca-4f83-8e0f-28f035f06a8f , stirdl:R-05669736-1609-45b6-8728-aed9eb5ea8ec ;
stirdl:hasOperationAndMaintenanceInstructionsReference
stirdl:R-ab8fcb54-442f-4d7a-a736-1c13321c555c ;
stirdl:hasPowerConsumptionRangeInstance
stirdl:R-00e46e0e-fdec-40c2-872c-4e890124422a ;
stirdl:hasProductDescriptionAndOrderingInformationReference
stirdl:R-24ab43ba-ae85-46bb-9573-46d7e4f54d88 ;
stirdl:hasSectionalDrawingReference
stirdl:R-98647660-65e7-4972-af15-0431b2478cdd , stirdl:R-7845b7dc-c228-4d52-9d00-59f38ad2dc3d ;
stirdl:hasWeightRangeInstance stirdl:R-4ecff63d-bc18-44ba-9405-31409cc81472 .
stirdl:R-d4642318-8299-4436-925b-8fa4f9606850
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-d4642318-8299-4436-925b-8fa4f9606850"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-98a95791-a930-4a01-bb43-f0b97f183c24
rdfs:label "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1400865471 , stirdl:RDS1007459 , stirdl:RDS1051694 , stirdl:RDS1015109 , stirdl:RDS38822373235 , stirdl:RDS1400191931 ;
rdl:defaultRdsId "R-98a95791-a930-4a01-bb43-f0b97f183c24"^^xsd:string ;
lci:assembledPartOf stirdl:R-36aeb911-0512-4c64-8a56-159fe7d0398f , stirdl:R-08687946-b531-4766-a0a0-27b6b9ef0910 , stirdl:R-02d29187-83bf-4c57-8369-75afd4001610 , stirdl:R-779876ad-009d-448e-a3c3-310a799ac369 , stirdl:R-4af100a6-6a43-4d68-8c2e-7c695e161ada ;
lci:identifiedBy stirdl:R-4ea8855f-1094-452b-b967-8459c104cf54 ;
stirdl:hasAmbientOperatingTemperatureRangeInstance
stirdl:R-c2fb905b-3bb6-4d80-b1e4-c8076f1d267b ;
stirdl:hasApprovalAuthority ""^^xsd:string ;
stirdl:hasCEIdentificationCode "CE1180"^^xsd:string ;
stirdl:hasInstallationAndRemovalProcedureReference
stirdl:R-76ea73b9-eb6c-4345-ab8d-1549f17e49ef ;
stirdl:hasManufacturingCompanyName
"EMERSON PROCESS MANAGEMENT"^^xsd:string ;
stirdl:hasMeasurementAndArrangementDrawingReference
stirdl:R-fba93822-c441-4a96-bda6-1b0e2e9c7a8c , stirdl:R-1c1d00d9-072d-4a5a-8103-08a217815ddb ;
stirdl:hasOperationAndMaintenanceInstructionsReference
stirdl:R-d4642318-8299-4436-925b-8fa4f9606850 ;
stirdl:hasPowerConsumptionRangeInstance
stirdl:R-5958b2be-5a6f-4f45-8f63-e867591d9ca0 ;
stirdl:hasProductDescriptionAndOrderingInformationReference
stirdl:R-0e8f446a-a287-4c78-a979-755d5cbcae86 ;
stirdl:hasSectionalDrawingReference
stirdl:R-2db04bb5-8332-49be-8df3-9d1da97895f6 , stirdl:R-94afd485-6db1-42a3-83dd-49e68487efc4 ;
stirdl:hasWeightRangeInstance stirdl:R-d08958db-6690-45c4-9236-6361d3c422cf .
stirdl:R-6bf0ce53-2238-4611-8fbc-ac6ee72b9ec1
a lci:TextString ;
rdfs:label "HART"^^xsd:string ;
rdl:defaultRdsId "R-6bf0ce53-2238-4611-8fbc-ac6ee72b9ec1"^^xsd:string .
stirdl:R-14c293ab-97aa-4391-b5fa-6c8d8b9231a9
rdfs:label "-0.055"^^xsd:string ;
stirdl:RDS1317959 "-0.055"^^xsd:float .
stirdl:hasUpperLimitPower
rdfs:subPropertyOf lci:hasUpperLimit .
stirdl:R-9708b873-ed19-4be5-a107-e0216d9d0fa4
rdfs:label "-137.9 - 137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-9708b873-ed19-4be5-a107-e0216d9d0fa4"^^xsd:string ;
stirdl:hasLowerLimitPressure stirdl:R-88b5314e-c1ac-4c6a-a638-70793671a130 ;
stirdl:hasUpperLimitPressure stirdl:R-bf304deb-ef0c-462e-8bb1-ab37276007a9 .
stirdl:R-ecf10688-e3c4-4375-a8a6-7d32c4a23a2c
rdfs:label "Transmitter Housing"^^xsd:string ;
rdfs:subClassOf stirdl:RDS573609921 ;
rdl:defaultRdsId "R-ecf10688-e3c4-4375-a8a6-7d32c4a23a2c"^^xsd:string ;
lci:featurePartOf stirdl:R-8219ae2a-4e2d-4cf9-9cb0-18ce180970b8 .
stirdl:R-2db04bb5-8332-49be-8df3-9d1da97895f6
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-2db04bb5-8332-49be-8df3-9d1da97895f6"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-0c3a0248-74a6-4cfb-b5f9-06a7ddef9b5f
rdfs:label "10 - 10"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1411651951 ;
rdl:defaultRdsId "R-0c3a0248-74a6-4cfb-b5f9-06a7ddef9b5f"^^xsd:string ;
stirdl:hasLowerLimitPower stirdl:R-7934e8bb-2109-451a-a30f-bb3cdae422b5 ;
stirdl:hasUpperLimitPower stirdl:R-cf639549-7523-4f60-9cf9-7146be1ebd93 .
stirdl:R-cb4abe7f-dabe-489b-9704-c7bb919177da
rdfs:label "Pressure Transmitter Body"^^xsd:string ;
rdfs:subClassOf stirdl:RDS419849 , stirdl:RDS820709 ;
rdl:defaultRdsId "R-cb4abe7f-dabe-489b-9704-c7bb919177da"^^xsd:string ;
stirdl:hasSourServiceSpecification
stirdl:R-fca3172d-9d1b-4959-9f9b-9b1de25a2017 .
stirdl:R-218f25f1-51ba-4677-b973-946975250f94
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-d49f4b0d-9321-4789-9baf-94119c174763
rdfs:label "10.5 - 42.4"^^xsd:string ;
rdfs:subClassOf stirdl:RDS16805172 ;
rdl:defaultRdsId "R-d49f4b0d-9321-4789-9baf-94119c174763"^^xsd:string ;
stirdl:hasLowerLimitVoltage stirdl:R-589bba7d-e117-4426-bc40-96adf38cdfeb ;
stirdl:hasUpperLimitVoltage stirdl:R-08377526-2215-4b52-856e-be6db86a9561 .
stirdl:R-0f9ab439-eb2a-43f6-9a8b-4d340162291c
rdfs:label "Supply Connection"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1459162771 ;
rdl:defaultRdsId "R-0f9ab439-eb2a-43f6-9a8b-4d340162291c"^^xsd:string .
stirdl:R-e2b811f4-6747-4700-8bc6-cd569012393d
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-e2b811f4-6747-4700-8bc6-cd569012393d"^^xsd:string ;
stirdl:RDS1348919 "137.9"^^xsd:float .
stirdl:R-b23deb75-97d8-4351-9c1c-e5f38df79b8d
rdfs:label "Pressure Element"^^xsd:string ;
rdfs:subClassOf stirdl:RDS708344 , stirdl:RDS427634 , stirdl:RDS462104 ;
rdl:defaultRdsId "R-b23deb75-97d8-4351-9c1c-e5f38df79b8d"^^xsd:string ;
stirdl:hasAdjustablePressureMeasuringRangeInstance
stirdl:R-c7bf2219-edb9-432a-a86b-b8dd01d40b81 ;
stirdl:hasFillingFluid stirdl:R-0e99e3b6-6073-4d64-8464-b96b89726bee .
stirdl:R-88b5314e-c1ac-4c6a-a638-70793671a130
rdfs:label "-137.9"^^xsd:string ;
rdl:defaultRdsId "R-88b5314e-c1ac-4c6a-a638-70793671a130"^^xsd:string ;
stirdl:RDS1348919 "-137.9"^^xsd:float .
stirdl:R-2c82ed55-0d19-4b15-baf1-fa6b54282c84
a lci:TextString , stirdl:RDS1386450251 ;
rdfs:label "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string ;
rdl:hasDefinition "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string .
stirdl:R-02d29187-83bf-4c57-8369-75afd4001610
rdfs:label "Diaphragm Seals"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1469942981 ;
rdl:defaultRdsId "R-02d29187-83bf-4c57-8369-75afd4001610"^^xsd:string .
stirdl:R-2946cde6-9cf7-4fb2-856f-c43e5680bdf3
rdfs:label "80"^^xsd:string ;
stirdl:RDS1322684 "80"^^xsd:float .
stirdl:hasSectionalDrawingReference
rdfs:label "Sectional drawing"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS2102026741 .
stirdl:R-9733bca9-dfc5-4dde-8711-1ae098fb853b
rdfs:label "-20"^^xsd:string ;
stirdl:RDS1322684 "-20"^^xsd:float .
stirdl:hasNormalPressureInstance
rdfs:subPropertyOf stirdl:RDS6949380 .
stirdl:R-fd053557-7ea9-485d-95ba-f86e44e80ee7
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-fd053557-7ea9-485d-95ba-f86e44e80ee7"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-4af100a6-6a43-4d68-8c2e-7c695e161ada
rdfs:label "Pressure Transmitter Body"^^xsd:string ;
rdfs:subClassOf stirdl:RDS419849 , stirdl:RDS820709 ;
rdl:defaultRdsId "R-4af100a6-6a43-4d68-8c2e-7c695e161ada"^^xsd:string .
stirdl:R-76ea73b9-eb6c-4345-ab8d-1549f17e49ef
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-76ea73b9-eb6c-4345-ab8d-1549f17e49ef"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-589bba7d-e117-4426-bc40-96adf38cdfeb
rdfs:label "10.5"^^xsd:string ;
stirdl:RDS1347974 "10.5"^^xsd:float .
stirdl:R-afa0aeb6-d886-4af4-b64a-10b40d60d474
rdfs:label "80"^^xsd:string ;
stirdl:RDS1322684 "80"^^xsd:float .
stirdl:R-fd8e6f32-ebbe-48dc-9c33-ba4830492a0a
rdfs:label "80"^^xsd:string ;
stirdl:RDS1322684 "80"^^xsd:float .
stirdl:R-05e3704d-e67c-45d1-9abf-683a8f62f58c
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-05e3704d-e67c-45d1-9abf-683a8f62f58c"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-3107179f-18ab-47c7-b24f-796b13b2d059
rdfs:label "1387"^^xsd:string ;
rdl:defaultRdsId "R-3107179f-18ab-47c7-b24f-796b13b2d059"^^xsd:string ;
stirdl:RDS1338524 "1387"^^xsd:float .
stirdl:R-bf304deb-ef0c-462e-8bb1-ab37276007a9
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-bf304deb-ef0c-462e-8bb1-ab37276007a9"^^xsd:string ;
stirdl:RDS1348919 "137.9"^^xsd:float .
stirdl:R-06d3b54b-c812-4ff2-9504-376f4dec6400
rdfs:label "-137.9"^^xsd:string ;
rdl:defaultRdsId "R-06d3b54b-c812-4ff2-9504-376f4dec6400"^^xsd:string ;
stirdl:RDS1314539 "-137.9"^^xsd:float .
stirdl:R-1c1d00d9-072d-4a5a-8103-08a217815ddb
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-1c1d00d9-072d-4a5a-8103-08a217815ddb"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-6cbb375e-2b97-4670-925c-78eeabc02ce1
rdfs:label "Pressure Transmitter Body"^^xsd:string ;
rdfs:subClassOf stirdl:RDS419849 , stirdl:RDS820709 ;
rdl:defaultRdsId "R-6cbb375e-2b97-4670-925c-78eeabc02ce1"^^xsd:string .
stirdl:hasNormalWeight
rdfs:subPropertyOf stirdl:RDS7601554 .
stirdl:R-36aeb911-0512-4c64-8a56-159fe7d0398f
rdfs:label "Electronic Module"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1413185363 , stirdl:RDS1413185365 , stirdl:RDS1422805611 ;
rdl:defaultRdsId "R-36aeb911-0512-4c64-8a56-159fe7d0398f"^^xsd:string ;
stirdl:hasCommunicationStandard
stirdl:R-6bf0ce53-2238-4611-8fbc-ac6ee72b9ec1 ;
stirdl:hasLowerLimitPressureMeasuringSpanInstance
stirdl:R-8ca0ca8e-a8a7-4da6-88ff-e00090bf3f6c ;
stirdl:hasPercentageAccuracyInstance
stirdl:R-730d530b-fc70-4dd2-91c8-e8b6e9a86fb3 ;
stirdl:hasUpperLimitPressureMeasuringSpanInstance
stirdl:R-46e581eb-1ff4-4b74-ba39-61b4736326bc .
stirdl:hasSourServiceSpecification
rdfs:label "Sour Service Specification"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS1416766731 .
stirdl:hasMeasurementAndArrangementDrawingReference
rdfs:label "Measurement and arrangements drawing"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS1465582611 .
stirdl:R-54dc2a9c-1a5a-4055-b823-bb49f9b618fd
rdfs:label "-0.04"^^xsd:string ;
stirdl:RDS1317959 "-0.04"^^xsd:float .
stirdl:R-d58f31a8-3c29-4a96-8182-7119d43ab548
a lci:TextString ;
rdfs:label "TEK-00781210"^^xsd:string ;
rdl:defaultRdsId "R-d58f31a8-3c29-4a96-8182-7119d43ab548"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/10/33/86/TEK-00781210.pdf"^^xsd:string .
stirdl:hasCEIdentificationCode
a stirdl:RDS1387343801 .
stirdl:R-4ea8855f-1094-452b-b967-8459c104cf54
a stirdl:RDS1386450251 , lci:TextString ;
rdfs:label "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string ;
rdl:hasDefinition "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string .
stirdl:R-44440222-eb83-4fc3-b2a1-35ba783cacad
a lci:TextString , stirdl:RDS1386450251 ;
rdfs:label "3051CD3A02A1KM5I1P1S5Q4Q8HR7"^^xsd:string ;
rdl:hasDefinition "3051CD3A02A1KM5I1P1S5Q4Q8HR7"^^xsd:string .
stirdl:R-37173c4a-3e46-4108-86ba-7c3ba9f2efec
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-05669736-1609-45b6-8728-aed9eb5ea8ec
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-05669736-1609-45b6-8728-aed9eb5ea8ec"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-7f044c79-b952-40c0-b1c7-8ccc2c798c22
rdfs:label "Pressure Transmitter Body"^^xsd:string ;
rdfs:subClassOf stirdl:RDS820709 , stirdl:RDS419849 ;
rdl:defaultRdsId "R-7f044c79-b952-40c0-b1c7-8ccc2c798c22"^^xsd:string .
stirdl:hasAdjustablePressureMeasuringRangeInstance
rdfs:subPropertyOf stirdl:hasAdjustablePressureMeasuringRange .
stirdl:R-779876ad-009d-448e-a3c3-310a799ac369
rdfs:label "Transmitter Housing"^^xsd:string ;
rdfs:subClassOf stirdl:RDS573609921 ;
rdl:defaultRdsId "R-779876ad-009d-448e-a3c3-310a799ac369"^^xsd:string ;
lci:featurePartOf stirdl:R-0f9ab439-eb2a-43f6-9a8b-4d340162291c .
stirdl:R-6b401e4a-3e5f-4a55-ace6-9aa59ed4b035
a lci:TextString ;
rdfs:label "HART"^^xsd:string ;
rdl:defaultRdsId "R-6b401e4a-3e5f-4a55-ace6-9aa59ed4b035"^^xsd:string .
stirdl:R-5eb3a525-6c61-4786-b587-310524445cb6
rdfs:label "3051CD3A02A1KM5I1P1S5Q4Q8HR7"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1015109 , stirdl:RDS1007459 , stirdl:RDS1400865471 , stirdl:RDS1051694 , stirdl:RDS38822373235 , stirdl:RDS1400191931 ;
rdl:defaultRdsId "R-5eb3a525-6c61-4786-b587-310524445cb6"^^xsd:string ;
lci:assembledPartOf stirdl:R-691301e6-a456-467f-b50f-322b078c0e65 , stirdl:R-e94600bf-e352-4605-b818-a6390baa844a , stirdl:R-cb4abe7f-dabe-489b-9704-c7bb919177da , stirdl:R-56ecfb43-765c-4ae9-bff5-6d4c230ca413 , stirdl:R-aa4e89aa-fc84-4b81-822e-a52febad56ff ;
lci:identifiedBy stirdl:R-44440222-eb83-4fc3-b2a1-35ba783cacad ;
stirdl:hasAmbientOperatingTemperatureRangeInstance
stirdl:R-03fbdae7-be35-4cba-be57-bd0502c4d51c ;
stirdl:hasCEIdentificationCode "CE1180"^^xsd:string ;
stirdl:hasInstallationAndRemovalProcedureReference
stirdl:R-601bbc68-ad67-4576-b9a1-8797ac79c7db ;
stirdl:hasManufacturingCompanyName
"EMERSON PROCESS MANAGEMENT"^^xsd:string ;
stirdl:hasMeasurementAndArrangementDrawingReference
stirdl:R-f47fd88b-0ef2-4ac5-a831-3703c6a73ae4 ;
stirdl:hasOperationAndMaintenanceInstructionsReference
stirdl:R-17c84635-0f8b-4a6e-929d-719f01771772 ;
stirdl:hasPowerConsumptionRangeInstance
stirdl:R-62aa5edc-0b24-4fd8-a878-cbac22e8f2eb ;
stirdl:hasProductDescriptionAndOrderingInformationReference
stirdl:R-9055a8e9-2145-4234-b2e6-4cffde25e974 ;
stirdl:hasSectionalDrawingReference
stirdl:R-67245b6d-26f8-44d4-a3a9-cfdae108a96a ;
stirdl:hasWeightRangeInstance stirdl:R-02d496ca-aa02-478f-8fbc-aab7fbb37026 .
stirdl:R-7845b7dc-c228-4d52-9d00-59f38ad2dc3d
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-7845b7dc-c228-4d52-9d00-59f38ad2dc3d"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-a8097baf-e157-4ad3-a469-36bcfd4da733
rdfs:label "Transmitter Housing"^^xsd:string ;
rdfs:subClassOf stirdl:RDS573609921 ;
rdl:defaultRdsId "R-a8097baf-e157-4ad3-a469-36bcfd4da733"^^xsd:string ;
lci:featurePartOf stirdl:R-7592076a-0d3f-4b81-9d62-cc4a3a9e6d6e .
stirdl:R-f60fe793-bcc2-4789-9e71-b29c4dde21d6
rdfs:label "480"^^xsd:string ;
stirdl:RDS1336634 "480"^^xsd:float .
stirdl:R-9056cc41-88b8-4c09-b428-e296831bef83
rdfs:label "96"^^xsd:string ;
stirdl:RDS1336634 "96"^^xsd:float .
stirdl:R-aa4e89aa-fc84-4b81-822e-a52febad56ff
rdfs:label "Pressure Element"^^xsd:string ;
rdfs:subClassOf stirdl:RDS462104 , stirdl:RDS708344 , stirdl:RDS12837115 ;
rdl:defaultRdsId "R-aa4e89aa-fc84-4b81-822e-a52febad56ff"^^xsd:string ;
stirdl:hasAdjustablePressureMeasuringRangeInstance
stirdl:R-47fc14d1-de6b-4aec-8e16-a0544a1075d5 ;
stirdl:hasFillingFluid stirdl:R-497e2181-0c86-4c1a-96ff-96bfad856432 .
stirdl:R-730d530b-fc70-4dd2-91c8-e8b6e9a86fb3
rdfs:label "+/- 0.055 %"^^xsd:string ;
rdfs:subClassOf stirdl:RDS627075900 ;
rdl:defaultRdsId "R-730d530b-fc70-4dd2-91c8-e8b6e9a86fb3"^^xsd:string ;
stirdl:hasLowerLimitPercentage stirdl:R-dd54e0bc-8303-4a00-8b4f-8bc388f130b4 ;
stirdl:hasUpperLimitPercentage stirdl:R-08669971-8325-43fe-a299-2491741b0b6e .
stirdl:R-dd54e0bc-8303-4a00-8b4f-8bc388f130b4
rdfs:label "-0.055"^^xsd:string ;
stirdl:RDS1317959 "-0.055"^^xsd:float .
stirdl:R-c1f53a97-20fa-4267-97ce-55bcf79e2d59
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-c1f53a97-20fa-4267-97ce-55bcf79e2d59"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-c2796f46-c6bf-481c-8c88-179a4892cef3
rdfs:label "Silicone oil"^^xsd:string ;
rdfs:subClassOf stirdl:RDS6696832 ;
rdl:defaultRdsId "R-c2796f46-c6bf-481c-8c88-179a4892cef3"^^xsd:string .
stirdl:R-46e581eb-1ff4-4b74-ba39-61b4736326bc
rdfs:label "137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-46e581eb-1ff4-4b74-ba39-61b4736326bc"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-5c2747dd-556e-4497-89e8-263cc4047454 .
stirdl:R-c7bf2219-edb9-432a-a86b-b8dd01d40b81
rdfs:label "-137.9 - 137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-c7bf2219-edb9-432a-a86b-b8dd01d40b81"^^xsd:string ;
stirdl:hasLowerLimitPressure stirdl:R-e84c2ee0-4521-46f2-ac89-6ef6b9b1e9fb ;
stirdl:hasUpperLimitPressure stirdl:R-e2b811f4-6747-4700-8bc6-cd569012393d .
stirdl:R-62aa5edc-0b24-4fd8-a878-cbac22e8f2eb
rdfs:label "96 - 480"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1411651951 ;
rdl:defaultRdsId "R-62aa5edc-0b24-4fd8-a878-cbac22e8f2eb"^^xsd:string ;
stirdl:hasLowerLimitPower stirdl:R-9056cc41-88b8-4c09-b428-e296831bef83 ;
stirdl:hasUpperLimitPower stirdl:R-f60fe793-bcc2-4789-9e71-b29c4dde21d6 .
stirdl:R-08687946-b531-4766-a0a0-27b6b9ef0910
rdfs:label "Pressure Element"^^xsd:string ;
rdfs:subClassOf stirdl:RDS427634 , stirdl:RDS708344 , stirdl:RDS462104 ;
rdl:defaultRdsId "R-08687946-b531-4766-a0a0-27b6b9ef0910"^^xsd:string ;
stirdl:hasAdjustablePressureMeasuringRangeInstance
stirdl:R-bf914140-3d62-4327-8bd0-5a2dcc12c5cc ;
stirdl:hasFillingFluid stirdl:R-c2796f46-c6bf-481c-8c88-179a4892cef3 .
stirdl:R-588f6bcb-2f43-4fb0-ab09-50e11da74087
rdfs:label "-137.9"^^xsd:string ;
rdl:defaultRdsId "R-588f6bcb-2f43-4fb0-ab09-50e11da74087"^^xsd:string ;
stirdl:RDS1314539 "-137.9"^^xsd:float .
stirdl:R-24ab43ba-ae85-46bb-9573-46d7e4f54d88
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-24ab43ba-ae85-46bb-9573-46d7e4f54d88"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-997d9643-3647-4b12-b4a4-8f1638e4d6e7
rdfs:label "0.04"^^xsd:string ;
stirdl:RDS1317959 "0.04"^^xsd:float .
stirdl:R-d08958db-6690-45c4-9236-6361d3c422cf
rdfs:label "3.3"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1468222121 ;
rdl:defaultRdsId "R-d08958db-6690-45c4-9236-6361d3c422cf"^^xsd:string ;
stirdl:hasNormalWeight stirdl:R-5686bdb3-d4b3-4833-9017-f302800741b4 .
stirdl:R-1705ebab-bff7-4f6a-bb81-57ccf543c1eb
rdfs:label "-137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-1705ebab-bff7-4f6a-bb81-57ccf543c1eb"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-588f6bcb-2f43-4fb0-ab09-50e11da74087 .
stirdl:R-f47fd88b-0ef2-4ac5-a831-3703c6a73ae4
a lci:TextString ;
rdfs:label "General Arrangement 3051CD-0305RC5"^^xsd:string ;
rdl:defaultRdsId "R-f47fd88b-0ef2-4ac5-a831-3703c6a73ae4"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/20/56/21/3051CD_0305RC5.pdf"^^xsd:string .
stirdl:R-725513e4-c1d8-4f03-85dc-8ab91b4bae6d
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-725513e4-c1d8-4f03-85dc-8ab91b4bae6d"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-ebfadf36-cbe9-4eba-8537-28fecc92bc14
rdfs:label "+/- 0.055 %"^^xsd:string ;
rdfs:subClassOf stirdl:RDS627075900 ;
rdl:defaultRdsId "R-ebfadf36-cbe9-4eba-8537-28fecc92bc14"^^xsd:string ;
stirdl:hasLowerLimitPercentage stirdl:R-c38880f9-b4f0-4dcf-beae-fef91725bb92 ;
stirdl:hasUpperLimitPercentage stirdl:R-42b5cbbc-edf9-4e0d-9abf-c769a4defa93 .
stirdl:hasProductDescriptionAndOrderingInformationReference
rdfs:label "Product description and ordering information"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS1465587841 .
stirdl:R-7934e8bb-2109-451a-a30f-bb3cdae422b5
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-8ca0ca8e-a8a7-4da6-88ff-e00090bf3f6c
rdfs:label "-137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-8ca0ca8e-a8a7-4da6-88ff-e00090bf3f6c"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-06d3b54b-c812-4ff2-9504-376f4dec6400 .
stirdl:hasSupplyVoltageRangeInstance
rdfs:subPropertyOf stirdl:RDS1411396881 .
stirdl:R-58c63af8-22f5-4ba1-ab5b-a034828d7ef7
rdfs:label "Pressure Element"^^xsd:string ;
rdfs:subClassOf stirdl:RDS462104 , stirdl:RDS708344 , stirdl:RDS427634 ;
rdl:defaultRdsId "R-58c63af8-22f5-4ba1-ab5b-a034828d7ef7"^^xsd:string ;
stirdl:hasAdjustablePressureMeasuringRangeInstance
stirdl:R-9708b873-ed19-4be5-a107-e0216d9d0fa4 ;
stirdl:hasFillingFluid stirdl:R-14f624bf-f1dd-42c0-8432-529822a667cb .
stirdl:R-17c84635-0f8b-4a6e-929d-719f01771772
a lci:TextString ;
rdfs:label "Rosemount 3051 Pressure Transmitter with 4-20 mA HART Revision 5 and 7 Selectable Protocol"^^xsd:string ;
rdl:defaultRdsId "R-17c84635-0f8b-4a6e-929d-719f01771772"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/03/85/27/26/00809-0100-4007_AB_2013.pdf"^^xsd:string .
stirdl:R-c38880f9-b4f0-4dcf-beae-fef91725bb92
rdfs:label "-0.055"^^xsd:string ;
stirdl:RDS1317959 "-0.055"^^xsd:float .
stirdl:R-5958b2be-5a6f-4f45-8f63-e867591d9ca0
rdfs:label "10 - 10"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1411651951 ;
rdl:defaultRdsId "R-5958b2be-5a6f-4f45-8f63-e867591d9ca0"^^xsd:string ;
stirdl:hasLowerLimitPower stirdl:R-218f25f1-51ba-4677-b973-946975250f94 ;
stirdl:hasUpperLimitPower stirdl:R-51d23f73-f443-456d-bef8-01dec12b0449 .
stirdl:R-08377526-2215-4b52-856e-be6db86a9561
rdfs:label "42.4"^^xsd:string ;
stirdl:RDS1347974 "42.4"^^xsd:float .
stirdl:R-4ecff63d-bc18-44ba-9405-31409cc81472
rdfs:label "3.3"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1468222121 ;
rdl:defaultRdsId "R-4ecff63d-bc18-44ba-9405-31409cc81472"^^xsd:string ;
stirdl:hasNormalWeight stirdl:R-ac03f413-7583-4cf8-9e4d-84f9f52d7ba6 .
stirdl:R-991d4209-7585-4771-b0ab-968df9ed6f82
rdfs:label "Electronic Module"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1413185363 , stirdl:RDS1422805611 , stirdl:RDS1413185365 ;
rdl:defaultRdsId "R-991d4209-7585-4771-b0ab-968df9ed6f82"^^xsd:string ;
stirdl:hasCommunicationStandard
stirdl:R-89d3cca2-a4eb-4986-a013-907fb29ddf91 ;
stirdl:hasLowerLimitPressureMeasuringSpanInstance
stirdl:R-8bca73bf-7fc5-483e-85a6-23823820a78f ;
stirdl:hasPercentageAccuracyInstance
stirdl:R-ebfadf36-cbe9-4eba-8537-28fecc92bc14 ;
stirdl:hasUpperLimitPressureMeasuringSpanInstance
stirdl:R-65bd30cb-8bf4-4521-b139-125c2ba955ef .
stirdl:R-98606a31-5010-422d-8b6f-a9af33f0b6b7
rdfs:label "-2.48"^^xsd:string ;
rdl:defaultRdsId "R-98606a31-5010-422d-8b6f-a9af33f0b6b7"^^xsd:string ;
stirdl:RDS1348919 "-2.48"^^xsd:float .
stirdl:hasLowerLimitVoltage
rdfs:subPropertyOf lci:hasLowerLimit .
stirdl:R-f8802a27-9c6b-4e54-a212-4297c67c0182
rdfs:label "-20"^^xsd:string ;
stirdl:RDS1322684 "-20"^^xsd:float .
stirdl:R-5292e99e-b0d1-4514-aeb0-fed5175f7d96
rdfs:label "Supply Connection"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1459162771 ;
rdl:defaultRdsId "R-5292e99e-b0d1-4514-aeb0-fed5175f7d96"^^xsd:string .
stirdl:R-a91e9ad7-a5e1-444d-a9a0-8caf3b2bdbc9
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-a91e9ad7-a5e1-444d-a9a0-8caf3b2bdbc9"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-00e46e0e-fdec-40c2-872c-4e890124422a
rdfs:label "10 - 10"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1411651951 ;
rdl:defaultRdsId "R-00e46e0e-fdec-40c2-872c-4e890124422a"^^xsd:string ;
stirdl:hasLowerLimitPower stirdl:R-4c370fa9-1877-4a84-b776-d79307c958c5 ;
stirdl:hasUpperLimitPower stirdl:R-37173c4a-3e46-4108-86ba-7c3ba9f2efec .
stirdl:hasUpperLimitElectricalLoadInstance
rdfs:subPropertyOf stirdl:hasUpperLimitElectricalLoad .
stirdl:R-02d496ca-aa02-478f-8fbc-aab7fbb37026
rdfs:label "4.3"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1468222121 ;
rdl:defaultRdsId "R-02d496ca-aa02-478f-8fbc-aab7fbb37026"^^xsd:string ;
stirdl:hasNormalWeight stirdl:R-aec27ca6-cedb-40bb-9d58-400cbc87a5c0 .
stirdl:R-8219ae2a-4e2d-4cf9-9cb0-18ce180970b8
rdfs:label "Supply Connection"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1459162771 ;
rdl:defaultRdsId "R-8219ae2a-4e2d-4cf9-9cb0-18ce180970b8"^^xsd:string .
stirdl:R-22c0e605-02c9-4508-a15e-66b0f379823f
rdfs:label "-20"^^xsd:string ;
stirdl:RDS1322684 "-20"^^xsd:float .