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

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

Inheritance diagram for cadex::DFMSheetMetal_InconsistentRadiusBendIssue:
cadex::DFMSheetMetal_BendIssue cadex::DFMBase_Issue cadex::MTKBase_Feature

Public Member Functions

 DFMSheetMetal_InconsistentRadiusBendIssue ()
 Constructor.
 
 DFMSheetMetal_InconsistentRadiusBendIssue (const SheetMetal_Bend &theBend)
 Constructor.
 
double ExpectedRadius () const
 
void SetExpectedRadius (double theRadius)
 
double ActualRadius () const
 Returns the actual bend radius in mm .
 
- 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 inconsistent 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 inconsistent radius bend issues found during sheet metal design analysis.

This issue occurs when the radius of a bend varies from one section to another, resulting in uneven distribution of stress and strain in the part. Avoiding variety in bend radii help to minimize setup changes during the manufacturing process. When the bend radius is consistent, the machine settings can be standardized, which means that less time will be spent making adjustments between parts. This can help to reduce production time and costs, as well as improve the overall quality of the finished product.

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

Constructor & Destructor Documentation

◆ DFMSheetMetal_InconsistentRadiusBendIssue()

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

Constructor.

Creates a inconsistent bend issue from the SheetMetal_Bend object.

Member Function Documentation

◆ ExpectedRadius()

double cadex::DFMSheetMetal_InconsistentRadiusBendIssue::ExpectedRadius ( ) const

Returns the expected radius in mm .

Expected radius is the most common bend radius in analyzed part.

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

◆ SetExpectedRadius()

void cadex::DFMSheetMetal_InconsistentRadiusBendIssue::SetExpectedRadius ( double theRadius)

Sets the expected radius in mm. theRadius should be greater than zero.

See also
ExpectedRadius()