AP scope | AP module | AP contents | AP index | |
Application module: Product as individual | ISO/TS 10303-1164:2004(E) © ISO |
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:
*)
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.
This subclause specifies the MIM type for this application module. The MIM type and definition is specified below.
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;
(*
This subclause specifies the MIM entities for this module. The MIM entities and definitions are specified below.
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;
(*
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.
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.
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;
(*
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;
(*
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.
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.
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