Hide menu
Loading...
Searching...
No Matches
cadex.DFMMachining_DeepPocketIssue Class Reference

Describes deep pocket issue found during cnc machining milling design analysis. More...

Inheritance diagram for cadex.DFMMachining_DeepPocketIssue:
cadex.DFMMachining_MillingIssue cadex.DFMBase_Issue cadex.MTKBase_Feature

Public Member Functions

 DFMMachining_DeepPocketIssue (global::System.IntPtr cPtr, bool cMemoryOwn)
 
 DFMMachining_DeepPocketIssue ()
 Constructor.
 
double ExpectedMaxDepthToWidthRatio ()
 
void SetExpectedMaxDepthToWidthRatio (double theValue)
 
double ExpectedMaxDepth ()
 
double ActualDepth ()
 
double ActualWidth ()
 
cadex.Machining_Pocket Pocket ()
 
void SetPocket (cadex.Machining_Pocket thePocket)
 
- Public Member Functions inherited from cadex.DFMMachining_MillingIssue
 DFMMachining_MillingIssue (global::System.IntPtr cPtr, bool cMemoryOwn)
 
- Public Member Functions inherited from cadex.DFMBase_Issue
 DFMBase_Issue (global::System.IntPtr cPtr, bool cMemoryOwn)
 
- Public Member Functions inherited from cadex.MTKBase_Feature
 MTKBase_Feature (global::System.IntPtr cPtr, bool cMemoryOwn)
 
void Dispose ()
 
 MTKBase_Feature ()
 Constructor.
 
void Nullify ()
 
bool IsNull ()
 
bool IsEqual (cadex.MTKBase_Feature theObject)
 
bool IsNotEqual (cadex.MTKBase_Feature theObject)
 

Static Public Member Functions

static new bool CompareType (cadex.MTKBase_Feature theFeature)
 Returns true if theFeature is a DFM deep pocket issue.
 
static new cadex.DFMMachining_DeepPocketIssue Cast (cadex.MTKBase_Feature theBase)
 
- Static Public Member Functions inherited from cadex.DFMMachining_MillingIssue
static new bool CompareType (cadex.MTKBase_Feature theFeature)
 Returns true if theIssue is a DFM machining milling issue.
 
static new cadex.DFMMachining_MillingIssue Cast (cadex.MTKBase_Feature theBase)
 
- Static Public Member Functions inherited from cadex.DFMBase_Issue
static bool CompareType (cadex.MTKBase_Feature theFeature)
 Returnstrue if theFeature is a DFM issue.
 
static cadex.DFMBase_Issue Cast (cadex.MTKBase_Feature theBase)
 

Protected Member Functions

override void Dispose (bool disposing)
 
- Protected Member Functions inherited from cadex.DFMMachining_MillingIssue
override void Dispose (bool disposing)
 

Detailed Description

Describes deep pocket issue found during cnc machining milling design analysis.

A deep pocket can be problematic in cnc machining milling design due to the difficulty of removing material from the bottom of the pocket. If the pocket is too deep, the cutting tool may not be long enough to reach the bottom, or may deflect excessively, resulting in unacceptable surface finish and accuracy. Additionally, chip evacuation and coolant delivery can be challenging in deep pockets, leading to chip buildup and reduced tool life.

Contains pocket that fails the following condition:

\[ \large D_p \leq W_p * Rt \]

\[ \begin{aligned} & \small D_p - \text{actual pocket depth} \\ & \small W_p - \text{actual pocket width} \\ & \small Rt - \text{expected maximum pocket depth to width ratio} \end{aligned} \]

See also
DFMMachining_Analyzer, DFMMachining_MillingAnalyzerParameters.MaxPocketDepthToWidthRatio()
Examples
MTKConverter/Program.cs, MTKConverter/main.cxx, machining/dfm_analyzer/Program.cs, and machining/dfm_analyzer/main.cxx.

Member Function Documentation

◆ ActualDepth()

double cadex.DFMMachining_DeepPocketIssue.ActualDepth ( )
inline

Returns the actual depth of the pocket in mm .

See also
Pocket()
Examples
machining/dfm_analyzer/Program.cs.

◆ ActualWidth()

double cadex.DFMMachining_DeepPocketIssue.ActualWidth ( )
inline

Returns the actual width of the pocket in mm .

See also
Pocket()

◆ Dispose()

override void cadex.DFMMachining_DeepPocketIssue.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from cadex.DFMBase_Issue.

◆ ExpectedMaxDepth()

double cadex.DFMMachining_DeepPocketIssue.ExpectedMaxDepth ( )
inline

Returns the expected maximum depth of the pocket in mm .

\[ \large D_e = W_p * Rt \]

\[ \begin{aligned} & \small D_e - \text{expected maximum pocket depth} \\ & \small W_p - \text{actual pocket width} \\ & \small Rt - \text{expected maximum pocket depth to width ratio} \end{aligned} \]

See also
ExpectedMaxDepthToWidthRatio(), ActualWidth()
Examples
machining/dfm_analyzer/Program.cs.

◆ ExpectedMaxDepthToWidthRatio()

double cadex.DFMMachining_DeepPocketIssue.ExpectedMaxDepthToWidthRatio ( )
inline

Returns the expected maximum pocket depth to width ratio.

See also
SetExpectedMaxDepthToWidthRatio(), DFMMachining_MillingAnalyzerParameters.MaxPocketDepthToWidthRatio()

◆ Pocket()

cadex.Machining_Pocket cadex.DFMMachining_DeepPocketIssue.Pocket ( )
inline

Returns the problematic pocket.

See also
SetPocket()

◆ SetExpectedMaxDepthToWidthRatio()

void cadex.DFMMachining_DeepPocketIssue.SetExpectedMaxDepthToWidthRatio ( double theValue)
inline

Sets expected maximum pocket depth to width ratio. The value should be greater or equal to 0.

See also
ExpectedMaxDepthToWidthRatio()

◆ SetPocket()

void cadex.DFMMachining_DeepPocketIssue.SetPocket ( cadex.Machining_Pocket thePocket)
inline

Sets the problematic pocket.

See also
Pocket()