Changing the Cam Path

 

These instructions use the example from the section "Creating Cams" to demonstrate how to change a cam.

Changing the path with the graphical editor

  1. Open the Rotary table cam in the editor.

    ⇒ The Cam tab is visible.

  2. Select the point at 120 and delete it by pressing the delete key (Del). Also delete the point at 240.

  3. Select the Add point tool from the ToolBox view.

    ⇒ The mouse pointer becomes crosshairs when you move it into the editor.

  4. 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.

  5. Select the new inserted point by clicking it.

  6. Drag the point to another position.

    ⇒ The curve of the slave position is adjusted accordingly.

  7. Change the X and Y properties to the exact values of 400 and 45, respectively.

  8. In the same way, change the x-value to 45 of the point at master position 2000.

  9. Select the Select tool from the ToolBox view.

  10. Select the second curve element (between 400 and 2000).

  11. Change the Segment type property to Line.

  12. Check the curve in the graphical editor.

    _sm_img_cam_example1.png 

See also

Changing the path with a cam table

  1. Open the Vertical axis cam in the editor.

    ⇒ The Cam tab is visible.

  2. Select the Cam table tab.

  3. Delete the point at 120 by clicking the _sm_icon_cam_delete.png symbol. Also delete the point at 240.

  4. Click the _sm_icon_cam_add_point.png symbol.

    ⇒ A new point and a new segment are inserted at (1000/150).

  5. Add two more points.

  6. 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.

  7. In the cam table, change the Segment type of the first and third segments to Line.

  8. Check the curve in the graphical editor.

    _sm_img_cam_example2.png 

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

Displaying generated code

Note

By clicking Display generated code, you can display the auto­matically 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

See also