Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

Custom Tolerance Table

omarhernandez

New member
Hey all,


I want to create my own tolerance table for a part. Is this possible? I wantthe tolerance valuesto change depending on the value of the dimension. For example, Ifthe value> 150 then use +1,-0 else use +2, -1?


THanks,


Omar
 
Hi Omar


You can use IF and ENDIF statement in relation for this requirement.That will work as you expected.


Please find the below example for the statement.


IF d2=>500
TP2=0.06
TM2=0.03
ELSE
TP2=0.05
TM2=0.01
ENDIF


Here the TP is called Tolerance plus valueaccordingly TM means Tolerance minus value notation.


I hope this would be helpful to you.
 

Sponsor

Articles From 3DCAD World

Back
Top