Skip to content

New parameter classes #770

Description

@epaulson

Continuing with our extensions, we've got a couple of potentially useful parameter classes that Brick could consider. These are mostly just limits around setpoints, so a controller/operator can know how far or how hard they can push the system:

wsch_brick:Max_Supply_Water_Temperature_Ramp_Rate a owl:Class ;
    rdfs:subClassOf brick:Parameter ;
    rdfs:label "Supply Water Temperature Ramp Rate" ;
    rdfs:comment "The maximum allowable rate of change for the supply water temperature setpoint" .

wsch_brick:Min_Water_Flow_Setpoint_Limit a owl:Class;
    rdfs:label "Min Water Flow Setpoint Limit"@en ;
    rdfs:subClassOf brick:Limit,
        brick:Min_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Water_Flow_Setpoint."@en .

wsch_brick:Max_Water_Flow_Setpoint_Limit a owl:Class;
    rdfs:label "Max Water Flow Setpoint Limit"@en ;
    rdfs:subClassOf brick:Limit,
        brick:Max_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Water_Flow_Setpoint."@en .

wsch_brick:Min_Water_Approach_Temperature_Limit a owl:Class;
    rdfs:label "Min Water Approach Temperature Limit"@en ;
    rdfs:subClassOf brick:Limit,
        brick:Min_Limit ;
    skos:definition "A parameter that places a lower bound on the approach temperature of water-based heat exchangers. (condenser water supply temperature must be at least outdoor wet-bulb plus this value). Typically small (5-7 degrees F)" .

wsch_brick:Max_Supply_Air_Temperature_Ramp_Rate a owl:Class ;
    rdfs:subClassOf brick:Parameter ;
    rdfs:label "Supply Air Temperature Ramp Rate" ;
    rdfs:comment "The maximum allowable rate of change for the supply air temperature setpoint" .

wsch_brick:Min_Temperature_Operational_Limit a owl:Class ;
    rdfs:label "Min Temperature Operational Limit"@en ;
    rdfs:subClassOf brick:Min_Limit,
        brick:Temperature_Parameter ;
    rdfs:comment "A parameter that places a lower bound on the range of permitted values of observed temperature" .

wsch_brick:Max_Temperature_Operational_Limit a owl:Class;
    rdfs:label "Max Temperature Operational Limit"@en ;
    rdfs:subClassOf brick:Max_Limit,
        brick:Temperature_Parameter ;
    rdfs:comment "A parameter that places an upper bound on the range of permitted values of observed temperature. This maybe should be a brick:alarm." .

These are all "points about points" so we've been using a new hasParameter relationship to hang them off of the points they're associated with.

These would all fall under the big point restructure work so happy to handle this or hold off on this however is best.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions