Application module: Characterizable object ISO/TS 10303-1765:2019(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 definition
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing
     5.2.1 MIM type definition

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 Characterizable object 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 Characterizable_object_arm schema and identifies the necessary external references.

EXPRESS specification:

*)
SCHEMA Characterizable_object_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 Activity_arm;    --  ISO/TS 10303-1047

USE FROM Shape_property_assignment_arm;    --  ISO/TS 10303-1032

USE FROM Support_resource_arm;    --  ISO/TS 10303-1800
(*

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

Activity_arm ISO/TS 10303-1047
Shape_property_assignment_arm ISO/TS 10303-1032
Support_resource_arm ISO/TS 10303-1800

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 characterizable_object_shape_type_enumeration   EXPRESS-G

A characterizable_object_shape_type_enumeration is an identifier for the kind of shape for an Characterizable_object.

EXPRESS specification:

*)
TYPE characterizable_object_shape_type_enumeration = EXTENSIBLE ENUMERATION OF
   (unspecified);
END_TYPE;
(*

Enumerated item definitions:

unspecified: the kind of shape is not specified.

4.2.2 co_activity_item   EXPRESS-G

The co_activity_item type is an extension of the activity_item type. It adds the data type Characterizable_object to the list of alternate data types.

EXPRESS specification:

*)
TYPE co_activity_item = SELECT BASED_ON activity_item WITH
   (Characterizable_object);
END_TYPE;
(*

4.3 ARM entity definition

This subclause specifies the ARM entity for this module. The ARM entity is an atomic element that embodies a unique application concept and contains attributes specifying the data elements of the entity. The ARM entity and definition is specified below.

4.3.1 Characterizable_object   EXPRESS-GMapping table

A Characterizable_object is an object that may be characterized with properties but cannot be considered as a product or an activity.

EXAMPLE 1   An orbit of a satellite is an example of Characterizable_object.

NOTE    A Characterizable_object may be used as an environmental condition under which the properties of a product are measured.

EXAMPLE 2   If a product has a set of properties that are measured within a particular atmosphere, the atmosphere may be described with an instance of the entity data type Characterizable_object.

EXPRESS specification:

*)
ENTITY Characterizable_object;
  name : label;
  description : OPTIONAL text;
  shape_type : OPTIONAL characterizable_object_shape_type_enumeration;
  primary_shape_representation : OPTIONAL shape_model;
  auxiliary_shape_representations : OPTIONAL SET[1:?] OF shape_model;
WHERE
  WR1: NOT (EXISTS(auxiliary_shape_representations)) OR EXISTS(primary_shape_representation);
END_ENTITY;
(*

Attribute definitions:

name: the words by which the Characterizable_object is known.

description: the text that provides further information about the Characterizable_object. The value of this attribute need not be specified.

shape_type: the kind of shape. The value of this attribute need not be specified.

primary_shape_representation: the primary shape_model that represents the shape of the Characterizable_object. The value of this attribute need not be specified.

auxiliary_shape_representations: additional shape_models that represents the shape of the Characterizable_object for auxiliary purposes. The value of this attribute need not be specified.

Formal propositions:

WR1: If auxiliary_shape_representations is provided then primary_shape_representation shall be provided.



*)
END_SCHEMA;  -- Characterizable_object_arm
(*


© ISO 2019 — All rights reserved