Application module: Default tolerance ISO/TS 10303-1052:2014-02(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
     5.2.3 MIM function 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 Application module implementation and usage guide
G Change history
Bibliography
Index

(*
ISO TC184/SC4/WG12 N7981 - ISO/TS 10303-1052 Default tolerance - EXPRESS ARM
Supersedes ISO TC184/SC4/WG12 N7415
*)



SCHEMA Default_tolerance_arm;

USE FROM Document_assignment_arm;    -- ISO/TS 10303-1122

USE FROM Foundation_representation_arm;    -- ISO/TS 10303-1006

USE FROM Measure_representation_arm;    -- ISO/TS 10303-1118

USE FROM Default_setting_association_arm;    -- ISO/TS 10303-1809


TYPE cell_entry_select = SELECT
   (Plus_minus_toleranced_datum,
    Upper_lower_toleranced_datum);
END_TYPE;

TYPE general_tolerance_table_select = SELECT
   (General_tolerance_table,
    Document_version,
    Document);
END_TYPE;

TYPE limit_select = SELECT
   (Number_of_decimal_places,
    Significant_number_of_digits,
    Upper_lower_limit);
END_TYPE;

ENTITY General_tolerance_table;
  tolerance_type : STRING;
INVERSE
  cell : SET[1:?] OF Tolerance_table_cell FOR tolerance_table;
END_ENTITY;

ENTITY General_tolerances
  SUBTYPE OF (Default_shape_property);
  table_definition : general_tolerance_table_select;
  tolerance_class : STRING;
END_ENTITY;

ENTITY Number_of_decimal_places;
  number_of_places_after_decimal_separator : INTEGER;
END_ENTITY;

ENTITY Plus_minus_toleranced_datum;
  tolerance_value : Numerical_item_with_unit;
END_ENTITY;

ENTITY Significant_number_of_digits;
  number_of_digits : INTEGER;
END_ENTITY;

ENTITY Tolerance_table_cell;
  cell_value : OPTIONAL cell_entry_select;
  description : STRING;
  limit : limit_select;
  tolerance_class : OPTIONAL STRING;
  tolerance_table : General_tolerance_table;
END_ENTITY;

ENTITY Upper_lower_limit;
  upper_limit : Numerical_item_with_unit;
  lower_limit : Numerical_item_with_unit;
END_ENTITY;

ENTITY Upper_lower_toleranced_datum;
  lower_tolerance_value : Numerical_item_with_unit;
  upper_tolerance_value : Numerical_item_with_unit;
END_ENTITY;

END_SCHEMA;  -- Default_tolerance_arm


© ISO 2014 — All rights reserved