Jump to content

Assistance Needed: For Creating a Master Sprocket Measurement Program Using PCM in Zeiss Calypso


---
 Share

Recommended Posts

Hi Zeiss Community,

I'm working on developing a master measurement program for bike sprockets using PCM in Zeiss Calypso software. Since all bike sprockets share the same design with only dimensional variations, I want to create a single program that can measure error deviations by adjusting variable parameters.

Could anyone provide guidance or share their experience on how to set up such a program in Zeiss Calypso? Any tips or resources would be greatly appreciated.

Thank you!

Link to comment
Share on other sites

So, part to part the geometry is exactly the same? If the only difference is the size changing part to part this is very easy. 

Presetting's

_______________________________________________________________________________________________________________________________

LN = getRecordHead("order") 

clearCAD()
dir = getActualInspectionDir()

Part_Size = inquireList("Which part number are you measuring?", "123456", "123457", "123458")
selectCase Part_Size
    case "123456"
        readPCMFile(dir + "\123456.PARA")
loadCADFile(dir+"\123456.sab")

    case "123457"
        readPCMFile(dir + "\123457.PARA")
loadCADFile(dir+"\123457.sab")

    case "123458"
        readPCMFile(dir + "\123458.PARA")
loadCADFile(dir+"\123458.sab")

endSelect

Edited
Link to comment
Share on other sites

No! part to part geometry is not same. 

Specifications as given in image that varies part to part.

is it possible to fit a pin of given diameter in all teeth profile using pattern?

Please sign in to view this quote.

 

SPROCKET.JPG

Link to comment
Share on other sites

 Share

×
×
  • Create New...