Application module: Draughting element specialisations ISO/TS 10303-1312:2018-11(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 ARM
   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 entity 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

(*
ISO/TC 184/SC 4/WG 12 N9593 - ISO/TS 10303-1312 Draughting element specialisations - EXPRESS ARM
Supersedes ISO/TC 184/SC 4/WG 12 N7675
*)



SCHEMA Draughting_element_specialisations_arm;

USE FROM Draughting_element_arm;    -- ISO/TS 10303-1310


TYPE chained_or_parallel = ENUMERATION OF
   (chained,
    parallel);
END_TYPE;

TYPE dimension_callout_select = EXTENSIBLE GENERIC_ENTITY SELECT
   (Annotation_text_occurrence);
END_TYPE;

TYPE dimension_type = ENUMERATION OF
   (angular,
    curve,
    diameter,
    leader_directed,
    linear,
    ordinate,
    radius);
END_TYPE;

TYPE primary_or_secondary = ENUMERATION OF
   (primary,
    secondary);
END_TYPE;

ENTITY Datum_feature_callout
  SUBTYPE OF (Draughting_element);
END_ENTITY;

ENTITY Datum_target_callout
  SUBTYPE OF (Draughting_element);
END_ENTITY;

ENTITY Dimension
  ABSTRACT SUPERTYPE OF (Dimension_callout
                         ANDOR Dimension_value)
  SUBTYPE OF (Draughting_element);
  id : STRING;
END_ENTITY;

ENTITY Dimension_callout
  SUBTYPE OF (Dimension);
  callout_element : SET[1:?] OF dimension_callout_select;
  dimension_type : SET[1:?] OF dimension_type;
END_ENTITY;

ENTITY Dimension_callout_relationship;
  relating_draughting_callout : Dimension_callout;
  related_draughting_callout : Dimension_value;
  relation_type : primary_or_secondary;
END_ENTITY;

ENTITY Dimension_prefix
  SUBTYPE OF (Draughting_element);
  prefix : Dimension_text;
INVERSE
  parent : Structured_dimension_callout FOR prefix;
WHERE
  WR1: prefix IN SELF\Draughting_callout.contents;
  WR2: prefix\Representation_item.name = 'prefix text';
END_ENTITY;

ENTITY Dimension_sequence_pair;
  alignment : chained_or_parallel;
  predecessor : Dimension_callout;
  successor : Dimension_callout;
END_ENTITY;

ENTITY Dimension_suffix
  SUBTYPE OF (Draughting_element);
  suffix : Dimension_text;
INVERSE
  parent : Structured_dimension_callout FOR suffix;
WHERE
  WR1: suffix IN SELF\Draughting_callout.contents;
  WR2: suffix\Representation_item.name = 'suffix text';
END_ENTITY;

ENTITY Dimension_value
  SUBTYPE OF (Dimension);
  dimension_value : Dimension_text;
WHERE
  WR1: dimension_value IN SELF\Draughting_callout.contents;
  WR2: dimension_value\Representation_item.name = 'dimension value';
END_ENTITY;

ENTITY Draughting_element
  SUPERTYPE OF (Datum_feature_callout
                ANDOR Datum_target_callout
               ANDOR Dimension
              ANDOR Dimension_prefix
             ANDOR Dimension_suffix
            ANDOR Geometric_tolerance_callout
           ANDOR Surface_condition_callout)
  SUBTYPE OF (Draughting_callout);
END_ENTITY;

ENTITY Geometric_tolerance_callout
  SUBTYPE OF (Draughting_element);
END_ENTITY;

ENTITY Structured_dimension_callout
  SUBTYPE OF (Dimension_value);
  prefix : OPTIONAL Dimension_prefix;
  suffix : OPTIONAL Dimension_suffix;
  tolerance_value : OPTIONAL Dimension_text;
  unit_text : OPTIONAL Dimension_text;
WHERE
  WR1: tolerance_value IN SELF\Draughting_callout.contents;
  WR2: NOT EXISTS(tolerance_value) OR (tolerance_value\Representation_item.name = 'tolerance value');
  WR3: unit_text IN SELF\Draughting_callout.contents;
  WR4: NOT EXISTS(unit_text) OR (unit_text\Representation_item.name = 'unit text');
END_ENTITY;

ENTITY Surface_condition_callout
  SUBTYPE OF (Draughting_element);
END_ENTITY;

END_SCHEMA;  -- Draughting_element_specialisations_arm


© ISO 2018 — All rights reserved