| Application module: Product environment definition | ISO/TS 10303-1400:2011-10(E) © ISO |
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;
(*
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.
This subclause specifies the ARM types for this application module. The ARM types and definitions are specified below.

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

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

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


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.


EXPRESS specification:
*)
ENTITY Environment_definition
SUBTYPE OF (Product);
END_ENTITY;
(*


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.


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.


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