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

4 Information requirements

This clause specifies the information requirements for the Product environment definition 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_definition_arm schema and identifies the necessary external references.

EXPRESS specification:

*)
SCHEMA Product_environment_definition_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_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_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_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 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_view_definition_relationship);
END_TYPE;
(*

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

4.2.3 environment_item   EXPRESS-G

The environment_item type is an extensible list of alternate data types. Additional alternate data types are specified in select data types that extend the 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 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 Environment_assignment   EXPRESS-GMapping table

A Environment_assignment is an assignment of a product to the environment in which it operates or is supported.

EXPRESS specification:

*)
ENTITY Environment_assignment;
  environment : Environment_definition_view;
  item : environment_item;
END_ENTITY;
(*

Attribute definitions:

environment: the Environment_definition_view in which the product is supported or operates.

item: the product that is or planned to be operating in the environment.

4.3.2 Environment_definition   EXPRESS-GMapping table

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

4.3.3 Environment_definition_version   EXPRESS-GMapping table

A Environment_definition_version is a type of Product_version that identifies a particular version of an Environment_definition.

EXPRESS specification:

*)
ENTITY Environment_definition_version
  SUBTYPE OF (Product_version);
  SELF\Product_version.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.

4.3.4 Environment_definition_view   EXPRESS-GMapping table

A Environment_definition_view is a type of Product_view_definition 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.

NOTE    The characteristics include the resources available, the locations in which the product is to operate as well as climatic conditions such temperature ranges.

EXPRESS specification:

*)
ENTITY Environment_definition_view
  SUBTYPE OF (Product_view_definition);
  SELF\Product_view_definition.defined_version RENAMED defined_environment_version : Environment_definition_version;
END_ENTITY;
(*

Attribute definitions:

defined_environment_version: the Environment_definition_version that the Environment_definition_view defines.

4.3.5 Environment_view_definition_relationship   EXPRESS-GMapping table

A Environment_view_definition_relationship is a type of View_definition_relationship that represents an association between two Environment_definition_view objects.

EXPRESS specification:

*)
ENTITY Environment_view_definition_relationship
  SUBTYPE OF (View_definition_relationship);
  SELF\View_definition_relationship.relating_view RENAMED relating_environment : Environment_definition_view;
  SELF\View_definition_relationship.related_view 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_arm
(*


© ISO 2011 — All rights reserved