Skip to content

identification_of_physical_quantity

GCHQDeveloper42 edited this page Mar 27, 2023 · 3 revisions

Identification of Physical Quantity

An identification that identifies a physical_quantity. An identification_of_physical_quantity consists of a REAL that is a representation of the value_ the physical quantity maps to on the scale.

Attributes

  • represented: A relationship type where a member_of an identification_of_physical_quantity represents exactly one physical_quantity.
    • Note: Represents by class means that each member_of an identification_of_physical_quantity represents the physical_quantity. For example any writing down of 20C represents that particular degree of hotness.
  • value_: A relationship type where an identification_of_physical_quantity consists of exactly one REAL as its value.
    • Note 1: The members of the data type REAL provide an identification of a real number.
    • Note 2: The relationship name has been renamed from consists of by class to value.
  • uses: A relationship type where an identification_of_physical_quantity uses exactly one scale.

EXPRESS Specification

Diagram 12

Schema

ENTITY identification_of_physical_quantity
  SUBTYPE OF(identification);
    SELF\representation_by_pattern.represented                         : SET [1:1] OF physical_quantity;
    SELF\representation_by_pattern.consists_of_by_class RENAMED value_ : SET [1:1] OF REAL;
    uses                                                               : scale;
END_ENTITY;
Inheritance Graph

ENTITY identification_of_physical_quantity;
  ENTITY class_of_representation;
  ENTITY representation_by_pattern;
    consists_of_in_members : SET [1:?] OF recognizing_language_community;
  ENTITY identification;
  ENTITY identification_of_physical_quantity;
    represented            : SET [1:1] OF physical_quantity;
    value_                 : SET [1:1] OF REAL;
    uses                   : scale;
END_ENTITY;
Clone this wiki locally