You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Table of Contents

There are a number of modes of operation the motor can be set to.

  1. CML mode - this is the standard and default mode. 
  2. Profile mode - run position or speed profiles.
  3. Torque mode - run the motor by adjusting the torque and maximum speed values.

Setting Mode Of Operation

The control registers in the mode selected use either standard CML registers or registers set directly such as through Modbus-TCP. The mode of operation selected indicates where the control registers will be received

The following table lists the mode of operation and the associated registers

Mode of OperationValueDescription
CML Mode0Standard CML mode. No control registers associated
Profile Mode2Profile mode using P1, S1, A1, A2, R1 and N1
3Profile mode using Modbus control registers (see registers starting 41029).
Torque Mode10Torque mode using N1, S1 and R1
11Torque mode using Modbus control registers (see registers starting 41029).
  • Bit0 of the mode of operation selects the register source. I.e. P1 to N1 or the Modbus contorl registers.

Set the mode of operation by the following

  1. Send "_mop=x" on the CML port when x is the value of the mode of operation
  2. Assign a variable to "mop" and write the variable in a logic bank. E.g. V0="mop".
  3. Set modbus register 41041 to the value of the required mode of operation.

Registers

The following registers are used in the different modes of operation. They are NOT use on CML mode.

Controlword

The Controlword is used to control the motor. The usage does depend on the mode that is selected. See the mode for bit usage. B4-B7 are common to all modes.

Register Name

CML Register

Modbus Register

UnitRange
ControlwordR141039N/ASee below
BITNameValueDescription
B0Operation mode specific
B1Operation mode specific
B2Operation mode specific
B3Operation mode specific
B4Disable0
1
1 → 0
Enable the motor
Disable the motor
Reset any error
B5Reset Error0 → 1Reset any error
B6Set to Zero0 → 1Set the current position to 0
B7Home0 → 1Start a home search(1)

(1) Set the home search parameters with K parameters K42-K48

TargetPosition

The TargetPosition sets a new target position for the motor.

Register Name

CML Register

Modbus Register

UnitRange
TargetPositionP141029pulses (counts)-2^31 to +2^31

The motor has a maximum resolution of 50,000 counts per revolution. Regardless of the resolution defined in K37 the motor internally will convert the target position to a position based on 50,000. As such the maximum range depends on the motor resolution. For example if K37=3 and the resolution is 1000 pulses/revolution, the maximum target position is 2^31 ÷ (50,000/1,000) = 2^31 ÷ 50  = 42,949,672.

TargetSpeed

The TargetSpeed sets a new maximum speed.

Register Name

CML Register

Modbus Register

UnitRange
TargetSpeedS141031pulses/second
10 pulses/second
100 pulses/second
-2^31 to +2^31

The unit depends on the motor resolution (K37) value selected. See K37 for more details.

TargetTorque

The TargetTorque sets the maximum torque used by the motor.

Register Name

CML Register

Modbus Register

UnitRange
TargetTorqueN1410330.1% rated torque0 - 1100

The torque is set in a percentage of rated torque. The Cool Muscle will only use the torque required so typically this value should be set to 1100 unless the application requires that the torque is limited.

TargetAcceleration

The TargetAcceleration sets the acceleration used by the motion profile.

Register Name

CML Register

Modbus Register

UnitRange
TargetAccelerationA141035Kpulses/second2± 32767

If the TargetAcceleration=0 the profile shall be undefined and may result in an unexpected motion profile.

TargetDeceleration

Register Name

CML Register

Modbus Register

UnitRange
TargetDecelerationA241037Kpulses/second2± 32767

If the TargetDeceleration=0 the TargetAcceleration shall be used. This allows the user to only change the acceleration if a trapezoid type profile is required.

Modes

CML Mode

CML mode is the standard mode that the Cool Muscle motor typically operates in. There are no specific control registers. See the CM1 documentation for CML mode usage.

Profile Mode

Profile mode would be a typical mode used in point-to-point motion and/or continuous velocity motion. The following registers are used depending on the profile mode selected.

Register Name

Profile Mode = 2

(CML Registers)

Profile Mode = 3

(Modbus Registers)

UnitDescription
TargetPositionP141029pulses (counts)Next target position the motor will move to
TargetSpeedS141031pulses/secondThe maximum speed of the profile trajectory
TargetTorqueN1410330.1% rated torqueThe maximum torque the motor will use
TargetAccelerationA141035Kpulses/second2Acceleration used when accelerating to TargetSpeed
TargetDecelerationA241037Kpulses/second2Deceleration used when decelerating to TargetPosition
ControlwordR141039N/ABits in the Controlword dictate profile execution
  • No labels