Jump to content

measured data while measuring sample


---
 Share

Recommended Posts

Thank you, Martin:

Dimensional layout has 32 features, it took 23 minutes to measure all features, while machine measuring features, some time tool

engineer request to get values of measured features (either flatness or Perpendicularity, .....) in between meaning prior to finishing

entire 32 features. I want to know if there is a way to find measured feature values prior to finishing entire layout features.


Thank you
Link to comment
Share on other sites

Calypso does not perform characteristic evaluation until the entirety of the run is complete unless that value is needed for a feature measurement.

There is no standard way to change this behavior.
Link to comment
Share on other sites

First you should run your inspection plan sorted by characteristics.
Then you have 2 options:
You can enable the default report (in german its called Arbeitsprotokoll) 303_2a3861aed5934fad650c22051711582a.jpg

The other way just works if you have PCM 303_8da59626641742fd9cce752efc503191.jpg
write the following code in the postsetting of every characteristic:

name = getNominal().identifier
display(name)
display(getActual(name).actual)
quality = (getActual(name).inTolerance)
if quality == true
	display("feature in tolerance")
	else
	display("feature out of tolerance")
endif
display("-----------------------")
Link to comment
Share on other sites

 Share

×
×
  • Create New...