AP scope | AP module | AP contents | AP index | |
Application module: Extended measure representation | ISO/TS 10303-1106:2006(E) © ISO |
This clause specifies the information requirements for the Extended measure representation application module. The information requirements are specified as the Application Reference Model (ARM) of this application module.
NOTE 1 A graphical representation of the information requirements is given in Annex C.
NOTE 2 The mapping specification is specified in 5.1. It shows how the information requirements are met by using common resources and constructs defined or imported in the MIM schema of this application module.
The following EXPRESS specification begins the Extended_measure_representation_arm schema and identifies the necessary external references.
EXPRESS specification:
*)
SCHEMA Extended_measure_representation_arm;
(*
The following EXPRESS interface statements specify the elements imported from the ARMs of other application modules.
EXPRESS specification:
*)
USE FROM
Measure_representation_arm;
--
ISO/TS 10303-1118
USE FROM
Value_with_unit_arm;
--
ISO/TS 10303-1054
(*
NOTE 1 The schemas referenced above are specified in the following part of ISO 10303:
Measure_representation_arm ISO/TS 10303-1118 Value_with_unit_arm ISO/TS 10303-1054
NOTE 2 See Annex C, Figures C.1and C.2 for a graphical representation of this schema.
This subclause specifies the ARM type for this application module. The ARM type and definition is specified below.
EXPRESS specification:
*)
TYPE
limit_qualifier_list =
ENUMERATION
OF
(minimum,
maximum);
END_TYPE;
(*
Enumerated item definitions:
minimum: specifies that the limit is a lower limit.
maximum: specifies that the limit is an upper limit.
This subclause specifies the ARM entities for this module. Each ARM application entity is an atomic element that embodies a unique application concept and contains attributes specifying the data elements of the entity. The ARM entities and definitions are specified below.
EXPRESS specification:
*)
ENTITY Measure_item_with_precision
SUBTYPE OF (Measure_item);
significant_digits : INTEGER;
END_ENTITY;
(*
Attribute definitions:
significant_digits: the number of digits that are significant.
EXPRESS specification:
*)
ENTITY Qualified_property_value_representation
SUBTYPE OF (Property_value_representation);
value_determination :
OPTIONAL
STRING;
qualifier :
OPTIONAL
STRING;
END_ENTITY;
(*
Attribute definitions:
value_determination: the method by which the value has been determined. The value of this attribute need not be specified. Where applicable the following values shall be used:
qualifier: the qualification that applies to the representation of the property value. The value of this attribute need not be specified. Where applicable the following values shall be used:
EXPRESS specification:
*)
ENTITY Value_limit
SUBTYPE OF (Measure_item);
limit_qualifier : limit_qualifier_list;
limit : Value_with_unit;
END_ENTITY;
(*
Attribute definitions:
limit_qualifier: the kind of limit.
limit: the qualified quantity value.
EXPRESS specification:
*)
ENTITY Value_limit_with_global_unit
SUBTYPE OF (Measure_item);
limit : Numerical_item_with_global_unit;
limit_qualifier : limit_qualifier_list;
END_ENTITY;
(*
Attribute definitions:
limit: the qualified quantity value.
limit_qualifier: the kind of limit.
EXAMPLE A Measure_item may be composed of different values such as 'mass', 'speed', and 'age' which are all necessary in a given context. The Value_list collects all of them in a given order, such that each is identifiable by its index in the list.
EXPRESS specification:
*)
ENTITY Value_list
SUBTYPE OF (Measure_item);
values : LIST[1:?] OF Measure_item;
END_ENTITY;
(*
Attribute definitions:
values: the values.
EXPRESS specification:
*)
ENTITY Value_range
SUBTYPE OF (Measure_item);
lower_limit : Numerical_item_with_unit;
upper_limit : Numerical_item_with_unit;
END_ENTITY;
(*
Attribute definitions:
lower_limit: the lower limit.
upper_limit: the upper limit.
EXPRESS specification:
*)
ENTITY Value_range_with_global_unit
SUBTYPE OF (Measure_item);
lower_limit : Numerical_item_with_global_unit;
upper_limit : Numerical_item_with_global_unit;
END_ENTITY;
(*
Attribute definitions:
lower_limit: the lower limit.
upper_limit: the upper limit.
EXAMPLE A Measure_item may be composed of different values such as 'mass', 'speed', and 'age' which are all necessary in a given context. The Value_set collects all of them in a given order, such that each is identifiable by its index in the list.
EXPRESS specification:
*)
ENTITY Value_set
SUBTYPE OF (Measure_item);
values : SET[1:?] OF Measure_item;
END_ENTITY;
(*
Attribute definitions:
values: the values.
EXPRESS specification:
*)
ENTITY Value_with_tolerances
SUBTYPE OF (Measure_item);
item_value : Numerical_item_with_unit;
lower_limit : REAL;
upper_limit : REAL;
END_ENTITY;
(*
Attribute definitions:
item_value: specifies the single value that is the base value for specifying the range.
lower_limit: the lower limit of the range.
upper_limit: the upper limit of the rhange.
This subclause specifies the ARM subtype constraint for this module. The subtype constraint places a constraint on the possible super-type / subtype instantiations. The ARM subtype constraint and definition is specified below.
The alternate_measure_items constraint specifies that Measure_item is an abstract supertype and that defines a constraint that applies to instances of subtypes of Measure_item.
EXPRESS specification:
*)
SUBTYPE_CONSTRAINT alternate_measure_items FOR Measure_item;
ABSTRACT SUPERTYPE;
ONEOF (Measure_item_with_precision,
Numerical_item_with_global_unit,
Numerical_item_with_unit,
Value_limit,
Value_limit_with_global_unit,
Value_list,
Value_range,
Value_range_with_global_unit,
Value_set,
Value_with_tolerances);
END_SUBTYPE_CONSTRAINT;
(*
*)
END_SCHEMA; -- Extended_measure_representation_arm
(*
© ISO 2006 — All rights reserved