Application module: Product environment definition ISO/TS 10303-1400: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_definition_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 management_resources_schema;    --  ISO 10303-41

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

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

USE FROM Resource_item_mim;    --  ISO/TS 10303-1268
(*

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
management_resources_schema ISO 10303-41
product_definition_schema ISO 10303-41
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
Resource_item_mim ISO/TS 10303-1268

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_dfn_classification_item   EXPRESS-G

The env_dfn_classification_item type is an extension of the classification_item type. It adds the data types environment_assignment, environment_definition, environment_definition_version, environment_definition_view and 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_dfn_classification_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON classification_item WITH
   (environment_assignment,
    environment_definition,
    environment_definition_version,
    environment_definition_view,
    environment_view_definition_relationship);
END_TYPE;
(*

5.2.1.2 env_dfn_identification_assignment   EXPRESS-G

The env_dfn_identification_assignment type is an extension of the identification_item type. It adds the data types environment_assignment, environment_definition, environment_definition_version and 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_dfn_identification_assignment = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON identification_item WITH
   (environment_assignment,
    environment_definition,
    environment_definition_version,
    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 environment_assignment   EXPRESS-G

A environment_assignment is a type of group that assigns a product to the environment in which it operates or it is supported.

EXPRESS specification:

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

5.2.2.2 environment_definition   EXPRESS-G

A environment_definition is a type of product that is used to identify the definition of typical environment in which a product is to be, has been or is planned to be deployed in, operated in, or supported in.

EXPRESS specification:

*)
ENTITY environment_definition
  SUBTYPE OF (product);
END_ENTITY;
(*

5.2.2.3 environment_definition_version   EXPRESS-G

A environment_definition_version is a type of product_definition_formation that identifies a particular version of an environment_definition.

EXPRESS specification:

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

Attribute definitions:

of_environment: the environment_definition for which the environment_definition_version identifies a version.

5.2.2.4 environment_definition_view   EXPRESS-G

A environment_definition_view is a type of product_definition and a type of characterized_object that provides a view of a version of an environment definition relevant for one or more application domains. This view collects the characteristics that define an environment.

EXPRESS specification:

*)
ENTITY environment_definition_view
  SUBTYPE OF (characterized_object, product_definition);
  SELF\product_definition.formation RENAMED defined_environment_version : environment_definition_version;
END_ENTITY;
(*

Attribute definitions:

defined_environment_version: the environment_definition_version that the environment_definition_view defines.

5.2.2.5 environment_view_definition_relationship   EXPRESS-G

A environment_view_definition_relationship is a type of product_definition_relationship that represents an association between two environment_definition_view objects.

EXPRESS specification:

*)
ENTITY environment_view_definition_relationship
  SUBTYPE OF (product_definition_relationship);
  SELF\product_definition_relationship.relating_product_definition RENAMED relating_environment : environment_definition_view;
  SELF\product_definition_relationship.related_product_definition RENAMED related_environment : environment_definition_view;
END_ENTITY;
(*

Attribute definitions:

relating_environment: one of the instances of environment_definition_view that is a part of the relationship.

related_environment: the other instance of environment_definition_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_definition_mim
(*


© ISO 2011 — All rights reserved