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

5.2 MIM EXPRESS short listing

This clause specifies the EXPRESS schema derived from the mapping table. It uses elements from the common resources or from other application modules and defines the EXPRESS constructs that are specific to this part of ISO 10303.

This clause constitutes the Module Interpreted Module (MIM) of the application module.

This clause also specifies the modifications that apply to the constructs imported from the common resources.

The following restrictions apply to the use, in this schema, of constructs defined in common resources or in application modules:

EXPRESS specification:

*)
SCHEMA Product_environment_observed_mim;

USE FROM Classification_assignment_mim;    --  ISO/TS 10303-1114

USE FROM group_schema    --  ISO 10303-41
  (group);

USE FROM Identification_assignment_mim;    --  ISO/TS 10303-1021

USE FROM product_definition_schema    --  ISO 10303-41
  (product,
   product_definition,
   product_definition_formation,
   product_definition_formation_relationship,
   product_definition_relationship,
   product_relationship);

USE FROM Product_environment_definition_mim;    --  ISO/TS 10303-1400

USE FROM Product_group_mim;    --  ISO/TS 10303-1278

USE FROM Product_identification_mim;    --  ISO/TS 10303-1017

USE FROM product_property_definition_schema    --  ISO 10303-41
  (characterized_object);

USE FROM Product_version_mim;    --  ISO/TS 10303-1018

USE FROM Product_view_definition_mim;    --  ISO/TS 10303-1019

USE FROM Product_view_definition_relationship_mim;    --  ISO/TS 10303-1041

USE FROM Property_assignment_mim;    --  ISO/TS 10303-1030
(*

NOTE 1   The schemas referenced above are specified in the following part of ISO 10303:

Classification_assignment_mim ISO/TS 10303-1114
group_schema ISO 10303-41
Identification_assignment_mim ISO/TS 10303-1021
product_definition_schema ISO 10303-41
Product_environment_definition_mim ISO/TS 10303-1400
Product_group_mim ISO/TS 10303-1278
Product_identification_mim ISO/TS 10303-1017
product_property_definition_schema ISO 10303-41
Product_version_mim ISO/TS 10303-1018
Product_view_definition_mim ISO/TS 10303-1019
Product_view_definition_relationship_mim ISO/TS 10303-1041
Property_assignment_mim ISO/TS 10303-1030

NOTE 2   See Annex D, Figures D.1and D.2 for a graphical representation of this schema.

5.2.1 MIM type definitions

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

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

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

5.2.2 MIM entity definitions

This subclause specifies the MIM entities for this module. The MIM entities and definitions are specified below.

5.2.2.1 observed_environment   EXPRESS-G

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

5.2.2.2 observed_environment_assignment   EXPRESS-G

A observed_environment_assignment is a type of group that assigns a product to the environment in which is or has operated.

EXPRESS specification:

*)
ENTITY observed_environment_assignment
  SUBTYPE OF (group);
END_ENTITY;
(*

5.2.2.3 observed_environment_to_definition   EXPRESS-G

A observed_environment_to_definition is a type of product_relationship that relates an observed_environment to an environment_definition.

EXPRESS specification:

*)
ENTITY observed_environment_to_definition
  SUBTYPE OF (product_relationship);
  SELF\product_relationship.relating_product RENAMED defined_environment : environment_definition;
  SELF\product_relationship.related_product RENAMED observed_environment : observed_environment;
END_ENTITY;
(*

Attribute definitions:

defined_environment: the environment_definition about which the recorded observations have been made.

observed_environment: the observed_environment that comprises the set of recorded observations.

5.2.2.4 observed_environment_to_definition_version   EXPRESS-G

A observed_environment_to_definition_version is a type of product_definition_formation_relationship that relates an environment_definition_version to an observed_environment_version.

EXPRESS specification:

*)
ENTITY observed_environment_to_definition_version
  SUBTYPE OF (product_definition_formation_relationship);
  SELF\product_definition_formation_relationship.relating_product_definition_formation RENAMED defined_environment_version : environment_definition_version;
  SELF\product_definition_formation_relationship.related_product_definition_formation RENAMED observed_environment_version : observed_environment_version;
END_ENTITY;
(*

Attribute definitions:

defined_environment_version: the environment_definition_version about which the recorded observations have been made.

observed_environment_version: the observed_environment_version that comprises the set of recorded observations.

5.2.2.5 observed_environment_to_definition_view   EXPRESS-G

A observed_environment_to_definition_view is a type of product_definition_relationship that relates an environment_definition_view to an observed_environment_view.

EXPRESS specification:

*)
ENTITY observed_environment_to_definition_view
  SUBTYPE OF (product_definition_relationship);
  SELF\product_definition_relationship.relating_product_definition RENAMED defined_environment_view : observed_environment_view;
  SELF\product_definition_relationship.related_product_definition RENAMED observed_environment_view : environment_definition_view;
END_ENTITY;
(*

Attribute definitions:

defined_environment_view: the environment_definition_view about which the recorded observations have been made.

observed_environment_view: the observed_environment_view that comprises the set of recorded observations.

5.2.2.6 observed_environment_version   EXPRESS-G

A observed_environment_version is a type of product_definition_formation that represents a version of the record of observations about an environment.

EXPRESS specification:

*)
ENTITY observed_environment_version
  SUBTYPE OF (product_definition_formation);
  SELF\product_definition_formation.of_product RENAMED of_environment : observed_environment;
END_ENTITY;
(*

Attribute definitions:

of_environment: the observed_environment for which a version is identified.

5.2.2.7 observed_environment_view   EXPRESS-G

A observed_environment_view is a type of product_definition and a type of characterized_object that represents a view of the record of observations about an environment.

EXPRESS specification:

*)
ENTITY observed_environment_view
  SUBTYPE OF (characterized_object, product_definition);
  SELF\product_definition.formation RENAMED observed_environment_version : observed_environment_version;
END_ENTITY;
(*

Attribute definitions:

observed_environment_version: the observed_environment_version that represents a version of the record of observations about an environment.

5.2.2.8 observed_environment_view_definition_relationship   EXPRESS-G

A observed_environment_view_definition_relationship is a type of product_definition_relationship that represents an association between two observed_environment_view objects.

EXPRESS specification:

*)
ENTITY observed_environment_view_definition_relationship
  SUBTYPE OF (product_definition_relationship);
  SELF\product_definition_relationship.relating_product_definition RENAMED relating_environment : observed_environment_view;
  SELF\product_definition_relationship.related_product_definition 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_mim
(*


© ISO 2011 — All rights reserved