FUNCTION verify_bullnose_endmill_dimensions

(* SCHEMA integrated_cnc_schema; *)
FUNCTION verify_bullnose_endmill_dimensions (
    mt :          machining_tool
    ): LOGICAL;

    LOCAL
      rads : SET OF REPRESENTATION_ITEM :=
        get_tool_body_item (mt, 'edge radius');
      dias : SET OF REPRESENTATION_ITEM :=
        get_tool_body_item (mt, 'effective cutting diameter');
    END_LOCAL;

    RETURN  ((1 = SIZEOF(rads)) AND
             (1 = SIZEOF(dias)) AND
             (rads[1].value_component < dias[1].value_component/2)
        );
END_FUNCTION; -- 10303-238: integrated_cnc_schema

Referenced By

Defintion verify_bullnose_endmill_dimensions is references by the following definitions:
DefinitionType
 machining_tool ENTITY


[Top Level Definitions]

Generated by STEP ToolsTM EXPRESS to HTML Converter
on 2010-01-12T10:42:26-02:00