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

Describes irregular size tab issues found during sheet metal design analysis. More...

Inheritance diagram for cadex::DFMSheetMetal_IrregularSizeTabIssue:
cadex::DFMBase_Issue cadex::MTKBase_Feature

Public Member Functions

 DFMSheetMetal_IrregularSizeTabIssue ()
 Constructor.
 
 DFMSheetMetal_IrregularSizeTabIssue (const SheetMetal_Tab &theTab)
 Constructor.
 
const SheetMetal_TabTab () const
 
void SetTab (const SheetMetal_Tab &theTab)
 
const DFMSheetMetal_TabParametersExpectedTabParameters () const
 
void SetExpectedTabParameters (const DFMSheetMetal_TabParameters &theParameters)
 
double ExpectedWidth () const
 
double ExpectedLength () const
 
double ActualWidth () const
 
double ActualLength () const
 
double ActualSheetThickness () const
 
void SetActualSheetThickness (double theThickness)
 
- 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 sheet metal irregular size tab 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 irregular size tab issues found during sheet metal design analysis.

An irregular tab size issue can arise when the tabs or flanges, that are meant to connect different parts together, have irregular dimensions. This can lead to alignment issues and cause problems during the assembly process. It may also affect the overall strength and stability of the final product. To address this issue, one may need to adjust the dimensions of the tabs or redesign the parts to ensure that they fit together properly.

Contains tab with at least one of it size parameters fails the following condition:

\[ \large W_t \geq T \times Rt_w \quad \text{and} \quad L_t \leq W_t \times Rt_l \]

\[ \begin{aligned} & \small W_t - \text{actual width of tab} \\ & \small L_t - \text{actual length of tab} \\ & \small T - \text{actual sheet thickness} \\ & \small Rt_w - \text{minimum tab width to sheet thickness ratio from expected tab parameters} \\ & \small Rt_l - \text{maximum tab length to tab width ratio from expected tab parameters} \end{aligned} \]

See also
DFMSheetMetal_Analyzer, DFMSheetMetal_AnalyzerParameters.TabParameters(), SheetMetal_Tab
Examples
sheet_metal/dfm_analyzer/Program.cs, and sheet_metal/dfm_analyzer/main.cxx.

Constructor & Destructor Documentation

◆ DFMSheetMetal_IrregularSizeTabIssue()

cadex::DFMSheetMetal_IrregularSizeTabIssue::DFMSheetMetal_IrregularSizeTabIssue ( const SheetMetal_Tab & theTab)

Constructor.

Creates a irregular size tab issue from the SheetMetal_Tab object.

Member Function Documentation

◆ ActualLength()

double cadex::DFMSheetMetal_IrregularSizeTabIssue::ActualLength ( ) const

Returns the actual tab length in mm .

See also
ActualWidth(), Tab()
Examples
sheet_metal/dfm_analyzer/Program.cs.

◆ ActualSheetThickness()

double cadex::DFMSheetMetal_IrregularSizeTabIssue::ActualSheetThickness ( ) const

Returns the actual sheet thickness of analyzed part in mm .

See also
SetActualSheetThickness()

◆ ActualWidth()

double cadex::DFMSheetMetal_IrregularSizeTabIssue::ActualWidth ( ) const

Returns the actual tab width in mm .

See also
ActualLength(), Tab()
Examples
sheet_metal/dfm_analyzer/Program.cs.

◆ ExpectedLength()

double cadex::DFMSheetMetal_IrregularSizeTabIssue::ExpectedLength ( ) const

Returns the expected tab length in mm .

\[ \large L_e = W_e \times Rt_l \]

\[ \begin{aligned} & \small W_e, L_e - \text{expected width, length of tab} \\ & \small Rt_l - \text{maximum tab length to tab width ratio from expected tab parameters} \end{aligned} \]

See also
ExpectedWidth(), ExpectedTabParameters()
Examples
sheet_metal/dfm_analyzer/Program.cs.

◆ ExpectedTabParameters()

const DFMSheetMetal_TabParameters & cadex::DFMSheetMetal_IrregularSizeTabIssue::ExpectedTabParameters ( ) const

Returns the expected tab parameters.

See also
SetExpectedTabParameters()

◆ ExpectedWidth()

double cadex::DFMSheetMetal_IrregularSizeTabIssue::ExpectedWidth ( ) const

Returns the expected tab width in mm .

\[ \large W_e = T \times Rt_w \]

\[ \begin{aligned} & \small W_e - \text{expected width of tab} \\ & \small T - \text{actual sheet thickness} \\ & \small Rt_w - \text{minimum tab width to sheet thickness ratio from expected tab parameters} \end{aligned} \]

See also
ExpectedLength(), ExpectedTabParameters(), ActualSheetThickness()
Examples
sheet_metal/dfm_analyzer/Program.cs.

◆ SetActualSheetThickness()

void cadex::DFMSheetMetal_IrregularSizeTabIssue::SetActualSheetThickness ( double theThickness)

Sets the actual sheet thickness in mm . theThickness should be greater than zero.

See also
ActualSheetThickness()

◆ SetExpectedTabParameters()

void cadex::DFMSheetMetal_IrregularSizeTabIssue::SetExpectedTabParameters ( const DFMSheetMetal_TabParameters & theParameters)

Sets the expected tab parameters.

See also
ExpectedTabParameters()

◆ SetTab()

void cadex::DFMSheetMetal_IrregularSizeTabIssue::SetTab ( const SheetMetal_Tab & theTab)

Sets the problematic sheet metal tab.

See also
Tab()

◆ Tab()

const SheetMetal_Tab & cadex::DFMSheetMetal_IrregularSizeTabIssue::Tab ( ) const

Returns the problematic sheet metal.

See also
SetTab(), DFMSheetMetal_AnalyzerParameters.TabParameters()