| Application module: Product environment observed | ISO/TS 10303-1401:2011-10(E) © ISO |
This clause specifies the information requirements for the Product environment observed 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.
This clause defines the information requirements to which implementations shall conform using the EXPRESS language as defined in ISO 10303-11. The following begins the Product_environment_observed_arm schema and identifies the necessary external references.
EXPRESS specification:
*)
SCHEMA Product_environment_observed_arm;
(*
The following EXPRESS interface statements specify the elements imported from the ARMs of other application modules.
EXPRESS specification:
*)
USE FROM
Classification_assignment_arm;
--
ISO/TS 10303-1114
USE FROM
Identification_assignment_arm;
--
ISO/TS 10303-1021
USE FROM
Product_environment_definition_arm;
--
ISO/TS 10303-1400
USE FROM
Product_identification_arm;
--
ISO/TS 10303-1017
USE FROM
Product_version_arm;
--
ISO/TS 10303-1018
USE FROM
Product_view_definition_arm;
--
ISO/TS 10303-1019
USE FROM
Product_view_definition_relationship_arm;
--
ISO/TS 10303-1041
(*
NOTE 1 The schemas referenced above are specified in the following part of ISO 10303:
Classification_assignment_arm ISO/TS 10303-1114 Identification_assignment_arm ISO/TS 10303-1021 Product_environment_definition_arm ISO/TS 10303-1400 Product_identification_arm ISO/TS 10303-1017 Product_version_arm ISO/TS 10303-1018 Product_view_definition_arm ISO/TS 10303-1019 Product_view_definition_relationship_arm ISO/TS 10303-1041
NOTE 2 See Annex C, Figures C.1and C.2 for a graphical representation of this schema.
This subclause specifies the ARM types for this application module. The ARM types and definitions are specified below.

The env_obs_classification_item type is an extension of the classification_item type. It adds the data types Observed_environment, Observed_environment_assignment, Observed_environment_version and Observed_environment_view_definition_relationship to the list of alternate data types.
NOTE The list of entity data types may be extended in application modules that use the constructs of this module.
EXPRESS specification:
*)
TYPE
env_obs_classification_item =
EXTENSIBLE
GENERIC_ENTITY
SELECT
BASED_ON
classification_item
WITH
(Observed_environment,
Observed_environment_assignment,
Observed_environment_version,
Observed_environment_view_definition_relationship);
END_TYPE;
(*

The env_obs_identification_assignment type is an extension of the identification_item type. It adds the data types Observed_environment, Observed_environment_assignment, Observed_environment_version and Observed_environment_view_definition_relationship to the list of alternate data types.
NOTE The list of entity data types may be extended in application modules that use the constructs of this module.
EXPRESS specification:
*)
TYPE
env_obs_identification_assignment =
EXTENSIBLE
GENERIC_ENTITY
SELECT
BASED_ON
identification_item
WITH
(Observed_environment,
Observed_environment_assignment,
Observed_environment_version,
Observed_environment_view_definition_relationship);
END_TYPE;
(*

The observed_environment_item type is an extensible list of alternate data types. Additional alternate data types are specified in select data types that extend the observed_environment_item type.
NOTE This empty extensible select requires extension in a further module to ensure that entities that refer to it have at least one valid instantiation.
EXPRESS specification:
*)
TYPE
observed_environment_item =
EXTENSIBLE
GENERIC_ENTITY
SELECT;
END_TYPE;
(*
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 Observed_environment
SUBTYPE OF (Product);
END_ENTITY;
(*


EXPRESS specification:
*)
ENTITY Observed_environment_assignment;
environment : Observed_environment_view;
item : observed_environment_item;
END_ENTITY;
(*
Attribute definitions:
environment: a record of the environment, Observed_environment_view, in which the product is supported or operates.
item: the product that is or was operating in the environment.


EXPRESS specification:
*)
ENTITY Observed_environment_to_definition;
defined_environment : Environment_definition;
observed_environment : Observed_environment;
END_ENTITY;
(*
Attribute definitions:
defined_environment: the typical environment about which the recorded observations have been made.
observed_environment: the record of observations about an environment.


EXPRESS specification:
*)
ENTITY Observed_environment_to_definition_version;
defined_environment_version : Environment_definition_version;
observed_environment_version : Observed_environment_version;
END_ENTITY;
(*
Attribute definitions:
defined_environment_version: the version of the typical environment about which the recorded observations have been made.
observed_environment_version: the version of the record of observations about an environment.


EXPRESS specification:
*)
ENTITY Observed_environment_to_definition_view;
defined_environment_view : Observed_environment_view;
observed_environment_view : Environment_definition_view;
END_ENTITY;
(*
Attribute definitions:
defined_environment_view: the view of the typical environment about which the recorded observations have been made.
observed_environment_view: the view of the record of observations about an environment.


EXPRESS specification:
*)
ENTITY Observed_environment_version
SUBTYPE OF (Product_version);
SELF\Product_version.of_product RENAMED of_environment : Observed_environment;
END_ENTITY;
(*
Attribute definitions:
of_environment: the Observed_environment for which the Observed_environment_version identifies a version.


EXPRESS specification:
*)
ENTITY Observed_environment_view
SUBTYPE OF (Product_view_definition);
SELF\Product_view_definition.defined_version RENAMED observed_environment_version : Observed_environment_version;
END_ENTITY;
(*
Attribute definitions:
observed_environment_version: the Observed_environment_version of the Observed_environment_view.


EXPRESS specification:
*)
ENTITY Observed_environment_view_definition_relationship
SUBTYPE OF (View_definition_relationship);
SELF\View_definition_relationship.relating_view RENAMED relating_environment : Observed_environment_view;
SELF\View_definition_relationship.related_view RENAMED related_environment : Observed_environment_view;
END_ENTITY;
(*
Attribute definitions:
relating_environment: one of the instances of Observed_environment_view that is a part of the relationship.
related_environment: the other instance of Observed_environment_view that is part of the relationship. If one element of the relationship is dependent upon the other, this attribute shall be the dependent one.
*)
END_SCHEMA; -- Product_environment_observed_arm
(*
© ISO 2011 — All rights reserved