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

Describes wall with irregular thickness issues found during molding design analysis. More...

Inheritance diagram for cadex::DFMMolding_IrregularWallThicknessIssue:
cadex::DFMMolding_WallThicknessIssue cadex::DFMBase_Issue cadex::MTKBase_Feature

Public Member Functions

 DFMMolding_IrregularWallThicknessIssue ()
 Constructor.
 
 DFMMolding_IrregularWallThicknessIssue (const ModelData::Shell &theWall)
 Constructor.
 
double AverageWallThicknessDeviationPercent () const
 
void SetAverageWallThicknessDeviationPercent (double thePercent)
 
double ActualWallThicknessDeviationPercent () const
 
double ExpectedMaxThickness () const
 
void SetExpectedMaxThickness (double theExpectedMaxThickness)
 
double ExpectedMinThickness () const
 
void SetExpectedMinThickness (double theExpectedMaxThickness)
 
- 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 molding irregular wall thickness 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::DFMMolding_WallThicknessIssue
 DFMMolding_WallThicknessIssue (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 wall with irregular thickness issues found during molding design analysis.

Irregular wall thickness issue in molding design analysis refers to the challenge of molding features with deviating from the average value walls. This can lead to uneven cooling and problems with shrinking during the molding process. Therefore, it is recommended to maintain wall thicknesses variance of 20% or less across the design's wall thicknesses to limit potential structural and aesthetic issues.

Contains two forming the wall faces that fail the following condition:

\[ \frac{\mid D - D_{avg} \mid}{D_{avg}} \leq U_D \]

\[ \begin{aligned} & \small D - \text{distance between two faces} \\ & \small D_{avg} - \text{average distance} \\ & \small U_D - \text{uniform distance percent} \\ \end{aligned} \]

See also
DFMMolding_Analyzer, DFMMolding_AnalyzerParameters.AverageWallThicknessDeviationPercent(), DFMMolding_AnalyzerParameters.WallThicknessResolution()
Examples
MTKConverter/Program.cs, MTKConverter/main.cxx, molding/dfm_analyzer/Program.cs, and molding/dfm_analyzer/main.cxx.

Constructor & Destructor Documentation

◆ DFMMolding_IrregularWallThicknessIssue()

cadex::DFMMolding_IrregularWallThicknessIssue::DFMMolding_IrregularWallThicknessIssue ( const ModelData::Shell & theWall)

Constructor.

Creates a irregular wall thickness issue from the shell of wall.

Member Function Documentation

◆ ActualWallThicknessDeviationPercent()

double cadex::DFMMolding_IrregularWallThicknessIssue::ActualWallThicknessDeviationPercent ( ) const

Returns the actual average wall thickness deviation percent.

◆ AverageWallThicknessDeviationPercent()

double cadex::DFMMolding_IrregularWallThicknessIssue::AverageWallThicknessDeviationPercent ( ) const

Returns the expected average wall thickness deviation percent.

See also
SetAverageWallThicknessDeviationPercent(), DFMMolding_AnalyzerParameters.AverageWallThicknessDeviationPercent()

◆ ExpectedMaxThickness()

double cadex::DFMMolding_IrregularWallThicknessIssue::ExpectedMaxThickness ( ) const

Returns the expected maximum wall thickness in mm.

See also
SetExpectedMaxThickness()
Examples
MTKConverter/Program.cs, and molding/dfm_analyzer/Program.cs.

◆ ExpectedMinThickness()

double cadex::DFMMolding_IrregularWallThicknessIssue::ExpectedMinThickness ( ) const

Returns the expected minimum wall thickness in mm .

See also
SetExpectedMinThickness()
Examples
MTKConverter/Program.cs, and molding/dfm_analyzer/Program.cs.

◆ SetAverageWallThicknessDeviationPercent()

void cadex::DFMMolding_IrregularWallThicknessIssue::SetAverageWallThicknessDeviationPercent ( double thePercent)

Sets the expected average wall thickness deviation percent. thePercent should be in the [0, 1] range.

See also
ExpectedUniformThicknessPercent()

◆ SetExpectedMaxThickness()

void cadex::DFMMolding_IrregularWallThicknessIssue::SetExpectedMaxThickness ( double theExpectedMaxThickness)

Sets the expected maximum wall thickness. theExpectedMaxThickness should be greater than zero.

See also
ExpectedMaxThickness()

◆ SetExpectedMinThickness()

void cadex::DFMMolding_IrregularWallThicknessIssue::SetExpectedMinThickness ( double theExpectedMinThickness)

Sets the expected minimum wall thickness. theExpectedMinThickness should be greater than zero.

See also
ExpectedMinThickness()