-
Notifications
You must be signed in to change notification settings - Fork 1
identification_of_physical_quantity
GCHQDeveloper42 edited this page Mar 27, 2023
·
3 revisions
An
identification
that identifies aphysical_quantity
. Anidentification_of_physical_quantity
consists of a REAL that is a representation of thevalue_
the physical quantity maps to on thescale
.
-
represented
: A relationship type where amember_of
anidentification_of_physical_quantity
represents exactly onephysical_quantity
.- Note: Represents by class means that each
member_of
anidentification_of_physical_quantity
represents thephysical_quantity
. For example any writing down of 20C represents that particular degree of hotness.
- Note: Represents by class means that each
-
value_
: A relationship type where anidentification_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 anidentification_of_physical_quantity
uses exactly onescale
.
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;