Motor not spinning¶
Symptom: the control software issues a Start command, the drive shows no fault, but the motor does not turn (or turns visibly slower than expected).
Quick triage¶
-
Status word check. Read the drive's Status Word (Modbus address 3) — or look at the decoded status in
WindTunnelControl.ps1. The interesting bits:RDY_ONset → drive is ready, supply OK.RDY_RUNset → drive is enabled.RDY_REFset → drive is following its speed reference.REMOTEset → drive is in remote mode (keypad showsREM).TRIPPEDset → fault is latched; see Faults and alarms.OFF2,OFF3set → emergency-stop bits are active; the drive will not start.
-
REF1 actually written? Read REF1 back. If it is
0, the software's write did not land (or was overwritten by a CW write). If it is non-zero, the drive saw the setpoint. -
CW actually
0x047F? Read CW back. If it is0x0476, the second step of the start sequence did not happen — the drive is prepared but not running.
Causes by symptom¶
REF1 stays at zero after writing¶
11.03 REF1 SELECTis not8 (COMM). The drive is ignoring fieldbus writes to REF1; restore the parameter (Parameter recovery).- Two clients are connected; one is overwriting REF1 with zero. Close all but one.
Drive accepts Start but coasts back to zero immediately¶
10.01 EXT1 COMMANDSis not10 (COMM). The drive is ignoring fieldbus start commands; restore.- Drive is in
LOCmode. Keypad showsLOC; pressLOC/REM. - A latched fault is being repeatedly auto-cleared. Read the fault history at the keypad.
Drive runs but at wrong speed¶
- Calibration drift: the software's
REF1 = RPM × 22.42constant is no longer correct. Refresh with Calibration refresh. - Acceleration ramp set very long (
22.02). Drive is on its way to the setpoint, just slowly. - Frequency limits in group 20 are clipping the request. Read
20.01 MAXIMUM FREQand20.02 MINIMUM FREQ.
Motor mechanical resistance¶
- Test section blockage from a poorly mounted model. Stop, inspect.
- Belt or coupling damaged. Inspect motor and fan coupling.
- Bearing seized. Drive will trip on overcurrent quickly — see Faults and alarms.
OFF2 or OFF3 bit is set in SW¶
These are the drive's "off path 2" and "off path 3" emergency-stop bits. They have to be cleared in the Control Word before the drive will accept a start. The start sequence writes CW = 0x0476 which clears them; if the sequence was interrupted, write 0x0476 and wait 500 ms before retrying.
Sanity-check loop¶
If you cannot tell what is going on, drop down to WindTunnelControl.ps1 for raw register access. The PowerShell tool's status panel decodes the Status Word and the Control Word into named bits; that view is the cleanest one for figuring out what state the drive is in.
If even the PowerShell tool cannot operate the motor, the problem is in the drive itself (parameters, hardware, or firmware) — not in the software. Open WT_MS_<n>/debug_session.md and start parameter dumps.