Application module: Product environment observed ISO/TS 10303-1401:2011-10(E)
© ISO

Cover page
Table of contents
Copyright
Foreword
Introduction
1 Scope
2 Normative references
3 Terms, definitions and abbreviated terms
    3.1 Terms and definitions
    3.2 Abbreviated terms

4 Information requirements
   4.1 Required AM ARMs
   4.2 ARM type definitions
   4.3 ARM entity definitions
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing
     5.2.1 MIM type definitions
     5.2.2 MIM entity definitions

A MIM short names
B Information object registration
C ARM EXPRESS-G   EXPRESS-G
D MIM EXPRESS-G   EXPRESS-G
E Computer interpretable listings
F Change history
Bibliography
Index

4 Information requirements

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;
(*

4.1 Required AM ARMs

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.

4.2 ARM type definitions

This subclause specifies the ARM types for this application module. The ARM types and definitions are specified below.

4.2.1 env_obs_classification_item   EXPRESS-G

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;
(*

4.2.2 env_obs_identification_assignment   EXPRESS-G

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;
(*

4.2.3 observed_environment_item   EXPRESS-G

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;
(*

4.3 ARM entity definitions

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.

4.3.1 Observed_environment   EXPRESS-GMapping table

An Observed_environment is a type of Product that represents a record of observations about the environment in which a product is or has been operating.

EXPRESS specification:

*)
ENTITY Observed_environment
  SUBTYPE OF (Product);
END_ENTITY;
(*

4.3.2 Observed_environment_assignment   EXPRESS-GMapping table

An Observed_environment_assignment is an assignment of a product to the environment in which is or has operated.

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.

4.3.3 Observed_environment_to_definition   EXPRESS-GMapping table

An Observed_environment_to_definition is a relationship between a record of a set of observations about an environment, represented by an Observed_environment, and a typical environment, represented by an Environment_definition. The typical environment is the expected environment about which observations have been made.

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.

4.3.4 Observed_environment_to_definition_version   EXPRESS-GMapping table

An Observed_environment_to_definition_version is a relationship between a version of the record of a set of observations about an environment, represented by an Observed_environment_version, and a version of the typical environment, represented by Environment_definition_version. The typical environment is the expected environment about which observations have been made.

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.

4.3.5 Observed_environment_to_definition_view   EXPRESS-GMapping table

An Observed_environment_to_definition_view is a relationship between a view of the record of a set of observations about an environment, represented by an Observed_environment_view, and a view of the typical environment, represented by Environment_definition_view. The typical environment is the expected environment about which observations have been made.

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.

4.3.6 Observed_environment_version   EXPRESS-GMapping table

An Observed_environment_version is a type of Product_version that identifies a particular version of an Observed_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.

4.3.7 Observed_environment_view   EXPRESS-GMapping table

An Observed_environment_view is a type of Product_view_definition that provides a view of a version of an observed environment relevant for one or more application domains. This view collects the characteristics of the observations on the environment.

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.

4.3.8 Observed_environment_view_definition_relationship   EXPRESS-GMapping table

An Observed_environment_view_definition_relationship is a type of View_definition_relationship that represents an association between two Observed_environment_view objects.

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