Hide menu
Loading...
Searching...
No Matches
cadex::DFMMachining_LongSlenderTurnedPartIssue Class Reference

Describes long-slender turned part issue found during cnc machining turning design analysis. More...

Inheritance diagram for cadex::DFMMachining_LongSlenderTurnedPartIssue:
cadex::DFMBase_Issue cadex::MTKBase_Feature

Public Member Functions

 DFMMachining_LongSlenderTurnedPartIssue ()
 Constructor.
 
double ExpectedMaxLengthToMinDiameterRatio () const
 
void SetExpectedMaxLengthToMinDiameterRatio (double theRatio)
 
double ExpectedMaxLength () const
 
double ActualLength () const
 
void SetActualLength (double theLength)
 
double ActualMinDiameter () const
 
void SetActualMinDiameter (double theDiameter)
 
- Public Member Functions inherited from cadex::MTKBase_Feature
 MTKBase_Feature ()
 Constructor.
 
 ~MTKBase_Feature ()
 Destructor.
 
void Nullify ()
 
bool IsNull () const
 
 operator bool () const
 Casts the object to the bool type.
 
template<typename T >
bool IsOfType () const
 
ImplType * Impl () const
 
template<typename T >
T * Impl () const
 Reserved for internal use.
 
bool operator== (const MTKBase_Feature &theObject) const
 
bool operator!= (const MTKBase_Feature &theObject) const
 

Static Public Member Functions

static bool CompareType (const MTKBase_Feature &theFeature)
 Returns true if theFeature is a dfm machining long-slender turned part issue.
 
- Static Public Member Functions inherited from cadex::DFMBase_Issue
static bool CompareType (const MTKBase_Feature &theFeature)
 Returnstrue if theFeature is a dfm issue.
 

Additional Inherited Members

- Public Types inherited from cadex::DFMBase_Issue
typedef cadex::internal::DFMBaseImpl_Issue ImplType
 
typedef std::shared_ptr< ImplType > ImplPtrType
 
- Public Types inherited from cadex::MTKBase_Feature
typedef cadex::internal::MTKBaseImpl_Feature ImplType
 
typedef std::shared_ptr< ImplType > ImplPtrType
 
- Protected Member Functions inherited from cadex::DFMBase_Issue
 DFMBase_Issue (ImplPtrType theImpl)
 Reserved for internal use.
 
- Protected Member Functions inherited from cadex::MTKBase_Feature
 MTKBase_Feature (ImplPtrType theImpl)
 Reserved for internal use.
 
- Protected Attributes inherited from cadex::MTKBase_Feature
ImplPtrType myImpl
 

Detailed Description

Describes long-slender turned part issue found during cnc machining turning design analysis.

The long-slender turned part issue in cnc machining turning design refers to the difficulty in producing a thin and elongated component with high precision and accuracy. This type of part may be prone to deflection, vibration, and chatter during the machining process, which can lead to surface finish defects, dimensional inaccuracies, and even part breakage.

Contains length and minimum diameter of turned part that fails the following condition:

\[ \large L_p \leq dia_p * Rt \]

\[ \begin{aligned} & \small L_p - \text{actual turned part length} \\ & \small dia_p - \text{actual turned part minimum diameter} \\ & \small Rt - \text{expected maximum turned part length to minimum diameter ratio} \end{aligned} \]

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

Member Function Documentation

◆ ActualLength()

double cadex::DFMMachining_LongSlenderTurnedPartIssue::ActualLength ( ) const

Returns the actual length of a turned part in mm .

See also
SetActualLength()
Examples
MTKConverter/Program.cs, and machining/dfm_analyzer/Program.cs.

◆ ActualMinDiameter()

double cadex::DFMMachining_LongSlenderTurnedPartIssue::ActualMinDiameter ( ) const

Returns the actual minimum diameter of a turned part in mm .

See also
SetActualMinDiameter()
Examples
MTKConverter/Program.cs, and machining/dfm_analyzer/Program.cs.

◆ ExpectedMaxLength()

double cadex::DFMMachining_LongSlenderTurnedPartIssue::ExpectedMaxLength ( ) const

Returns the expected maximum length of a turned part in mm .

\[ \large L_e = dia_p * Rt \]

\[ \begin{aligned} & \small L_e - \text{expected maximum turned part length} \\ & \small dia_p - \text{actual turned part minimum diameter} \\ & \small Rt - \text{expected maximum turned part length to minimum diameter ratio} \end{aligned} \]

See also
ExpectedMaxLengthToMinDiameterRatio(), ActualMinDiameter()
Examples
MTKConverter/Program.cs, and machining/dfm_analyzer/Program.cs.

◆ ExpectedMaxLengthToMinDiameterRatio()

double cadex::DFMMachining_LongSlenderTurnedPartIssue::ExpectedMaxLengthToMinDiameterRatio ( ) const

◆ SetActualLength()

void cadex::DFMMachining_LongSlenderTurnedPartIssue::SetActualLength ( double theLength)

Sets actual length in mm . theLength should be greater than zero.

See also
ActualLength()

◆ SetActualMinDiameter()

void cadex::DFMMachining_LongSlenderTurnedPartIssue::SetActualMinDiameter ( double theDiameter)

Sets actual minimum diameter in mm . theDiameter should be greater than zero.

See also
ActualMinDiameter()

◆ SetExpectedMaxLengthToMinDiameterRatio()

void cadex::DFMMachining_LongSlenderTurnedPartIssue::SetExpectedMaxLengthToMinDiameterRatio ( double theRatio)

Sets expected maximum length to minimum diameter ratio. theRatio should be greater than zero.

See also
ExpectedMaxLengthToMinDiameterRatio()