Standard Use Cases

The SM3_Basic library contains superordinate function blocks that do not interact with the drive over the standard set/actual value interface. These function blocks provide commands or change the settings of the drive by reading or writing the parameters of the instance of AXIS_REF_SM3.

See also

Reinitializing a drive

 

If you have changed the drive parameters at runtime, then you must reinitialize the drive. Example: Change the scaling factor or the position cycles of rotary drives. By calling the SMC3_ReinitDrive function block with a rising edge at the Execute input, the wCommuncationState parameter of the drive is reset and the complete start process of the drive is repeated.

Notice

Wait with the reinitialization until the axis reaches the required state SMC_COMSTATE_BASE_COM_INITIALIZATION or higher. Otherwise the error will print SMC_RAG_ERROR_AXIS_NOT_INITIALIZED.

If the communication of a subordinate fieldbus is interrupted, then reini­tialization is required as well. If this kind of error occurs with SMC_DI_GENERAL_COMMUNICATION_ERROR, then the following error handling is required.

Error handling

  1. Restart the fieldbus

    Note

    You can configure some fieldbuses so that they restart auto­matically. It is often necessary for you to add a special error handling of the fieldbus by means of IEC code.

    ⇒ Fieldbus communication starts

  2. Restart the drive/axis with SMC3_ReinitDrive.

    ⇒ Drive/axis starts.

See also

Switching a drive on/off

 

The bRegulatorOn and bDriveStart parameters of the AXIS_REF_SM3 function block control the performance level and decel­eration of a drive. Access is made by means of the MC_Power function block.

To release the output stage, you must set the bRegulatorOn param­eter of the MC_Power function block. The drive reports the current status of this process via the bRegulatorRealState output. If the drive supports it, then a bRegulatorOn reset deactivates the torque immedi­ately during the movement. In this case, the function block reports an error and sets the axes to the errorstop state.

The bDriveStart variable determines whether or not the drive can move. The current state of this parameters is found in bDriveStartRealState.

If the drive supports it, then a bDriveStart parameter reset deceler­ates the drive with the configured ramp (QuickStop) during the motion. Then the drive halts at the reached position as set in bRegulatorOn. The axis remains in the stopping state until the QuickStop mechanism is active (bDriveStart input = FALSE). if the drive has been moved previously by a function block, then it displays CommandAborted. This does not apply to the MC_Stop function block which reports an error and sets the axes to the errorstop state.

See also

Handling mechanical brakes

 

If the drive supports it, then the variable eBrakeControl can be set or reset by means of the SMC3_BrakeControl function block. Three different modes are possible.

SMC3_BrakeSetState

The variable bBrakeClosedRealState reports the current status of the brake.

From the point of view of SoftMotion, the control, as well as the state of the mechanical brake, does not depend on the state of the drive or the running motion.

See also

Switching control mode

 

With the SMC_SetControllerMode function block, you can switch between the different control modes. The parameters byControllerMode and byRealControllerMode from AXIS_REF_SM3 represent the necessary and the current state of the controller.

Possible values

SMC_nocontrol

Not a valid controller mode

SMC_torque

Torque/force control

SMC_velocity

Velocity control

SMC_position,

Position control

After writing the byControllerMode variables, the current state is checked until it agrees with the necessary control mode.

In the meantime, the POU calculates the specified value for the axis for example when changing the control mode. Then it sets its output bDone to TRUE. As of this time, it does not prepare any more specified values for the axis. This has to be done by other function blocks. Example: The output bDone triggers a function block MC_MoveVelocity, MC_MoveAbsolute, or MC_Halt. Otherwise the axis stops immediately after changing the control mode.

See also

Homing (drive controlled)

 

In SoftMotion, you can reference a drive in two ways:

See also

Position detection

 

You can detect the position of an axis in many ways, depending on the drive functions that the drive supports:

See also