Sveino / Inst4CIM-KG

Instance of CIM Knowledge Graph
Apache License 2.0
5 stars 1 forks source link

cim:VoltagePerReactivePower.multiplier is defined inconsistently #77

Closed VladimirAlexiev closed 2 months ago

VladimirAlexiev commented 2 months ago

cim:VoltagePerReactivePower.multiplier cims:isFixed has two values "k" and "none". It appears in these files:

CGMES/ttl/61970-600-2_Equipment-AP-Voc-RDFS2020_v3-0-0.ttl:cim:VoltagePerReactivePower.multiplier a rdf:Property ;
CGMES-NC/ttl/EquipmentReliability-AP-Voc-RDFS2020.ttl:cim:VoltagePerReactivePower.multiplier a rdf:Property ;

This is the only case where a quantitykind uses two different multipliers.

It is NOK for two different ontologies to define different multipliers, since it's one and the same quantitykind: cim:VoltagePerReactivePower.

I delete "none" and leave "k":

delete {cim:VoltagePerReactivePower.multiplier cims:isFixed "none"}
insert {cim:VoltagePerReactivePower.multiplier cims:isFixed "k"}
where  {cim:VoltagePerReactivePower.multiplier cims:isFixed "none"};

A simple mistake like https://github.com/Sveino/Inst4CIM-KG/issues/76