AP scope  |  AP module  |  AP contents  |  AP index
Application module: Product as individual ISO/TS 10303-1164:2004(E)
© ISO

Cover page
Table of contents
Copyright
Foreword
Introduction
1 Scope
2 Normative references
3 Terms, definitions and abbreviations

4 Information requirements
   4.1 Required AM ARMs
   4.2 ARM type definition
   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
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 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_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:

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_as_individual, product_as_individual_version and product_as_individual_view to the list of alternate data types.

EXPRESS specification:

*)
TYPE product_as_individual_identification_item = SELECT BASED_ON identification_item WITH
   (product_as_individual,
    product_as_individual_version,
    product_as_individual_view);
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_individual   EXPRESS-G

A product_as_individual is a type of product that identifies an individual artefact that has been made or an individual artefact that has yet to be made. It is a collector of data common to all revisions of the product_as_individual.

NOTE 1   Revisions (product_as_individual_version) of product_as_individual are used to represent whether an individual artefact has yet to be made or has been made. The product_as_individual_version subtype product_as_planned is used to represent the revision of an individual artefact that has yet to be made and the subtype product_as_realized is used to represent the revision of an individual artefact that has been made.

NOTE 2   Where physical products are being represented, the product_as_individual represents the physical or planned physical realization of a product.

NOTE 3   It is likely, but not essential, that the artefact, was or will be made from a product design, which will be represented by product.

NOTE 4   Many physical products may be produced from a given design. A single product may lead to many product_as_individual.

EXAMPLE 1   The design of a personal computer is represented by a product.

EXAMPLE 2   The personal computer with a serial number on a persons desk is represented by a product_as_individual and an associated revision represented by product_as_realized.

EXAMPLE 3   The personal computer that has been ordered, allocated a serial number for manufacturing planning, but not yet manufactured, is represented by a product_as_individual and an associated revision represented by product_as_planned.

EXAMPLE 4   HMS Daring is the first of a new class of ships known as Type 45 Destroyers. It is due to enter service in two years time.

EXPRESS specification:

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

5.2.2.2 product_as_individual_version   EXPRESS-G

A product_as_individual_version is a type of product_definition_formation. It is a revision of a product_as_individual and acts as a collector of the definitions of this revision.

EXAMPLE 1   The car on my drive is represented by a product_as_individual. The current configuration status of the car can be represented by a product_as_realized related to the product_as_individual. If a safety modification is made to the car resulting in a new configuration status of the car, then this may be represented by a new product_as_realized.

EXAMPLE 2   HMS Daring is the first of a new class of ships known as Type 45 Destroyers. It is due to enter service in two years time.

EXPRESS specification:

*)
ENTITY product_as_individual_version
  ABSTRACT SUPERTYPE OF (ONEOF (product_as_planned,
                                product_as_realized))
  SUBTYPE OF (product_definition_formation);
  SELF\product_definition_formation.of_product : product_as_individual;
END_ENTITY;
(*

Attribute definitions:

of_product: the product_as_individual that the product_as_individual_version identifies a version of.

5.2.2.3 product_as_individual_view   EXPRESS-G

A product_as_individual_view is a type of product_definition that defines a characterization view of a version of a product_as_individual.

NOTE    The product_as_individual_view entity type supports the representation of different views of a product_as_individual for different purposes. Multiple views of the same product_as_individual are represented by different instances of product_as_individual_view for the same product_as_individual_version.

EXPRESS specification:

*)
ENTITY product_as_individual_view
  SUBTYPE OF (product_definition);
  SELF\product_definition.formation RENAMED defined_version : product_as_individual_version;
END_ENTITY;
(*

Attribute definitions:

defined_version: the product_as_individual_version of which the product_as_individual_view provides a characterization.

5.2.2.4 product_as_planned   EXPRESS-G

A product_as_planned is a type of product_as_individual 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_as_realized) then they are related by the product_planned_to_realized relationship.

EXPRESS specification:

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

5.2.2.5 product_as_realized   EXPRESS-G

A product_as_realized is a type of product_as_individual that identifies an individual artefact that has been made. A product whose properties can only be known by observation or by derivation from observations.

NOTE 1   Where physical products are being represented, the product_as_realized represents the physical product - something one can touch.

NOTE 2   The artefact may have been made from a version of a product design (product_definition_formation). If this is the case, then the relationship between the artefact (product_as_realized) and the design (product_definition_formation) is represented by product_design_version_to_individual.

NOTE 3   The artefact may have been planned and represented by product_as_planned. In which case, the actual artefact (product_as_realized) is related to the planned artefact (product_as_planned) by the product_planned_to_realized relationship.

EXPRESS specification:

*)
ENTITY product_as_realized
  SUBTYPE OF (product_as_individual_version);
END_ENTITY;
(*

5.2.2.6 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 (product_as_planned) or has been made (product_as_realized) from the design.

EXPRESS specification:

*)
ENTITY product_design_to_individual
  SUBTYPE OF (product_relationship);
  SELF\product_relationship.related_product RENAMED individual_product : product_as_individual;
  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.7 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_as_realized) 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_as_individual_version;
  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.8 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_as_realized.

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_as_planned;
  SELF\product_definition_formation_relationship.related_product_definition_formation RENAMED realized_product : product_as_realized;
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_as_realized entity.



*)
END_SCHEMA;  -- Product_as_individual_mim
(*


© ISO 2004 — All rights reserved