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 ()
 Constructor.
 
 DFMSheetMetal_SmallRadiusBendIssue (const SheetMetal_Bend &theBend)
 Constructor.
 
double ExpectedMinRadiusToSheetThicknessRatio () const
 
void SetExpectedMinRadiusToSheetThicknessRatio (double theRatio)
 
double ExpectedMinRadius () const
 
double ActualRadius () const
 
- Public Member Functions inherited from cadex::DFMSheetMetal_BendIssue
const SheetMetal_BendBend () const
 
void SetBend (const SheetMetal_Bend &theBend)
 
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 small radius bend issue.
 
- Static Public Member Functions inherited from cadex::DFMSheetMetal_BendIssue
static bool CompareType (const MTKBase_Feature &theFeature)
 Returns true if theFeature is a dfm sheet metal bend 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::DFMSheetMetal_BendIssue
typedef cadex::internal::DFMSheetMetalImpl_BendIssue ImplType
 
typedef std::shared_ptr< ImplType > ImplPtrType
 
- 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::DFMSheetMetal_BendIssue
 DFMSheetMetal_BendIssue (ImplPtrType theImpl)
 Reserved for internal use.
 
- 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 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
MTKConverter/Program.cs, MTKConverter/main.cxx, sheet_metal/dfm_analyzer/Program.cs, and sheet_metal/dfm_analyzer/main.cxx.

Constructor & Destructor Documentation

◆ DFMSheetMetal_SmallRadiusBendIssue()

cadex::DFMSheetMetal_SmallRadiusBendIssue::DFMSheetMetal_SmallRadiusBendIssue ( const SheetMetal_Bend & theBend)

Constructor.

Creates a small radius bend issue from the SheetMetal_Bend object.

Member Function Documentation

◆ ActualRadius()

double cadex::DFMSheetMetal_SmallRadiusBendIssue::ActualRadius ( ) const

Returns the actual bend radius in mm .

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

◆ ExpectedMinRadius()

double cadex::DFMSheetMetal_SmallRadiusBendIssue::ExpectedMinRadius ( ) const

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
MTKConverter/Program.cs, and sheet_metal/dfm_analyzer/Program.cs.

◆ ExpectedMinRadiusToSheetThicknessRatio()

double cadex::DFMSheetMetal_SmallRadiusBendIssue::ExpectedMinRadiusToSheetThicknessRatio ( ) const

◆ SetExpectedMinRadiusToSheetThicknessRatio()

void cadex::DFMSheetMetal_SmallRadiusBendIssue::SetExpectedMinRadiusToSheetThicknessRatio ( double theRatio)

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

See also
ExpectedMinRadiusToSheetThicknessRatio()