sti.ttl
53.5 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
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
@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-84d2377d-3087-428d-86f1-4dab49a626ca
rdfs:label "-1.0 - 10.3"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-84d2377d-3087-428d-86f1-4dab49a626ca"^^xsd:string ;
stirdl:hasLowerLimitPressure stirdl:R-aef81190-8631-4c47-9b53-bd1cd6970a05 ;
stirdl:hasUpperLimitPressure stirdl:R-a78a8fd2-bd85-442b-aa1a-f61bb701ca7c .
stirdl:R-3e42b957-8fb1-4400-87cd-03f8219f17fd
a lci:TextString , stirdl:RDS1386450251 ;
rdfs:label "3051S2TG2A3E11A1KI1M5P1Q4Q8QTT1Q15"^^xsd:string ;
rdl:hasDefinition "3051S2TG2A3E11A1KI1M5P1Q4Q8QTT1Q15"^^xsd:string .
stirdl:R-7a5fd2b1-4e40-40f7-b340-7e0219305b1a
rdfs:label "80"^^xsd:string ;
stirdl:RDS1322684 "80"^^xsd:float .
stirdl:R-526ca599-4a0f-4d1f-85c5-718ef9d4f198
a lci:TextString ;
rdfs:label "Rosemount 3051S Series Scalable Pressure, Flow, and Level Solution"^^xsd:string ;
rdl:defaultRdsId "R-526ca599-4a0f-4d1f-85c5-718ef9d4f198"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/01/66/38/46/3051S_IOM.pdf"^^xsd:string .
stirdl:R-15bfe718-cd0f-4022-bc92-a3be587d8f1a
rdfs:label "10.3"^^xsd:string ;
rdl:defaultRdsId "R-15bfe718-cd0f-4022-bc92-a3be587d8f1a"^^xsd:string ;
stirdl:RDS1314539 "10.3"^^xsd:float .
stirdl:R-5c41f8ce-1d8f-4177-8c5e-e1cbb4b56d37
rdfs:label "Supply Connection"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1459162771 ;
rdl:defaultRdsId "R-5c41f8ce-1d8f-4177-8c5e-e1cbb4b56d37"^^xsd:string .
stirdl:hasOperationAndMaintenanceInstructionsReference
rdfs:label "Operation and maintenance instructions"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS1465585571 .
stirdl:R-4241dc5d-53bf-4b29-ba6d-b99e7f1777f1
rdfs:label "500 - 500"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1411651951 ;
rdl:defaultRdsId "R-4241dc5d-53bf-4b29-ba6d-b99e7f1777f1"^^xsd:string ;
stirdl:hasLowerLimitPower stirdl:R-7e7f83b1-c8ae-4b08-b024-05f3134f3c29 ;
stirdl:hasUpperLimitPower stirdl:R-3a1320eb-37e9-4f65-a5c4-5b07a17dd084 .
stirdl:R-0efaebf8-aa64-4d80-b430-96e14bf3d877
rdfs:label "-1.0"^^xsd:string ;
rdl:defaultRdsId "R-0efaebf8-aa64-4d80-b430-96e14bf3d877"^^xsd:string ;
stirdl:RDS1314539 "-1.0"^^xsd:float .
stirdl:hasUpperLimitPressure
rdfs:subPropertyOf lci:hasUpperLimit .
stirdl:R-e8a8154f-6694-4afc-af37-8d4b744cd57c
rdfs:label "500"^^xsd:string ;
stirdl:RDS1336634 "500"^^xsd:float .
stirdl:hasPowerConsumptionRangeInstance
rdfs:subPropertyOf stirdl:hasPowerConsumptionRange .
stirdl:R-5d870b1f-238d-43db-b9cd-02237493b58d
rdfs:label "-40 - 80"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13114692 ;
rdl:defaultRdsId "R-5d870b1f-238d-43db-b9cd-02237493b58d"^^xsd:string ;
stirdl:hasLowerLimitTemperature
stirdl:R-126faad6-3999-42ac-82d7-0531dc65cbad ;
stirdl:hasUpperLimitTemperature
stirdl:R-74383194-e697-4037-8219-3402a524726f .
stirdl:R-d9b0f7ba-eda0-4a3f-bb68-d37e07228577
a lci:TextString ;
rdfs:label "HART"^^xsd:string ;
rdl:defaultRdsId "R-d9b0f7ba-eda0-4a3f-bb68-d37e07228577"^^xsd:string .
stirdl:R-7ab73111-25dc-40dd-9b3b-800d1b4680f0
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-7ab73111-25dc-40dd-9b3b-800d1b4680f0"^^xsd:string ;
stirdl:RDS1348919 "137.9"^^xsd:float .
stirdl:R-a71669ab-8c58-4eb6-9cad-faa89f58b7d1
rdfs:label "3051CG5A22A1KM5K6L4Q4Q8QTHR7"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1400182901 , stirdl:RDS1007459 , stirdl:RDS38822373235 , stirdl:RDS1400865471 , stirdl:RDS1051694 ;
rdl:defaultRdsId "R-a71669ab-8c58-4eb6-9cad-faa89f58b7d1"^^xsd:string ;
lci:assembledPartOf stirdl:R-fdd348c6-786d-4635-a3a8-1569b11c5ccc , stirdl:R-e8597cb1-620b-4b3b-a1c7-717f76fd6c39 , stirdl:R-7183e7f3-4a74-44a7-b777-56d137dd1a72 , stirdl:R-1d891528-7d85-4cb4-b4aa-393b4ab79f9f , stirdl:R-aaa049da-181c-41fa-81eb-55abb675e724 ;
lci:identifiedBy stirdl:R-a991207b-4590-4d9b-af1a-0ef03c5143e6 ;
stirdl:hasAmbientOperatingTemperatureRangeInstance
stirdl:R-5d870b1f-238d-43db-b9cd-02237493b58d ;
stirdl:hasCEIdentificationCode "CE1180"^^xsd:string ;
stirdl:hasInstallationAndRemovalProcedureReference
stirdl:R-5fccf7d0-3fa0-4585-80ae-5ab01a74d307 ;
stirdl:hasManufacturingCompanyName
"EMERSON PROCESS MANAGEMENT"^^xsd:string ;
stirdl:hasMeasurementAndArrangementDrawingReference
stirdl:R-201314f3-befb-4e62-bb07-126aed8b5446 ;
stirdl:hasOperationAndMaintenanceInstructionsReference
stirdl:R-eed7f4fc-4538-4f67-997a-8daae826740b ;
stirdl:hasPowerConsumptionRangeInstance
stirdl:R-4241dc5d-53bf-4b29-ba6d-b99e7f1777f1 ;
stirdl:hasProductDescriptionAndOrderingInformationReference
stirdl:R-8072333b-e9c4-489d-954f-1466491cf24a ;
stirdl:hasSectionalDrawingReference
stirdl:R-f1157f51-ae78-40c8-b8dc-81a0850e0bb2 ;
stirdl:hasWeightRangeInstance stirdl:R-307b93ec-e370-45d6-929d-5d13075380aa .
stirdl:R-75c80546-c2d7-4d7c-a1ab-43ff41422bbf
rdfs:label "3051S2TG2A3E11A1KI1M5P1Q4Q8QTT1Q15"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1015109 , stirdl:RDS38822373235 , stirdl:RDS1400865471 , stirdl:RDS1400191931 , stirdl:RDS1007459 , stirdl:RDS1051694 ;
rdl:defaultRdsId "R-75c80546-c2d7-4d7c-a1ab-43ff41422bbf"^^xsd:string ;
lci:assembledPartOf stirdl:R-904097f9-b43a-4673-a427-df174ff21f87 , stirdl:R-0dbdc198-381d-4ce5-b1a3-b7f26252e8c8 , stirdl:R-d7b8c4ec-051d-448d-b7a8-befc612989b8 , stirdl:R-b2d17618-7bcb-4cd7-b825-a15f48cf7375 , stirdl:R-5f547d30-0927-4591-ae6a-6ac0d7be77be ;
lci:identifiedBy stirdl:R-3e42b957-8fb1-4400-87cd-03f8219f17fd ;
stirdl:hasAmbientOperatingTemperatureRangeInstance
stirdl:R-fd34f3f8-1822-4dfb-8a53-26c6194b184b ;
stirdl:hasCEIdentificationCode "CE1180"^^xsd:string ;
stirdl:hasInstallationAndRemovalProcedureReference
stirdl:R-ef234604-e36f-4bf5-b33e-270e1cdfb8c5 ;
stirdl:hasManufacturingCompanyName
"EMERSON PROCESS MANAGEMENT"^^xsd:string ;
stirdl:hasMeasurementAndArrangementDrawingReference
stirdl:R-2b96aa26-7f70-4012-a2e7-17d65f9cfa26 , stirdl:R-5a21ea56-3f14-4ddc-a767-e5b16c702369 ;
stirdl:hasOperationAndMaintenanceInstructionsReference
stirdl:R-e7aed254-4b97-4e33-80c5-1f8d67427a22 ;
stirdl:hasPowerConsumptionRangeInstance
stirdl:R-bbe55006-9585-4ffa-923d-b65463fced21 ;
stirdl:hasProductDescriptionAndOrderingInformationReference
stirdl:R-9863dda5-11fd-4a84-97a1-2ba03edad01d ;
stirdl:hasSectionalDrawingReference
stirdl:R-9575e67f-45e7-4c4b-83f6-aad28c3a1cb3 , stirdl:R-526ca599-4a0f-4d1f-85c5-718ef9d4f198 ;
stirdl:hasWeightRangeInstance stirdl:R-bf0a732c-5076-474d-a3d7-4db4abf3e4a6 .
stirdl:R-e5466de0-e8b6-42eb-b8ad-e2e9fdb35a44
rdfs:label "0.04"^^xsd:string ;
stirdl:RDS1317959 "0.04"^^xsd:float .
stirdl:R-e3488a2a-2d69-44cf-b3a8-4e0bc1aac2cb
rdfs:label "4.6"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1468222121 ;
rdl:defaultRdsId "R-e3488a2a-2d69-44cf-b3a8-4e0bc1aac2cb"^^xsd:string ;
stirdl:hasNormalWeight stirdl:R-37af0236-4e41-41f1-90b7-b359c22813af .
stirdl:R-24f4919a-68ea-41db-8999-24915d56ce70
rdfs:label "Pressure Transmitter Body"^^xsd:string ;
rdfs:subClassOf stirdl:RDS820709 , stirdl:RDS419849 ;
rdl:defaultRdsId "R-24f4919a-68ea-41db-8999-24915d56ce70"^^xsd:string .
stirdl:R-edcc0967-9118-4ff4-9752-0e9c48592c48
rdfs:label "-20"^^xsd:string ;
stirdl:RDS1322684 "-20"^^xsd:float .
stirdl:R-5f547d30-0927-4591-ae6a-6ac0d7be77be
rdfs:label "Electronic Module"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1413185363 , stirdl:RDS1413185365 , stirdl:RDS1422805611 ;
rdl:defaultRdsId "R-5f547d30-0927-4591-ae6a-6ac0d7be77be"^^xsd:string ;
stirdl:hasCommunicationStandard
stirdl:R-09b8ff70-eb8b-4405-8c62-cd3a5adcb099 ;
stirdl:hasLowerLimitPressureMeasuringSpanInstance
stirdl:R-94223107-787b-4896-9b53-4ed42f8281e6 ;
stirdl:hasPercentageAccuracyInstance
stirdl:R-eaf702c4-8c89-40e7-97ca-6a581c01caa0 ;
stirdl:hasSupplyVoltageRangeInstance
stirdl:R-3fa38c2b-51f7-4f7f-bebb-4bfc16fc3f76 ;
stirdl:hasUpperLimitPressureMeasuringSpanInstance
stirdl:R-ed92701d-c890-4d38-ba1e-faa697d5cf2a .
stirdl:hasUpperLimitTemperature
rdfs:subPropertyOf lci:hasUpperLimit .
stirdl:R-764cc242-ff70-46de-b553-ab38e927e5c5
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-764cc242-ff70-46de-b553-ab38e927e5c5"^^xsd:string ;
stirdl:RDS1348919 "137.9"^^xsd:float .
stirdl:R-27ac4987-5918-4dee-9a17-1bf19f1843c0
rdfs:label "10 - 10"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1411651951 ;
rdl:defaultRdsId "R-27ac4987-5918-4dee-9a17-1bf19f1843c0"^^xsd:string ;
stirdl:hasLowerLimitPower stirdl:R-f7c34dbf-50d6-4dc5-85e1-2f624ea53467 ;
stirdl:hasUpperLimitPower stirdl:R-30d11464-a6ab-4fbc-a48c-ca8cc1e96099 .
stirdl:hasLowerLimitPressure
rdfs:subPropertyOf lci:hasLowerLimit .
stirdl:R-4775b1d1-342d-4d45-b913-bbcda4806f14
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-4775b1d1-342d-4d45-b913-bbcda4806f14"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-8d97ff77-d26e-46cf-8db4-3fb774d95be5
rdfs:label "10.5 - 42.4"^^xsd:string ;
rdfs:subClassOf stirdl:RDS16805172 ;
rdl:defaultRdsId "R-8d97ff77-d26e-46cf-8db4-3fb774d95be5"^^xsd:string ;
stirdl:hasLowerLimitVoltage stirdl:R-81db8adb-2e8f-4b6e-81c5-aced0a656510 ;
stirdl:hasUpperLimitVoltage stirdl:R-b973d547-5063-44a8-8be7-1e45c6d07791 .
stirdl:R-09b8ff70-eb8b-4405-8c62-cd3a5adcb099
a lci:TextString ;
rdfs:label "HART"^^xsd:string ;
rdl:defaultRdsId "R-09b8ff70-eb8b-4405-8c62-cd3a5adcb099"^^xsd:string .
stirdl:R-6b02d860-ee49-4d43-b0fa-c02092f418af
a lci:TextString ;
rdfs:label "NACE MR 01-75"^^xsd:string ;
rdl:defaultRdsId "R-6b02d860-ee49-4d43-b0fa-c02092f418af"^^xsd:string ;
rdl:hasDefinition "NACE MR 01-75"^^xsd:string .
stirdl:hasAmbientOperatingTemperatureRangeInstance
rdfs:subPropertyOf stirdl:hasAmbientOperatingTemperatureRange .
stirdl:R-45783702-5c53-4ea4-be9c-d9215436a849
a lci:TextString ;
rdfs:label "TEK-00781210"^^xsd:string ;
rdl:defaultRdsId "R-45783702-5c53-4ea4-be9c-d9215436a849"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/10/33/86/TEK-00781210.pdf"^^xsd:string .
stirdl:R-7e7f83b1-c8ae-4b08-b024-05f3134f3c29
rdfs:label "500"^^xsd:string ;
stirdl:RDS1336634 "500"^^xsd:float .
stirdl:hasInstallationAndRemovalProcedureReference
rdfs:label "Installation and removal procedures"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS1465580191 .
stirdl:R-5b9d2123-0e28-49d4-a394-c2c0a9715b26
rdfs:label "Silicone oil"^^xsd:string ;
rdfs:subClassOf stirdl:RDS6696832 ;
rdl:defaultRdsId "R-5b9d2123-0e28-49d4-a394-c2c0a9715b26"^^xsd:string .
stirdl:R-bd28166f-23f1-4ded-aa96-69a866beb763
rdfs:label "500"^^xsd:string ;
stirdl:RDS1336634 "500"^^xsd:float .
stirdl:R-904097f9-b43a-4673-a427-df174ff21f87
rdfs:label "Transmitter Housing"^^xsd:string ;
rdfs:subClassOf stirdl:RDS573609921 ;
rdl:defaultRdsId "R-904097f9-b43a-4673-a427-df174ff21f87"^^xsd:string ;
lci:featurePartOf stirdl:R-a50a4797-c14a-4998-9bb8-8e66ef83c9ff .
stirdl:R-e59240b0-c90d-4edd-9234-55056abda403
a lci:TextString , stirdl:RDS1386450251 ;
rdfs:label "3051S2CG3A2E15X5JWA1WK1C1I1L4M5P1Q4Q15Q8"^^xsd:string ;
rdl:hasDefinition "3051S2CG3A2E15X5JWA1WK1C1I1L4M5P1Q4Q15Q8"^^xsd:string .
stirdl:R-2b96aa26-7f70-4012-a2e7-17d65f9cfa26
a lci:TextString ;
rdfs:label "Rosemount 3051S Series Scalable Pressure, Flow, and Level Solution"^^xsd:string ;
rdl:defaultRdsId "R-2b96aa26-7f70-4012-a2e7-17d65f9cfa26"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/01/66/38/46/3051S_IOM.pdf"^^xsd:string .
stirdl:R-aaa8beef-a610-4893-b40e-9dde2d5377e6
rdfs:label "Pressure Element"^^xsd:string ;
rdfs:subClassOf stirdl:RDS462104 , stirdl:RDS708344 , stirdl:RDS427634 ;
rdl:defaultRdsId "R-aaa8beef-a610-4893-b40e-9dde2d5377e6"^^xsd:string ;
stirdl:hasAdjustablePressureMeasuringRangeInstance
stirdl:R-601841a7-e731-414b-b66b-318a9334de5a ;
stirdl:hasFillingFluid stirdl:R-5b9d2123-0e28-49d4-a394-c2c0a9715b26 .
stirdl:R-09228cc1-e0e1-4657-a471-791463ba0495
rdfs:label "137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-09228cc1-e0e1-4657-a471-791463ba0495"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-1bc330bc-3415-4940-94d1-2ed62ab355a0 .
stirdl:R-a9fd8ae5-5b6a-41fe-bf8e-c075f9a0bff4
rdfs:label "-137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-a9fd8ae5-5b6a-41fe-bf8e-c075f9a0bff4"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-e289b49f-c2a6-42a1-ad70-411978edf394 .
stirdl:R-845c16ae-3432-4612-bfea-ab0451b64294
rdfs:label "-0.055"^^xsd:string ;
stirdl:RDS1317959 "-0.055"^^xsd:float .
stirdl:R-4edcd4de-9a92-4796-b784-a475c5323cca
rdfs:label "ASME B1.20.1 1/4 - 18 NPT"^^xsd:string ;
rdfs:subClassOf stirdl:RDS733634 , stirdl:RDS1442382761 ;
rdl:defaultRdsId "R-4edcd4de-9a92-4796-b784-a475c5323cca"^^xsd:string .
stirdl:R-468adc15-1bf7-4232-be3a-c310491ab437
rdfs:label "ASME B1.20.1 1/2 - 14 NPT-F"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1442382761 , stirdl:RDS13984065 ;
rdl:defaultRdsId "R-468adc15-1bf7-4232-be3a-c310491ab437"^^xsd:string .
stirdl:R-a87ce4c8-5f4b-48d0-b822-8ca0672da6fa
rdfs:label "0.055"^^xsd:string ;
stirdl:RDS1317959 "0.055"^^xsd:float .
stirdl:R-fdd348c6-786d-4635-a3a8-1569b11c5ccc
rdfs:label "Transmitter Housing"^^xsd:string ;
rdfs:subClassOf stirdl:RDS573609921 ;
rdl:defaultRdsId "R-fdd348c6-786d-4635-a3a8-1569b11c5ccc"^^xsd:string ;
lci:featurePartOf stirdl:R-5ce4fe70-b0e5-414d-b0af-9df99220b42e .
stirdl:hasUpperLimitVoltage
rdfs:subPropertyOf lci:hasUpperLimit .
stirdl:R-91aad328-e00c-4435-8504-9a347f500ce6
rdfs:label "-0.04"^^xsd:string ;
stirdl:RDS1317959 "-0.04"^^xsd:float .
stirdl:R-55d08a35-40aa-448e-acd9-a492d5c8ea83
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-55d08a35-40aa-448e-acd9-a492d5c8ea83"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-201314f3-befb-4e62-bb07-126aed8b5446
a lci:TextString ;
rdfs:label "TEK-00821585"^^xsd:string ;
rdl:defaultRdsId "R-201314f3-befb-4e62-bb07-126aed8b5446"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/03/88/42/42/TEK-00821585.pdf"^^xsd:string .
stirdl:hasLowerLimitTemperature
rdfs:subPropertyOf lci:hasLowerLimit .
stirdl:R-3a1320eb-37e9-4f65-a5c4-5b07a17dd084
rdfs:label "500"^^xsd:string ;
stirdl:RDS1336634 "500"^^xsd:float .
stirdl:R-502674b3-bcf9-497c-a2bf-ecaced4353ec
rdfs:label "Electronic Module"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1422805611 , stirdl:RDS1413185365 , stirdl:RDS1413185363 ;
rdl:defaultRdsId "R-502674b3-bcf9-497c-a2bf-ecaced4353ec"^^xsd:string ;
stirdl:hasCommunicationStandard
stirdl:R-d9b0f7ba-eda0-4a3f-bb68-d37e07228577 ;
stirdl:hasLowerLimitPressureMeasuringSpanInstance
stirdl:R-a9fd8ae5-5b6a-41fe-bf8e-c075f9a0bff4 ;
stirdl:hasPercentageAccuracyInstance
stirdl:R-15fc83cd-2c36-4f44-be73-fbdd346f6784 ;
stirdl:hasUpperLimitPressureMeasuringSpanInstance
stirdl:R-2450825b-8c4b-4cd5-955a-5f0e758dbb86 .
stirdl:R-157630a4-035c-4cd8-95d5-4aa9b61030bf
rdfs:label "Silicone oil"^^xsd:string ;
rdfs:subClassOf stirdl:RDS6696832 ;
rdl:defaultRdsId "R-157630a4-035c-4cd8-95d5-4aa9b61030bf"^^xsd:string .
stirdl:hasLowerLimitPower
rdfs:subPropertyOf lci:hasLowerLimit .
stirdl:R-70353b9e-fcdb-4f7f-a322-9ad3e1f153f7
rdfs:label "-0.055"^^xsd:string ;
stirdl:RDS1317959 "-0.055"^^xsd:float .
stirdl:R-f52e26ff-03f2-4962-b358-434e14fb58b6
rdfs:label "Transmitter Housing"^^xsd:string ;
rdfs:subClassOf stirdl:RDS573609921 ;
rdl:defaultRdsId "R-f52e26ff-03f2-4962-b358-434e14fb58b6"^^xsd:string ;
lci:featurePartOf stirdl:R-5c41f8ce-1d8f-4177-8c5e-e1cbb4b56d37 .
stirdl:R-46cb9311-73ca-4df8-b606-f0db0d52924d
rdfs:label "2.5"^^xsd:string ;
rdl:defaultRdsId "R-46cb9311-73ca-4df8-b606-f0db0d52924d"^^xsd:string ;
stirdl:RDS1348919 "2.5"^^xsd:float .
stirdl:R-e4f45dd0-9f8a-40f1-94cd-4e1bbb755a36
rdfs:label "-0.98"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-e4f45dd0-9f8a-40f1-94cd-4e1bbb755a36"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-f35a3c01-5b4e-4f6f-b04f-a728602aac82 .
stirdl:R-9d054b72-ec8d-407d-b3bf-6dcea9059498
rdfs:label "80"^^xsd:string ;
stirdl:RDS1322684 "80"^^xsd:float .
stirdl:R-400968a0-580b-466a-bf6b-61dcf856da36
rdfs:label "10 - 10"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1411651951 ;
rdl:defaultRdsId "R-400968a0-580b-466a-bf6b-61dcf856da36"^^xsd:string ;
stirdl:hasLowerLimitPower stirdl:R-2b120096-4bed-437b-801d-af994f725513 ;
stirdl:hasUpperLimitPower stirdl:R-f5ed4253-843c-4571-9c90-522168a080e3 .
stirdl:R-bbe55006-9585-4ffa-923d-b65463fced21
rdfs:label "500 - 500"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1411651951 ;
rdl:defaultRdsId "R-bbe55006-9585-4ffa-923d-b65463fced21"^^xsd:string ;
stirdl:hasLowerLimitPower stirdl:R-bd28166f-23f1-4ded-aa96-69a866beb763 ;
stirdl:hasUpperLimitPower stirdl:R-e8a8154f-6694-4afc-af37-8d4b744cd57c .
stirdl:R-274c5eab-72cd-47a6-b204-7220802e3ccd
a lci:TextString ;
rdfs:label "HART"^^xsd:string ;
rdl:defaultRdsId "R-274c5eab-72cd-47a6-b204-7220802e3ccd"^^xsd:string .
stirdl:R-b2c6499e-f248-4751-a50a-f3490b6962a6
rdfs:label "1387"^^xsd:string ;
rdl:defaultRdsId "R-b2c6499e-f248-4751-a50a-f3490b6962a6"^^xsd:string ;
stirdl:RDS1338524 "1387"^^xsd:float .
stirdl:R-ad181432-b0fc-4e22-8194-fe83bd203cb2
a lci:TextString ;
rdfs:label "TEK-00781182"^^xsd:string ;
rdl:defaultRdsId "R-ad181432-b0fc-4e22-8194-fe83bd203cb2"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/12/32/51/TEK-00781182.pdf"^^xsd:string .
stirdl:R-a15ec011-f615-4d50-bdb6-358399b9ada9
rdfs:label "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1051694 , stirdl:RDS1400191931 , stirdl:RDS38822373235 , stirdl:RDS1007459 , stirdl:RDS1015109 , stirdl:RDS1400865471 ;
rdl:defaultRdsId "R-a15ec011-f615-4d50-bdb6-358399b9ada9"^^xsd:string ;
lci:assembledPartOf stirdl:R-aaa8beef-a610-4893-b40e-9dde2d5377e6 , stirdl:R-502674b3-bcf9-497c-a2bf-ecaced4353ec , stirdl:R-24f4919a-68ea-41db-8999-24915d56ce70 , stirdl:R-f52e26ff-03f2-4962-b358-434e14fb58b6 ;
lci:identifiedBy stirdl:R-33f23b04-07af-425c-94d5-ecca47c63690 ;
stirdl:hasAmbientOperatingTemperatureRangeInstance
stirdl:R-35b7adb9-c736-467d-881e-8829473dfbdd ;
stirdl:hasCEIdentificationCode "CE1180"^^xsd:string ;
stirdl:hasInstallationAndRemovalProcedureReference
stirdl:R-235d1364-26f4-4ba9-8599-1505a3cb0238 ;
stirdl:hasManufacturingCompanyName
"EMERSON PROCESS MANAGEMENT"^^xsd:string ;
stirdl:hasMeasurementAndArrangementDrawingReference
stirdl:R-0bb62b5c-e5bf-47fa-a824-38746226eed1 , stirdl:R-e5ef86d6-7dcc-4b06-b38f-f611a0af5c1b ;
stirdl:hasOperationAndMaintenanceInstructionsReference
stirdl:R-4775b1d1-342d-4d45-b913-bbcda4806f14 ;
stirdl:hasPowerConsumptionRangeInstance
stirdl:R-27ac4987-5918-4dee-9a17-1bf19f1843c0 ;
stirdl:hasProductDescriptionAndOrderingInformationReference
stirdl:R-44e25d15-38bd-48aa-a71c-78d2ee47f413 ;
stirdl:hasSectionalDrawingReference
stirdl:R-40bd9e7c-9213-43da-b9a9-f7f1a38bd179 , stirdl:R-45783702-5c53-4ea4-be9c-d9215436a849 ;
stirdl:hasWeightRangeInstance stirdl:R-5b22b11c-b2be-4bf5-a809-703b73c724cd .
stirdl:R-4b647e7e-4994-4e14-9dd4-438bdf911e57
rdfs:label "3051S2CG3A2E15X5JWA1WK1C1I1L4M5P1Q4Q15Q8"^^xsd:string ;
rdfs:subClassOf stirdl:RDS38822373235 , stirdl:RDS1015109 , stirdl:RDS1400865471 , stirdl:RDS1007459 , stirdl:RDS1051694 , stirdl:RDS1400191931 ;
rdl:defaultRdsId "R-4b647e7e-4994-4e14-9dd4-438bdf911e57"^^xsd:string ;
lci:assembledPartOf stirdl:R-8010f348-1c86-423d-a3b3-f77c470935b5 , stirdl:R-149869a8-8c02-4ba8-ba48-26ad4221df9f , stirdl:R-1ad4ec4d-da5e-4862-a704-ccaa3faaf2ab , stirdl:R-8c30f0c4-0d46-4677-88ad-1cda1b1d17d4 , stirdl:R-21a4d77f-f0e7-4f10-ac4f-6f163085769b ;
lci:identifiedBy stirdl:R-e59240b0-c90d-4edd-9234-55056abda403 ;
stirdl:hasAmbientOperatingTemperatureRangeInstance
stirdl:R-def44dd7-00b8-4f9e-a295-3ca89a2607db ;
stirdl:hasCEIdentificationCode "CE1180"^^xsd:string ;
stirdl:hasInstallationAndRemovalProcedureReference
stirdl:R-55d08a35-40aa-448e-acd9-a492d5c8ea83 ;
stirdl:hasManufacturingCompanyName
"EMERSON PROCESS MANAGEMENT"^^xsd:string ;
stirdl:hasMeasurementAndArrangementDrawingReference
stirdl:R-ad181432-b0fc-4e22-8194-fe83bd203cb2 , stirdl:R-ca71a4bf-838d-4568-9436-61c1cdd6f2b3 ;
stirdl:hasOperationAndMaintenanceInstructionsReference
stirdl:R-95abf14e-ccde-4f01-9bfb-040256ddec59 ;
stirdl:hasPowerConsumptionRangeInstance
stirdl:R-400968a0-580b-466a-bf6b-61dcf856da36 ;
stirdl:hasProductDescriptionAndOrderingInformationReference
stirdl:R-e6da3083-e349-4652-888e-316bece92a4c ;
stirdl:hasSectionalDrawingReference
stirdl:R-ae2fad29-d022-44aa-9689-34a37b23c0b1 , stirdl:R-02b79b3d-3d51-4575-9799-035a2d1defae ;
stirdl:hasWeightRangeInstance stirdl:R-e3488a2a-2d69-44cf-b3a8-4e0bc1aac2cb .
stirdl:R-75320f38-70e4-4a1e-9c71-bfbc023c6d02
rdfs:label "+/- 0.055 %"^^xsd:string ;
rdfs:subClassOf stirdl:RDS627075900 ;
rdl:defaultRdsId "R-75320f38-70e4-4a1e-9c71-bfbc023c6d02"^^xsd:string ;
stirdl:hasLowerLimitPercentage stirdl:R-70353b9e-fcdb-4f7f-a322-9ad3e1f153f7 ;
stirdl:hasUpperLimitPercentage stirdl:R-a87ce4c8-5f4b-48d0-b822-8ca0672da6fa .
stirdl:R-33f23b04-07af-425c-94d5-ecca47c63690
a lci:TextString , stirdl:RDS1386450251 ;
rdfs:label "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string ;
rdl:hasDefinition "3051S2CG5A2B11X5JWA1WK1C1I1M5P1Q4Q8"^^xsd:string .
stirdl:R-15fc83cd-2c36-4f44-be73-fbdd346f6784
rdfs:label "+/- 0.055 %"^^xsd:string ;
rdfs:subClassOf stirdl:RDS627075900 ;
rdl:defaultRdsId "R-15fc83cd-2c36-4f44-be73-fbdd346f6784"^^xsd:string ;
stirdl:hasLowerLimitPercentage stirdl:R-01aba47f-59cb-452a-b0df-b586183acd72 ;
stirdl:hasUpperLimitPercentage stirdl:R-ed8bb851-d4bf-4fdd-aba7-bf9a96f3c82a .
stirdl:hasUpperLimitPower
rdfs:subPropertyOf lci:hasUpperLimit .
stirdl:R-e92c1bcd-fc97-48d5-86a8-cd4bb4649d35
rdfs:label "-0.98"^^xsd:string ;
rdl:defaultRdsId "R-e92c1bcd-fc97-48d5-86a8-cd4bb4649d35"^^xsd:string ;
stirdl:RDS1348919 "-0.98"^^xsd:float .
stirdl:R-ed8bb851-d4bf-4fdd-aba7-bf9a96f3c82a
rdfs:label "0.055"^^xsd:string ;
stirdl:RDS1317959 "0.055"^^xsd:float .
stirdl:R-6d000cab-ff80-4eae-9300-190a48e92c49
rdfs:label "4.7"^^xsd:string ;
stirdl:RDS1328669 "4.7"^^xsd:float .
stirdl:R-8010f348-1c86-423d-a3b3-f77c470935b5
rdfs:label "Electronic Module"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1413185365 , stirdl:RDS1413185363 , stirdl:RDS1422805611 ;
rdl:defaultRdsId "R-8010f348-1c86-423d-a3b3-f77c470935b5"^^xsd:string ;
stirdl:hasCommunicationStandard
stirdl:R-6a7738ab-d932-472a-8f18-1952037fc72b ;
stirdl:hasLowerLimitPressureMeasuringSpanInstance
stirdl:R-e4f45dd0-9f8a-40f1-94cd-4e1bbb755a36 ;
stirdl:hasPercentageAccuracyInstance
stirdl:R-75320f38-70e4-4a1e-9c71-bfbc023c6d02 ;
stirdl:hasUpperLimitPressureMeasuringSpanInstance
stirdl:R-9cc0501a-465f-4a8e-bca6-46d4295b3305 .
stirdl:R-74383194-e697-4037-8219-3402a524726f
rdfs:label "80"^^xsd:string ;
stirdl:RDS1322684 "80"^^xsd:float .
stirdl:R-43c93c5d-036a-4037-9446-a8b4887946d5
rdfs:label "Silicone oil"^^xsd:string ;
rdfs:subClassOf stirdl:RDS6696832 ;
rdl:defaultRdsId "R-43c93c5d-036a-4037-9446-a8b4887946d5"^^xsd:string .
stirdl:R-ed92701d-c890-4d38-ba1e-faa697d5cf2a
rdfs:label "10.3"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-ed92701d-c890-4d38-ba1e-faa697d5cf2a"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-15bfe718-cd0f-4022-bc92-a3be587d8f1a .
stirdl:R-aef81190-8631-4c47-9b53-bd1cd6970a05
rdfs:label "-1.0"^^xsd:string ;
rdl:defaultRdsId "R-aef81190-8631-4c47-9b53-bd1cd6970a05"^^xsd:string ;
stirdl:RDS1348919 "-1.0"^^xsd:float .
stirdl:R-f5ed4253-843c-4571-9c90-522168a080e3
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-44e25d15-38bd-48aa-a71c-78d2ee47f413
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-44e25d15-38bd-48aa-a71c-78d2ee47f413"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-b973d547-5063-44a8-8be7-1e45c6d07791
rdfs:label "42.4"^^xsd:string ;
stirdl:RDS1347974 "42.4"^^xsd:float .
stirdl:R-94223107-787b-4896-9b53-4ed42f8281e6
rdfs:label "-1.0"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-94223107-787b-4896-9b53-4ed42f8281e6"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-0efaebf8-aa64-4d80-b430-96e14bf3d877 .
stirdl:R-eed7f4fc-4538-4f67-997a-8daae826740b
a lci:TextString ;
rdfs:label "Rosemount 3051 Pressure Transmitter"^^xsd:string ;
rdl:defaultRdsId "R-eed7f4fc-4538-4f67-997a-8daae826740b"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/03/88/42/41/3051_IOM.pdf"^^xsd:string .
stirdl:R-9863dda5-11fd-4a84-97a1-2ba03edad01d
a lci:TextString ;
rdfs:label "Rosemount 3051S Series Scalable Pressure, Flow, and Level Solution"^^xsd:string ;
rdl:defaultRdsId "R-9863dda5-11fd-4a84-97a1-2ba03edad01d"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/01/66/38/46/3051S_IOM.pdf"^^xsd:string .
stirdl:R-f1157f51-ae78-40c8-b8dc-81a0850e0bb2
a lci:TextString ;
rdfs:label "TEK-00821585"^^xsd:string ;
rdl:defaultRdsId "R-f1157f51-ae78-40c8-b8dc-81a0850e0bb2"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/03/88/42/42/TEK-00821585.pdf"^^xsd:string .
stirdl:R-bf0a732c-5076-474d-a3d7-4db4abf3e4a6
rdfs:label "3.8"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1468222121 ;
rdl:defaultRdsId "R-bf0a732c-5076-474d-a3d7-4db4abf3e4a6"^^xsd:string ;
stirdl:hasNormalWeight stirdl:R-a628f15f-082d-4924-afdc-aa6a8ff6696b .
stirdl:R-5a21ea56-3f14-4ddc-a767-e5b16c702369
a lci:TextString ;
rdfs:label "TEK-00791142"^^xsd:string ;
rdl:defaultRdsId "R-5a21ea56-3f14-4ddc-a767-e5b16c702369"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/53/81/33/TEK-00791142.pdf"^^xsd:string .
stirdl:R-a78a8fd2-bd85-442b-aa1a-f61bb701ca7c
rdfs:label "10.3"^^xsd:string ;
rdl:defaultRdsId "R-a78a8fd2-bd85-442b-aa1a-f61bb701ca7c"^^xsd:string ;
stirdl:RDS1348919 "10.3"^^xsd:float .
stirdl:R-5b22b11c-b2be-4bf5-a809-703b73c724cd
rdfs:label "3.3"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1468222121 ;
rdl:defaultRdsId "R-5b22b11c-b2be-4bf5-a809-703b73c724cd"^^xsd:string ;
stirdl:hasNormalWeight stirdl:R-6f538c36-a623-438b-9997-80f3cd4552ff .
stirdl:R-5fccf7d0-3fa0-4585-80ae-5ab01a74d307
a lci:TextString ;
rdfs:label "Rosemount 3051 Pressure Transmitter"^^xsd:string ;
rdl:defaultRdsId "R-5fccf7d0-3fa0-4585-80ae-5ab01a74d307"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/03/88/42/41/3051_IOM.pdf"^^xsd:string .
stirdl:R-a4b1fcc6-cfdf-4544-a7af-acb6fb289893
rdfs:label "-0.98 - 137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-a4b1fcc6-cfdf-4544-a7af-acb6fb289893"^^xsd:string ;
stirdl:hasLowerLimitPressure stirdl:R-e92c1bcd-fc97-48d5-86a8-cd4bb4649d35 ;
stirdl:hasUpperLimitPressure stirdl:R-764cc242-ff70-46de-b553-ab38e927e5c5 .
stirdl:R-0bb62b5c-e5bf-47fa-a824-38746226eed1
a lci:TextString ;
rdfs:label "TEK-00781210"^^xsd:string ;
rdl:defaultRdsId "R-0bb62b5c-e5bf-47fa-a824-38746226eed1"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/10/33/86/TEK-00781210.pdf"^^xsd:string .
stirdl:hasSectionalDrawingReference
rdfs:label "Sectional drawing"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS2102026741 .
stirdl:R-b5d168de-fb6e-457c-92ce-56508d3b3dac
rdfs:label "0.055"^^xsd:string ;
stirdl:RDS1317959 "0.055"^^xsd:float .
stirdl:R-fd34f3f8-1822-4dfb-8a53-26c6194b184b
rdfs:label "-20 - 80"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13114692 ;
rdl:defaultRdsId "R-fd34f3f8-1822-4dfb-8a53-26c6194b184b"^^xsd:string ;
stirdl:hasLowerLimitTemperature
stirdl:R-fbf72ff5-7e06-4b5e-9f24-759a517d0139 ;
stirdl:hasUpperLimitTemperature
stirdl:R-7a5fd2b1-4e40-40f7-b340-7e0219305b1a .
stirdl:hasNormalPressureInstance
rdfs:subPropertyOf stirdl:RDS6949380 .
stirdl:R-f35a3c01-5b4e-4f6f-b04f-a728602aac82
rdfs:label "-0.98"^^xsd:string ;
rdl:defaultRdsId "R-f35a3c01-5b4e-4f6f-b04f-a728602aac82"^^xsd:string ;
stirdl:RDS1314539 "-0.98"^^xsd:float .
stirdl:R-c4d45794-60f9-47dc-89c5-c103b2428fbb
rdfs:label "80"^^xsd:string ;
stirdl:RDS1322684 "80"^^xsd:float .
stirdl:R-d8086174-3c89-40d3-bc1f-64c09b403725
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-d8086174-3c89-40d3-bc1f-64c09b403725"^^xsd:string ;
stirdl:RDS1314539 "137.9"^^xsd:float .
stirdl:R-1bc330bc-3415-4940-94d1-2ed62ab355a0
rdfs:label "137.9"^^xsd:string ;
rdl:defaultRdsId "R-1bc330bc-3415-4940-94d1-2ed62ab355a0"^^xsd:string ;
stirdl:RDS1314539 "137.9"^^xsd:float .
stirdl:R-21a4d77f-f0e7-4f10-ac4f-6f163085769b
rdfs:label "Transmitter Housing"^^xsd:string ;
rdfs:subClassOf stirdl:RDS573609921 ;
rdl:defaultRdsId "R-21a4d77f-f0e7-4f10-ac4f-6f163085769b"^^xsd:string ;
lci:featurePartOf stirdl:R-a8ee9ffa-4d13-495a-aef7-caaf43a4c14a .
stirdl:R-a8ee9ffa-4d13-495a-aef7-caaf43a4c14a
rdfs:label "Supply Connection"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1459162771 ;
rdl:defaultRdsId "R-a8ee9ffa-4d13-495a-aef7-caaf43a4c14a"^^xsd:string .
stirdl:R-95abf14e-ccde-4f01-9bfb-040256ddec59
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-95abf14e-ccde-4f01-9bfb-040256ddec59"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-cbab9f0d-9e29-4e2a-b1ac-fbc8f6af4ed7
rdfs:label "10.5"^^xsd:string ;
stirdl:RDS1347974 "10.5"^^xsd:float .
stirdl:R-30d11464-a6ab-4fbc-a48c-ca8cc1e96099
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-e7aed254-4b97-4e33-80c5-1f8d67427a22
a lci:TextString ;
rdfs:label "Rosemount 3051S Series Scalable Pressure, Flow, and Level Solution"^^xsd:string ;
rdl:defaultRdsId "R-e7aed254-4b97-4e33-80c5-1f8d67427a22"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/01/66/38/46/3051S_IOM.pdf"^^xsd:string .
stirdl:R-a991207b-4590-4d9b-af1a-0ef03c5143e6
a stirdl:RDS1386450251 , lci:TextString ;
rdfs:label "3051CG5A22A1KM5K6L4Q4Q8QTHR7"^^xsd:string ;
rdl:hasDefinition "3051CG5A22A1KM5K6L4Q4Q8QTHR7"^^xsd:string .
stirdl:R-f9ae3b29-d080-412d-9c79-d3b74f101fb1
rdfs:label "Silicone oil"^^xsd:string ;
rdfs:subClassOf stirdl:RDS6696832 ;
rdl:defaultRdsId "R-f9ae3b29-d080-412d-9c79-d3b74f101fb1"^^xsd:string .
stirdl:R-e289b49f-c2a6-42a1-ad70-411978edf394
rdfs:label "-137.9"^^xsd:string ;
rdl:defaultRdsId "R-e289b49f-c2a6-42a1-ad70-411978edf394"^^xsd:string ;
stirdl:RDS1314539 "-137.9"^^xsd:float .
stirdl:R-ef234604-e36f-4bf5-b33e-270e1cdfb8c5
a lci:TextString ;
rdfs:label "Rosemount 3051S Series Scalable Pressure, Flow, and Level Solution"^^xsd:string ;
rdl:defaultRdsId "R-ef234604-e36f-4bf5-b33e-270e1cdfb8c5"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/01/66/38/46/3051S_IOM.pdf"^^xsd:string .
stirdl:R-1ad4ec4d-da5e-4862-a704-ccaa3faaf2ab
rdfs:label "Pressure Element"^^xsd:string ;
rdfs:subClassOf stirdl:RDS708344 , stirdl:RDS427634 , stirdl:RDS462104 ;
rdl:defaultRdsId "R-1ad4ec4d-da5e-4862-a704-ccaa3faaf2ab"^^xsd:string ;
stirdl:hasAdjustablePressureMeasuringRangeInstance
stirdl:R-61e021f9-6adc-442e-9cd9-14c28efd2338 ;
stirdl:hasFillingFluid stirdl:R-157630a4-035c-4cd8-95d5-4aa9b61030bf .
stirdl:hasNormalWeight
rdfs:subPropertyOf stirdl:RDS7601554 .
stirdl:R-7183e7f3-4a74-44a7-b777-56d137dd1a72
rdfs:label "Pressure Transmitter Body"^^xsd:string ;
rdfs:subClassOf stirdl:RDS820709 , stirdl:RDS419849 ;
rdl:defaultRdsId "R-7183e7f3-4a74-44a7-b777-56d137dd1a72"^^xsd:string ;
stirdl:hasSourServiceSpecification
stirdl:R-79d08a6d-32c5-4e7b-ac22-b28520e8d547 .
stirdl:R-c66078a1-a19c-4f79-82a1-549feaba0e7a
rdfs:label "-137.9"^^xsd:string ;
rdl:defaultRdsId "R-c66078a1-a19c-4f79-82a1-549feaba0e7a"^^xsd:string ;
stirdl:RDS1348919 "-137.9"^^xsd:float .
stirdl:R-fbf72ff5-7e06-4b5e-9f24-759a517d0139
rdfs:label "-20"^^xsd:string ;
stirdl:RDS1322684 "-20"^^xsd:float .
stirdl:R-fc7905cf-0836-4a3d-9804-a3d94124ef5e
rdfs:label "-20"^^xsd:string ;
stirdl:RDS1322684 "-20"^^xsd:float .
stirdl:R-ca71a4bf-838d-4568-9436-61c1cdd6f2b3
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-ca71a4bf-838d-4568-9436-61c1cdd6f2b3"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-e6d6e973-8c0c-4820-8916-6db10240a318
rdfs:label "-0.98"^^xsd:string ;
rdl:defaultRdsId "R-e6d6e973-8c0c-4820-8916-6db10240a318"^^xsd:string ;
stirdl:RDS1348919 "-0.98"^^xsd:float .
stirdl:R-4aec22b9-6e9f-4317-9535-80ad9b7f9ba4
rdfs:label "42.4"^^xsd:string ;
stirdl:RDS1347974 "42.4"^^xsd:float .
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-01aba47f-59cb-452a-b0df-b586183acd72
rdfs:label "-0.055"^^xsd:string ;
stirdl:RDS1317959 "-0.055"^^xsd:float .
stirdl:R-35b7adb9-c736-467d-881e-8829473dfbdd
rdfs:label "-20 - 80"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13114692 ;
rdl:defaultRdsId "R-35b7adb9-c736-467d-881e-8829473dfbdd"^^xsd:string ;
stirdl:hasLowerLimitTemperature
stirdl:R-edcc0967-9118-4ff4-9752-0e9c48592c48 ;
stirdl:hasUpperLimitTemperature
stirdl:R-9d054b72-ec8d-407d-b3bf-6dcea9059498 .
stirdl:R-8072333b-e9c4-489d-954f-1466491cf24a
a lci:TextString ;
rdfs:label "Rosemount 3051 Pressure Transmitter"^^xsd:string ;
rdl:defaultRdsId "R-8072333b-e9c4-489d-954f-1466491cf24a"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/03/88/42/41/3051_IOM.pdf"^^xsd:string .
stirdl:R-9cf9f2b1-2776-4f4e-9b10-d70dab11df5f
rdfs:label "-0.98"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-9cf9f2b1-2776-4f4e-9b10-d70dab11df5f"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-c32a64c9-001a-42c8-9dae-9e93217148ee .
stirdl:hasCEIdentificationCode
a stirdl:RDS1387343801 .
stirdl:R-40bd9e7c-9213-43da-b9a9-f7f1a38bd179
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-40bd9e7c-9213-43da-b9a9-f7f1a38bd179"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-149869a8-8c02-4ba8-ba48-26ad4221df9f
rdfs:label "Coplanar Flange"^^xsd:string ;
rdl:defaultRdsId "R-149869a8-8c02-4ba8-ba48-26ad4221df9f"^^xsd:string ;
stirdl:hasProcessConnection stirdl:R-85051e0f-f84b-447b-bc6f-320cec3e450f .
stirdl:R-37af0236-4e41-41f1-90b7-b359c22813af
rdfs:label "4.6"^^xsd:string ;
stirdl:RDS1328669 "4.6"^^xsd:float .
stirdl:R-3fa38c2b-51f7-4f7f-bebb-4bfc16fc3f76
rdfs:label "10.5 - 42.4"^^xsd:string ;
rdfs:subClassOf stirdl:RDS16805172 ;
rdl:defaultRdsId "R-3fa38c2b-51f7-4f7f-bebb-4bfc16fc3f76"^^xsd:string ;
stirdl:hasLowerLimitVoltage stirdl:R-cbab9f0d-9e29-4e2a-b1ac-fbc8f6af4ed7 ;
stirdl:hasUpperLimitVoltage stirdl:R-4aec22b9-6e9f-4317-9535-80ad9b7f9ba4 .
stirdl:R-aaa049da-181c-41fa-81eb-55abb675e724
rdfs:label "Electronic Module"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1422805611 , stirdl:RDS1413185365 , stirdl:RDS1413185363 ;
rdl:defaultRdsId "R-aaa049da-181c-41fa-81eb-55abb675e724"^^xsd:string ;
stirdl:hasCommunicationStandard
stirdl:R-274c5eab-72cd-47a6-b204-7220802e3ccd ;
stirdl:hasLowerLimitPressureMeasuringSpanInstance
stirdl:R-9cf9f2b1-2776-4f4e-9b10-d70dab11df5f ;
stirdl:hasPercentageAccuracyInstance
stirdl:R-b826e857-9175-4260-bb86-21f3b00ddf13 ;
stirdl:hasSupplyVoltageRangeInstance
stirdl:R-8d97ff77-d26e-46cf-8db4-3fb774d95be5 ;
stirdl:hasUpperLimitElectricalLoadInstance
stirdl:R-b2c6499e-f248-4751-a50a-f3490b6962a6 ;
stirdl:hasUpperLimitPressureMeasuringSpanInstance
stirdl:R-09228cc1-e0e1-4657-a471-791463ba0495 .
stirdl:R-5ce4fe70-b0e5-414d-b0af-9df99220b42e
rdfs:label "Supply Connection"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1459162771 ;
rdl:defaultRdsId "R-5ce4fe70-b0e5-414d-b0af-9df99220b42e"^^xsd:string .
stirdl:hasAdjustablePressureMeasuringRangeInstance
rdfs:subPropertyOf stirdl:hasAdjustablePressureMeasuringRange .
stirdl:R-6f538c36-a623-438b-9997-80f3cd4552ff
rdfs:label "3.3"^^xsd:string ;
stirdl:RDS1328669 "3.3"^^xsd:float .
stirdl:R-85051e0f-f84b-447b-bc6f-320cec3e450f
rdfs:label "ASME B1.20.1 1/4 - 18 NPT"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1442382761 , stirdl:RDS733634 ;
rdl:defaultRdsId "R-85051e0f-f84b-447b-bc6f-320cec3e450f"^^xsd:string .
stirdl:R-81db8adb-2e8f-4b6e-81c5-aced0a656510
rdfs:label "10.5"^^xsd:string ;
stirdl:RDS1347974 "10.5"^^xsd:float .
stirdl:R-2450825b-8c4b-4cd5-955a-5f0e758dbb86
rdfs:label "137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-2450825b-8c4b-4cd5-955a-5f0e758dbb86"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-d8086174-3c89-40d3-bc1f-64c09b403725 .
stirdl:R-eaf702c4-8c89-40e7-97ca-6a581c01caa0
rdfs:label "+/- 0.055 %"^^xsd:string ;
rdfs:subClassOf stirdl:RDS627075900 ;
rdl:defaultRdsId "R-eaf702c4-8c89-40e7-97ca-6a581c01caa0"^^xsd:string ;
stirdl:hasLowerLimitPercentage stirdl:R-845c16ae-3432-4612-bfea-ab0451b64294 ;
stirdl:hasUpperLimitPercentage stirdl:R-b5d168de-fb6e-457c-92ce-56508d3b3dac .
stirdl:R-307b93ec-e370-45d6-929d-5d13075380aa
rdfs:label "4.7"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1468222121 ;
rdl:defaultRdsId "R-307b93ec-e370-45d6-929d-5d13075380aa"^^xsd:string ;
stirdl:hasNormalWeight stirdl:R-6d000cab-ff80-4eae-9300-190a48e92c49 .
stirdl:R-601841a7-e731-414b-b66b-318a9334de5a
rdfs:label "-137.9 - 137.9"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-601841a7-e731-414b-b66b-318a9334de5a"^^xsd:string ;
stirdl:hasLowerLimitPressure stirdl:R-c66078a1-a19c-4f79-82a1-549feaba0e7a ;
stirdl:hasUpperLimitPressure stirdl:R-7ab73111-25dc-40dd-9b3b-800d1b4680f0 .
stirdl:R-e8597cb1-620b-4b3b-a1c7-717f76fd6c39
rdfs:label "Coplanar Flange"^^xsd:string ;
rdl:defaultRdsId "R-e8597cb1-620b-4b3b-a1c7-717f76fd6c39"^^xsd:string ;
stirdl:hasProcessConnection stirdl:R-4edcd4de-9a92-4796-b784-a475c5323cca .
stirdl:R-2b120096-4bed-437b-801d-af994f725513
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-a628f15f-082d-4924-afdc-aa6a8ff6696b
rdfs:label "3.8"^^xsd:string ;
stirdl:RDS1328669 "3.8"^^xsd:float .
stirdl:R-b826e857-9175-4260-bb86-21f3b00ddf13
rdfs:label "+/- 0.04 %"^^xsd:string ;
rdfs:subClassOf stirdl:RDS627075900 ;
rdl:defaultRdsId "R-b826e857-9175-4260-bb86-21f3b00ddf13"^^xsd:string ;
stirdl:hasLowerLimitPercentage stirdl:R-91aad328-e00c-4435-8504-9a347f500ce6 ;
stirdl:hasUpperLimitPercentage stirdl:R-e5466de0-e8b6-42eb-b8ad-e2e9fdb35a44 .
stirdl:R-c32a64c9-001a-42c8-9dae-9e93217148ee
rdfs:label "-0.98"^^xsd:string ;
rdl:defaultRdsId "R-c32a64c9-001a-42c8-9dae-9e93217148ee"^^xsd:string ;
stirdl:RDS1314539 "-0.98"^^xsd:float .
stirdl:R-1d891528-7d85-4cb4-b4aa-393b4ab79f9f
rdfs:label "Pressure Element"^^xsd:string ;
rdfs:subClassOf stirdl:RDS12837115 , stirdl:RDS708344 , stirdl:RDS462104 ;
rdl:defaultRdsId "R-1d891528-7d85-4cb4-b4aa-393b4ab79f9f"^^xsd:string ;
stirdl:hasAdjustablePressureMeasuringRangeInstance
stirdl:R-a4b1fcc6-cfdf-4544-a7af-acb6fb289893 ;
stirdl:hasFillingFluid stirdl:R-43c93c5d-036a-4037-9446-a8b4887946d5 .
stirdl:R-e6da3083-e349-4652-888e-316bece92a4c
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-e6da3083-e349-4652-888e-316bece92a4c"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-6a7738ab-d932-472a-8f18-1952037fc72b
a lci:TextString ;
rdfs:label "HART"^^xsd:string ;
rdl:defaultRdsId "R-6a7738ab-d932-472a-8f18-1952037fc72b"^^xsd:string .
stirdl:R-beadc2b4-3d1e-40ef-9f4d-0e7859c14bf2
a lci:TextString ;
rdfs:label "NACE MR 01-75"^^xsd:string ;
rdl:defaultRdsId "R-beadc2b4-3d1e-40ef-9f4d-0e7859c14bf2"^^xsd:string ;
rdl:hasDefinition "NACE MR 01-75"^^xsd:string .
stirdl:R-235d1364-26f4-4ba9-8599-1505a3cb0238
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-235d1364-26f4-4ba9-8599-1505a3cb0238"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:hasProductDescriptionAndOrderingInformationReference
rdfs:label "Product description and ordering information"^^xsd:string ;
rdfs:subPropertyOf stirdl:RDS1465587841 .
stirdl:R-a50a4797-c14a-4998-9bb8-8e66ef83c9ff
rdfs:label "Supply Connection"^^xsd:string ;
rdfs:subClassOf stirdl:RDS1459162771 ;
rdl:defaultRdsId "R-a50a4797-c14a-4998-9bb8-8e66ef83c9ff"^^xsd:string .
stirdl:R-0dbdc198-381d-4ce5-b1a3-b7f26252e8c8
rdfs:label "Coplanar Flange"^^xsd:string ;
rdl:defaultRdsId "R-0dbdc198-381d-4ce5-b1a3-b7f26252e8c8"^^xsd:string ;
stirdl:hasProcessConnection stirdl:R-468adc15-1bf7-4232-be3a-c310491ab437 .
stirdl:R-b2d17618-7bcb-4cd7-b825-a15f48cf7375
rdfs:label "Pressure Transmitter Body"^^xsd:string ;
rdfs:subClassOf stirdl:RDS820709 , stirdl:RDS419849 ;
rdl:defaultRdsId "R-b2d17618-7bcb-4cd7-b825-a15f48cf7375"^^xsd:string ;
stirdl:hasSourServiceSpecification
stirdl:R-6b02d860-ee49-4d43-b0fa-c02092f418af .
stirdl:hasSupplyVoltageRangeInstance
rdfs:subPropertyOf stirdl:RDS1411396881 .
stirdl:R-61e021f9-6adc-442e-9cd9-14c28efd2338
rdfs:label "-0.98 - 2.5"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-61e021f9-6adc-442e-9cd9-14c28efd2338"^^xsd:string ;
stirdl:hasLowerLimitPressure stirdl:R-e6d6e973-8c0c-4820-8916-6db10240a318 ;
stirdl:hasUpperLimitPressure stirdl:R-46cb9311-73ca-4df8-b606-f0db0d52924d .
stirdl:R-ae2fad29-d022-44aa-9689-34a37b23c0b1
a lci:TextString ;
rdfs:label "TEK-00781182"^^xsd:string ;
rdl:defaultRdsId "R-ae2fad29-d022-44aa-9689-34a37b23c0b1"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/12/32/51/TEK-00781182.pdf"^^xsd:string .
stirdl:R-50c50e8a-14ff-4701-941f-e46202d79c10
rdfs:label "2.5"^^xsd:string ;
rdl:defaultRdsId "R-50c50e8a-14ff-4701-941f-e46202d79c10"^^xsd:string ;
stirdl:RDS1314539 "2.5"^^xsd:float .
stirdl:R-126faad6-3999-42ac-82d7-0531dc65cbad
rdfs:label "-40"^^xsd:string ;
stirdl:RDS1322684 "-40"^^xsd:float .
stirdl:R-f7c34dbf-50d6-4dc5-85e1-2f624ea53467
rdfs:label "10"^^xsd:string ;
stirdl:RDS1336634 "10"^^xsd:float .
stirdl:R-79d08a6d-32c5-4e7b-ac22-b28520e8d547
a lci:TextString ;
rdfs:label "NACE MR 01-75"^^xsd:string ;
rdl:defaultRdsId "R-79d08a6d-32c5-4e7b-ac22-b28520e8d547"^^xsd:string ;
rdl:hasDefinition "NACE MR 01-75"^^xsd:string .
stirdl:R-def44dd7-00b8-4f9e-a295-3ca89a2607db
rdfs:label "-20 - 80"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13114692 ;
rdl:defaultRdsId "R-def44dd7-00b8-4f9e-a295-3ca89a2607db"^^xsd:string ;
stirdl:hasLowerLimitTemperature
stirdl:R-fc7905cf-0836-4a3d-9804-a3d94124ef5e ;
stirdl:hasUpperLimitTemperature
stirdl:R-c4d45794-60f9-47dc-89c5-c103b2428fbb .
stirdl:hasLowerLimitVoltage
rdfs:subPropertyOf lci:hasLowerLimit .
stirdl:R-e5ef86d6-7dcc-4b06-b38f-f611a0af5c1b
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-e5ef86d6-7dcc-4b06-b38f-f611a0af5c1b"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:R-8c30f0c4-0d46-4677-88ad-1cda1b1d17d4
rdfs:label "Pressure Transmitter Body"^^xsd:string ;
rdfs:subClassOf stirdl:RDS820709 , stirdl:RDS419849 ;
rdl:defaultRdsId "R-8c30f0c4-0d46-4677-88ad-1cda1b1d17d4"^^xsd:string ;
stirdl:hasSourServiceSpecification
stirdl:R-beadc2b4-3d1e-40ef-9f4d-0e7859c14bf2 .
stirdl:R-02b79b3d-3d51-4575-9799-035a2d1defae
a lci:TextString ;
rdfs:label "Rosemount 3051S Wireless Series Pressure, Level, and Flow Solutions with WirelessHART™ Protocol"^^xsd:string ;
rdl:defaultRdsId "R-02b79b3d-3d51-4575-9799-035a2d1defae"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/09/76/81/IOM_WIRELESS.pdf"^^xsd:string .
stirdl:hasUpperLimitElectricalLoadInstance
rdfs:subPropertyOf stirdl:hasUpperLimitElectricalLoad .
stirdl:R-9cc0501a-465f-4a8e-bca6-46d4295b3305
rdfs:label "2.5"^^xsd:string ;
rdfs:subClassOf stirdl:RDS13115064 ;
rdl:defaultRdsId "R-9cc0501a-465f-4a8e-bca6-46d4295b3305"^^xsd:string ;
stirdl:hasNormalPressureInstance
stirdl:R-50c50e8a-14ff-4701-941f-e46202d79c10 .
stirdl:R-d7b8c4ec-051d-448d-b7a8-befc612989b8
rdfs:label "Pressure Element"^^xsd:string ;
rdfs:subClassOf stirdl:RDS708344 , stirdl:RDS12836035 , stirdl:RDS462104 ;
rdl:defaultRdsId "R-d7b8c4ec-051d-448d-b7a8-befc612989b8"^^xsd:string ;
stirdl:hasAdjustablePressureMeasuringRangeInstance
stirdl:R-84d2377d-3087-428d-86f1-4dab49a626ca ;
stirdl:hasFillingFluid stirdl:R-f9ae3b29-d080-412d-9c79-d3b74f101fb1 .
stirdl:R-9575e67f-45e7-4c4b-83f6-aad28c3a1cb3
a lci:TextString ;
rdfs:label "TEK-00791142"^^xsd:string ;
rdl:defaultRdsId "R-9575e67f-45e7-4c4b-83f6-aad28c3a1cb3"^^xsd:string ;
rdl:hasDefinition "/DocArchive/0/02/53/81/33/TEK-00791142.pdf"^^xsd:string .