CONTROL in RDL

Post Reply
Message
Author
coucou
Posts: 7
Joined: Thu Jun 13, 2013 2:45 pm

CONTROL in RDL

#1 Post 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,

HansTeijgeler
Posts: 283
Joined: Sun Jan 22, 2012 10:02 pm

Re: CONTROL in RDL

#2 Post 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>

Post Reply