These instructions use the example from the section "Creating Cams" to demonstrate how to change a cam.
Changing the path with the graphical editor
Open the Rotary table cam in the editor.
⇒ The Cam tab is visible.
Select the point at 120 and delete it by pressing the delete key (Del). Also delete the point at 240.
Select the Add point tool from the ToolBox view.
⇒ The mouse pointer becomes crosshairs when you move it into the editor.
Click near Master position 400 and Slave position 45 in the upper graphs (slave position).
⇒ The curve of the slave position is changed. The curves of velocity, acceleration, and jerk also change.
Select the new inserted point by clicking it.
Drag the point to another position.
⇒ The curve of the slave position is adjusted accordingly.
Change the X and Y properties to the exact values of 400 and 45, respectively.
In the same way, change the x-value to 45 of the point at master position 2000.
Select the Select tool from the ToolBox view.
Select the second curve element (between 400 and 2000).
Change the Segment type property to Line.
Check the curve in the graphical editor.
See also
Changing the path with a cam table
Open the Vertical axis cam in the editor.
⇒ The Cam tab is visible.
Select the Cam table tab.
Delete the point at 120 by clicking the symbol. Also delete the point at 240.
Click the symbol.
⇒ A new point and a new segment are inserted at (1000/150).
Add two more points.
Change the values X / Y of the following points:
Point 1: 0 / 0
Point 2: 400 / 0
Point 3: 600 / 250
Point 4: 1800 / 250
Point 5: 2000 / 0
⇒ The curve of the slave position is changed. The curves of velocity, acceleration, and jerk also change.
In the cam table, change the Segment type of the first and third segments to Line.
Check the curve in the graphical editor.
Note
In practice, the curves of the different cams are defined frequently as overlapping in order to save on cycle time. In the example above, the vertical axis could already begin the movement while the rotary table is still in motion (for example, at X: 350).
See also
Note
By clicking Display generated code, you can display the automatically created global variables.
{attribute 'linkalways'}
VAR_GLOBAL
Vertical_axis_A: ARRAY[0..4] OF SMC_CAMXYVA := [
(dX := 0, dY := 0, dV := 0, dA := 0),
(dX := 400, dY := 0, dV := 0, dA := 0),
(dX := 600, dY := 250, dV := 0, dA := 0),
(dX := 1800, dY := 250, dV := 0, dA := 0),
(dX := 2000, dY := 0, dV := 0, dA := 0)];
Vertical_axis: MC_CAM_REF := (nElements := 5, byType := 3, xStart := 0, xEnd := 2000, nTappets := 2, strCAMName := 'Vertical_axis', pce := ADR(Vertical_axis_A), pt := ADR(Vertical_axis_T), xPartofLM := TRUE);
END_VAR
See also