Physical Quantity Attributes

Get the physical quantity attributes of the classes in the DEXPI Information Model.

Variables

cls
The class for which the attribute is declared.
attribute
Name of the attribute.
phys_quant_type
The physical quantity type of the attribute. See Physical Quantity Types and Scales.
description

Optional. A description of the attribute.

Note

Descriptions may contain markup that is used to build the official PDF version of the DEXPI Specification. In the cached HTML, CSV, and Excel results below, this markup has been removed for better readability. For example, a description such as The \labeledref[class:]{ControlledActuator} of the <owner> will be shown as The ControlledActuator of the ActuatingSystem.

rdl
The RDL reference associated with the attribute in a DEXPI-compliant Proteus file.
is_proteus_generic_attribute
A boolean indicating if the attribute is represented as a <GenericAttribute> in a DEXPI-compliant Proteus XML file.

SPARQL Query

PREFIX meta: <http://sandbox.dexpi.org/meta/>

SELECT ?cls ?attribute ?phys_quant_type ?description ?rdl ?is_proteus_generic_attribute
WHERE
{
    [] a meta:ModelClass;
        meta:simpleLabel ?cls;
        meta:hasDeclaration ?decl.

    ?decl a meta:AttributeDeclaration;
        meta:hasTargetType [
            a meta:PhysicalQuantityType;
            meta:simpleLabel ?phys_quant_type];
        meta:simpleLabel ?attribute.

    OPTIONAL
    {
        ?decl meta:description ?description.
    }

    OPTIONAL
    {
        ?decl meta:rdl ?rdl.
    }

    BIND
    (
        EXISTS
        {
            ?decl meta:proteusImplementation [
                a meta:StandardGenericAttribute]
        }
        AS ?is_proteus_generic_attribute
    )
}
ORDER BY ?cls_label ?decl_label

Partial SPARQL Results

The full query result contains 103 rows. The first rows are as follows:

cls attribute phys_quant_type description rdl is_proteus_generic_attribute
Agitator DesignShaftPower Power The design shaft power of the Agitator. http://sandbox.dexpi.org/rdl/DesignShaftPower true
Agitator DesignRotationalSpeed RotationalSpeed The design rotational speed of the Agitator. http://sandbox.dexpi.org/rdl/DesignRotationalSpeed true
AgitatorRotor Diameter Length The diameter of the AgitatorRotor. http://data.posccaesar.org/rdl/RDS350954 true
AgitatorRotor LengthToMountingFlange Length The length to the mounting flange of the AgitatorRotor. http://sandbox.dexpi.org/rdl/LengthToMountingFlange true
AirCoolingSystem DesignPower Power The design power of the AirCoolingSystem. http://sandbox.dexpi.org/rdl/DesignPower true
... ... ... ... ... ...

Full SPARQL Results

Cached

Note

The cached results below are guaranteed to correspond to DEXPI P&ID Specification 1.2.

Cached results:

Online

Note

Online results can change! There is no guarantee that these results correspond to DEXPI P&ID Specification 1.2.

Get results online from DEXPI SPARQL server at http://endpoint.dexpi.org: