ENTITY milling_technology

(* SCHEMA ap238_arm_schema; *)

(* ************************************************************ *)
(* Milling technology                                           *)
(* ************************************************************ *)

ENTITY milling_technology       	(* m0 *)
SUBTYPE OF (technology); 
cutspeed:                      OPTIONAL speed_measure;
spindle:                       OPTIONAL rot_speed_measure;
feedrate_per_tooth:            OPTIONAL length_measure;
synchronize_spindle_with_feed: BOOLEAN;
inhibit_feedrate_override:     BOOLEAN;
inhibit_spindle_override:      BOOLEAN;
its_adaptive_control:          OPTIONAL adaptive_control;
WHERE
WR1: (EXISTS(cutspeed) AND NOT EXISTS(spindle))
OR (EXISTS(spindle) AND NOT EXISTS(cutspeed))
OR (EXISTS(its_adaptive_control));
WR2: (EXISTS(SELF.feedrate) AND NOT EXISTS(feedrate_per_tooth))
OR (EXISTS(feedrate_per_tooth) AND NOT EXISTS(SELF.feedrate))
OR (EXISTS(its_adaptive_control));
END_ENTITY;

Explicit Attributes

Entity milling_technology has the following local and inherited explicit attributes:
AttributeTypeDefined By
 feedratespeed_measure (ENTITY)technology
 feedrate_referencetool_reference_point (ENUM)technology
 cutspeedspeed_measure (ENTITY)milling_technology
 spindlerot_speed_measure (ENTITY)milling_technology
 feedrate_per_toothlength_measure (ENTITY)milling_technology
 synchronize_spindle_with_feedBOOLEANmilling_technology
 inhibit_feedrate_overrideBOOLEANmilling_technology
 inhibit_spindle_overrideBOOLEANmilling_technology
 its_adaptive_controladaptive_control (ENTITY)milling_technology

Derived Attributes

    No derived attributes

Inverse Attributes

    No Inverse Attributes

Supertypes

Entity milling_technology inherits from the following supertypes:
  technology

Subtypes

    No subtypes

Referenced By

Entity milling_technology and its supertypes are referenced by the following definitions:
DefinitionTypeReferenced Entity
 cutting_component ENTITY technology
 cutting_edge_properties ENTITY technology
 machining_operation ENTITY technology
 toolpath ENTITY technology


[Top Level Definitions]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-11-21T09:54:01-05:00