Jump to content

Search Command PCM?


---
 Share

Recommended Posts

Hi!

I am looking for the best way for Calypso to search for a feature on a fixture with probe, that may or may not be there.
The output would stop the program not to cause damage to probe.

Any useful information would be great on this topic.



Best Regards
Adam
Link to comment
Share on other sites

  • 1 month later...
I've had to do something similar recently. Try something along these lines...
WK = confirm("Does part have Washer Keys in the Ø " + M4_Nom + " hole?")
if WK == true then
	WK_Test = 1
	Text2 = "Unable to check E08_0010DIAM_001_001 due to Washer Key obstruction in Ø " + M4_Nom + "hole")
	message(Text2)
endif else
if WK == false then
	WK_Test = 0
	Text2 = "No obstruction recorded in Ø " + M4_Nom + "hole"
	message(Text2)
endif
then apply in the WK (in this case) as a condition in the Characteristic and In the Strategy for the Feature.

Untitled.jpg

Link to comment
Share on other sites

 Share

×
×
  • Create New...