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 (global::System.IntPtr cPtr, bool cMemoryOwn)
 
 DFMSheetMetal_IrregularSizeTabIssue ()
 Constructor.
 
 DFMSheetMetal_IrregularSizeTabIssue (cadex.SheetMetal_Tab theTab)
 Constructor.
 
cadex.SheetMetal_Tab Tab ()
 
void SetTab (cadex.SheetMetal_Tab theTab)
 
cadex.DFMSheetMetal_TabParameters ExpectedTabParameters ()
 
void SetExpectedTabParameters (cadex.DFMSheetMetal_TabParameters theParameters)
 
double ExpectedWidth ()
 
double ExpectedLength ()
 
double ActualWidth ()
 
double ActualLength ()
 
double ActualSheetThickness ()
 
void SetActualSheetThickness (double theThickness)
 
- 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 sheet metal irregular size tab issue.
 
static new cadex.DFMSheetMetal_IrregularSizeTabIssue 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)
 

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 ( cadex.SheetMetal_Tab theTab)
inline

Constructor.

Creates a irregular size tab issue from the SheetMetal_Tab object.

Member Function Documentation

◆ ActualLength()

double cadex.DFMSheetMetal_IrregularSizeTabIssue.ActualLength ( )
inline

Returns the actual tab length in mm .

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

◆ ActualSheetThickness()

double cadex.DFMSheetMetal_IrregularSizeTabIssue.ActualSheetThickness ( )
inline

Returns the actual sheet thickness of analyzed part in mm .

See also
SetActualSheetThickness()

◆ ActualWidth()

double cadex.DFMSheetMetal_IrregularSizeTabIssue.ActualWidth ( )
inline

Returns the actual tab width in mm .

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

◆ Dispose()

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

Reimplemented from cadex.DFMBase_Issue.

◆ ExpectedLength()

double cadex.DFMSheetMetal_IrregularSizeTabIssue.ExpectedLength ( )
inline

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()

cadex.DFMSheetMetal_TabParameters cadex.DFMSheetMetal_IrregularSizeTabIssue.ExpectedTabParameters ( )
inline

Returns the expected tab parameters.

See also
SetExpectedTabParameters()

◆ ExpectedWidth()

double cadex.DFMSheetMetal_IrregularSizeTabIssue.ExpectedWidth ( )
inline

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)
inline

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

See also
ActualSheetThickness()

◆ SetExpectedTabParameters()

void cadex.DFMSheetMetal_IrregularSizeTabIssue.SetExpectedTabParameters ( cadex.DFMSheetMetal_TabParameters theParameters)
inline

Sets the expected tab parameters.

See also
ExpectedTabParameters()

◆ SetTab()

void cadex.DFMSheetMetal_IrregularSizeTabIssue.SetTab ( cadex.SheetMetal_Tab theTab)
inline

Sets the problematic sheet metal tab.

See also
Tab()

◆ Tab()

cadex.SheetMetal_Tab cadex.DFMSheetMetal_IrregularSizeTabIssue.Tab ( )
inline

Returns the problematic sheet metal.

See also
SetTab(), DFMSheetMetal_AnalyzerParameters.TabParameters()