CNC Example 1: Generating OutQueue Directly
Refer to the sample project CNCdirect.project in the installation directory of CODESYS.
This example shows a CNC program with two axes. Four positions are approached in the xy-plane with a defined velocity and acceleration. The program sets two path switch points on the path.
Creating NC programs in the CNC editor
Create a CNCdirect project with a SoftMotion controller.
Insert a CNC program object named Example.
Select the Implementation Din66025 and the Compile mode SMC_OutQueue.
Specify the following motion blocks:
See also
Creating a drive interface and PLC configuration
Define a drive structure with two linear drives as follows:
Insert two virtual drives X_Drive and Y_Drive below the SoftMotion general axis pool.
Set the Axis type parameter to Limited (1).
See also
Add a new CFC program Ipo to the application and configure a cyclic task with an interval of 3 ms.
Activate the drive with the function block MC_Power.
Insert the function block SMC_Interpolator. The function block converts a path defined by GEOINFO objects into discrete path points. The function block receives the address of the created CNC program at the input poqDataIn. Then the IEC task cycle time must be written to the input dwIpoTime. You can specify these as constant values at the input dwIpoTime or you can use the variable dwCycle of the axis group structure from the PLC configuration. The advantage of this is that the correct time is automatically used as the interpolator input when you change the task cycle time.
In this example, a gantry system will be controlled. For this purpose, insert an instance of the inverse and forward transformation function blocks from the SM_Trafo library. The forward transformation function block contains the drives as inputs. The inverse transformation function block must contain the set position of the interpolator. The forward transformation in the example is required for the visualization only.
The outputs of the function block (the axis coordinates) must be written to the drives. This is done with the SMC_ControlAxisByPos function block. Because the application does not guarantee that the outputs of the interpolator are constant (e.g. the path ends at a point other than where it began), activate the gap avoidance (bAvoidGaps, fGapVelocity, fGapAcceleration, fGapDeceleration). Then connect the StopIpo output to the bEmergency_Stop input of the interpolator and connect interpolator output iStatus to the respective inputs of the axis control function blocks.
Please note the correct order of function blocks when programming with CFC.
See also
Creating an operating interface and a testing interface
Link two visualization objects to a new visualization: the template of the interpolator and the template of the transformation. You must use placeholders to link these to the respective function block instances (here: Ipo.smci and Ipo.trafof).
Compile and start the created program. The program executes the CNC motion as soon as the Execute input of the interpolator has been set. After the program has run completely, you can restart it by means of a new rising edge.
Please note the function of the path switches that are also displayed in the visualization of the interpolation function block.