Application module: Product as individual ISO/TS 10303-1164: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 definition
     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_as_individual_mim;

USE FROM Configuration_item_mim;    --  ISO/TS 10303-1056

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_related_product_category,
   product_relationship);

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

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

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

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

Configuration_item_mim ISO/TS 10303-1056
Identification_assignment_mim ISO/TS 10303-1021
product_definition_schema ISO 10303-41
Product_identification_mim ISO/TS 10303-1017
Product_version_mim ISO/TS 10303-1018
Product_view_definition_mim ISO/TS 10303-1019

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

5.2.1 MIM type definition

This subclause specifies the MIM type for this application module. The MIM type and definition is specified below.

5.2.1.1 product_as_individual_identification_item   EXPRESS-G

The product_as_individual_identification_item type is an extension of the identification_item type. It adds the data types product and product_definition_formation to the list of alternate data types.

EXPRESS specification:

*)
TYPE product_as_individual_identification_item = SELECT BASED_ON identification_item WITH
   (product,
    product_definition_formation);
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 product_as_planned   EXPRESS-G

A product_as_planned is a type of product_definition_formation that identifies an individual artefact that has yet to be made.

NOTE 1   It may be planned to make the artefact from of a version of a product design (product_definition_formation). If this is the case, then the relationship between the artefact (product_as_planned) and the design (product_definition_formation) is represented by product_design_version_to_individual.

NOTE 2   If the planned artefact product_as_planned) is subsequently made into an actual artefact (product_definition_formation) then they are related by the product_planned_to_realized relationship.

EXPRESS specification:

*)
ENTITY product_as_planned
  SUBTYPE OF (product_definition_formation);
END_ENTITY;
(*

5.2.2.2 product_design_to_individual   EXPRESS-G

A product_design_to_individual is a type of product_relationship that identifies a relationship between a product design, represented by product, and the product that is planned to be made or has been made from the design.

EXPRESS specification:

*)
ENTITY product_design_to_individual
  SUBTYPE OF (product_relationship);
  SELF\product_relationship.related_product RENAMED individual_product : product;
  SELF\product_relationship.relating_product RENAMED product_design : product;
END_ENTITY;
(*

Attribute definitions:

individual_product: the product that has been or is planned to be made from this design.

product_design: the product design that is being made.

5.2.2.3 product_design_version_to_individual   EXPRESS-G

A product_design_version_to_individual is a type of product_definition_formation_relationship that identifies a relationship between a version of a product design, represented by product_definition_formation, and the product that is planned to be made (product_as_planned) or has been made (product_definition_formation) from the design.

EXPRESS specification:

*)
ENTITY product_design_version_to_individual
  SUBTYPE OF (product_definition_formation_relationship);
  SELF\product_definition_formation_relationship.related_product_definition_formation RENAMED individual_product : product_definition_formation;
  SELF\product_definition_formation_relationship.relating_product_definition_formation RENAMED product_design_version : product_definition_formation;
END_ENTITY;
(*

Attribute definitions:

individual_product: the product that has been or is planned to be made from this version of the design.

product_design_version: the version of a product design that is being made.

5.2.2.4 product_planned_to_realized   EXPRESS-G

A product_planned_to_realized is a type of product_definition_formation_relationship that identifies a relationship that establishes that the planned artefact represented by product_as_planned has been realized as the actual artefact product.

EXPRESS specification:

*)
ENTITY product_planned_to_realized
  SUBTYPE OF (product_definition_formation_relationship);
  SELF\product_definition_formation_relationship.relating_product_definition_formation RENAMED planned_product : product_definition_formation;
  SELF\product_definition_formation_relationship.related_product_definition_formation RENAMED realized_product : product_definition_formation;
END_ENTITY;
(*

Attribute definitions:

planned_product: the planned product represented by a product_as_planned entity.

realized_product: the realized product represented by a product entity.



*)
END_SCHEMA;  -- Product_as_individual_mim
(*


© ISO 2011 — All rights reserved