Program Examples:Camming by Virtual Master
Introduction
Slave axis is driven by a virtual(simulated) master axis
Setup
Both master and slave axes are set as in previous examples
Program example
Creating Cam Table
Creating a 360 deg sine table
for i = 1 to CamTable1.Size CamTable1.MasterData [i] = 360*(i-1)/CamTable1.Size ' Master in degrees CamTable1.SlaveData [i] = cam_amplitude *sin (CamTable1.MasterData [i] * pi/180) next
Store the created file onto flash disk
storecamdata ct1.cam CamTable1