Page 1 of 1

CONTROL in RDL

Posted: Tue Jul 16, 2013 10:41 am
by coucou
Hello,

In my P&ID I have different type of control that I have to mappe to the ISO 15926
For example I want to map an ON OFF PNEUMATIC CONTROLLER, but in the RDL I do not find this type of control, but I find two different class: ON OF CONTROL and PNEUMATIC CONTROLLER.

How I can do to map an object on off pneumatic controller?

Does creating a new class that will be a subclass of RDL classes ON OFF CONTROL and PNEUMATIC CONTROLLER is correct.
Regards,

Re: CONTROL in RDL

Posted: Sun Jul 21, 2013 11:04 am
by HansTeijgeler
You suggestion is correct:

Code: Select all

<dm:ClassOfInanimatePhysicalObject rdf:ID="C030cd253-e528-11e1-aff1-0800200c9a66"> 
    <rdf:type rdf:resource="&owl;Class"/>
    <rdfs:subClassOf rdf:resource="&rdl;RDS270269"/> <!--  ON OFF CONTROL -->
    <rdfs:subClassOf rdf:resource="&rdl;RDS882179"/> <!--  PNEUMATIC CONTROLLER -->
    <rdfs:label>CO_PIC-101</rdfs:label>
    <meta:valEffectiveDate rdf:datatype="&xsd;dateTime">2013-07-20T13:02:00Z</meta:valEffectiveDate>
</dm:ClassOfInanimatePhysicalObject>