physical_quantity_range - hqdmTop/hqdmFramework GitHub Wiki

Physical Quantity Range

A physical_property_range that ranges over physical_quantity values.

Attributes

  • upper_bound: A supertype_of relationship type where each physical_quantity_range must have as upper_bound exactly one physical_quantity.
  • lower_bound: A supertype_of relationship type where each physical_quantity_range must have as lower_bound exactly one physical_quantity.

EXPRESS Specification

Diagram 46

Schema

ENTITY physical_quantity_range
  SUBTYPE OF(physical_property_range);
    upper_bound : physical_quantity;
    lower_bound : physical_quantity;
END_ENTITY;
Inheritance Graph

ENTITY physical_quantity_range;
  ENTITY thing;
    member__of            : OPTIONAL SET [1:?] OF class;
  ENTITY abstract_object;
  ENTITY class;
    member_of             : OPTIONAL SET [1:?] OF class_of_class;
    has_superclass        : OPTIONAL SET [1:?] OF class;
  ENTITY class_of_spatio_temporal_extent;
    member_of_            : OPTIONAL SET [1:?] OF class_of_class_of_spatio_temporal_extent;
    part__of_by_class     : OPTIONAL SET [1:?] OF class_of_spatio_temporal_extent;
  INVERSE
    consists__of_by_class : SET [1:?] OF class_of_spatio_temporal_extent FOR part__of_by_class;
  ENTITY class_of_state;
  ENTITY physical_property_range;
    ranges_over           : SET [1:?] OF physical_property;
  ENTITY physical_quantity_range;
    upper_bound           : physical_quantity;
    lower_bound           : physical_quantity;
END_ENTITY;
⚠️ **GitHub.com Fallback** ⚠️