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

Describes small radius bend issues found during sheet metal design analysis. More...

Inheritance diagram for cadex.DFMSheetMetal_SmallRadiusBendIssue:
cadex.DFMSheetMetal_BendIssue cadex.DFMBase_Issue cadex.MTKBase_Feature

Public Member Functions

 DFMSheetMetal_SmallRadiusBendIssue (global::System.IntPtr cPtr, bool cMemoryOwn)
 
 DFMSheetMetal_SmallRadiusBendIssue ()
 Constructor.
 
 DFMSheetMetal_SmallRadiusBendIssue (cadex.SheetMetal_Bend theBend)
 Constructor.
 
double ExpectedMinRadiusToSheetThicknessRatio ()
 
void SetExpectedMinRadiusToSheetThicknessRatio (double theRatio)
 
double ExpectedMinRadius ()
 
double ActualRadius ()
 
- Public Member Functions inherited from cadex.DFMSheetMetal_BendIssue
 DFMSheetMetal_BendIssue (global::System.IntPtr cPtr, bool cMemoryOwn)
 
cadex.SheetMetal_Bend Bend ()
 
void SetBend (cadex.SheetMetal_Bend theBend)
 
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 small radius bend issue.
 
static new cadex.DFMSheetMetal_SmallRadiusBendIssue Cast (cadex.MTKBase_Feature theBase)
 
- Static Public Member Functions inherited from cadex.DFMSheetMetal_BendIssue
static new bool CompareType (cadex.MTKBase_Feature theFeature)
 Returns true if theFeature is a DFM sheet metal bend issue.
 
static new cadex.DFMSheetMetal_BendIssue 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 small radius bend issues found during sheet metal design analysis.

The small bend radius issue refers to a situation where the bend radius is smaller than the recommended one. When the bend radius is too small, the material is stretched too much, which can cause the material to crack or even break. Additionally, a small bend radius can cause the material to distort, resulting in parts that are not as accurate as they should be.

Contains simple bend that fails the following condition:

\[ \large R_b \geq T \times Rt \]

\[ \begin{aligned} & \small R_b - \text{actual bend radius} \\ & \small T - \text{actual sheet thickness} \\ & \small Rt - \text{expected minimum bend radius to sheet thickness ratio} \end{aligned} \]

Note
This issue can contain only SheetMetal_Bend objects and NOT SheetMetal_HemBend or SheetMetal_CurvedBend. Because small radius bend analysis carried out only for simple bends (SheetMetal_Bend) and simple bends inside compound bends (SheetMetal_CompoundBend.FeatureList()).
See also
DFMSheetMetal_Analyzer, DFMSheetMetal_AnalyzerParameters.MinBendRadiusToSheetThicknessRatio(), SheetMetal_Bend
Examples
sheet_metal/dfm_analyzer/Program.cs, and sheet_metal/dfm_analyzer/main.cxx.

Constructor & Destructor Documentation

◆ DFMSheetMetal_SmallRadiusBendIssue()

cadex.DFMSheetMetal_SmallRadiusBendIssue.DFMSheetMetal_SmallRadiusBendIssue ( cadex.SheetMetal_Bend theBend)
inline

Constructor.

Creates a small radius bend issue from the SheetMetal_Bend object.

Member Function Documentation

◆ ActualRadius()

double cadex.DFMSheetMetal_SmallRadiusBendIssue.ActualRadius ( )
inline

Returns the actual bend radius in mm .

See also
Bend()
Examples
sheet_metal/dfm_analyzer/Program.cs.

◆ Dispose()

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

Reimplemented from cadex.DFMSheetMetal_BendIssue.

◆ ExpectedMinRadius()

double cadex.DFMSheetMetal_SmallRadiusBendIssue.ExpectedMinRadius ( )
inline

Returns the expected minimum bend radius in mm .

\[ \large R_e = T \times Rt \]

\[ \begin{aligned} & \small R_e - \text{expected minimum bend radius} \\ & \small T - \text{actual sheet thickness} \\ & \small Rt - \text{expected minimum bend radius to sheet thickness ratio} \end{aligned} \]

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

◆ ExpectedMinRadiusToSheetThicknessRatio()

double cadex.DFMSheetMetal_SmallRadiusBendIssue.ExpectedMinRadiusToSheetThicknessRatio ( )
inline

◆ SetExpectedMinRadiusToSheetThicknessRatio()

void cadex.DFMSheetMetal_SmallRadiusBendIssue.SetExpectedMinRadiusToSheetThicknessRatio ( double theRatio)
inline

Sets the expected minimum bend radius to thickness ratio. theRatio should be greater than zero.

See also
ExpectedMinRadiusToSheetThicknessRatio()