Why These Terms Matter

Mechatronics sits at the intersection of mechanical engineering, electrical engineering, control theory, and embedded software — which means practitioners constantly cross vocabularies that were never designed to work together. A mechanical engineer's "compliance" means something different from a controls engineer's "gain," and a software engineer's "interrupt" has nothing to do with a motor's "duty cycle" until you're debugging a robot arm that stutters under load. Misreading these terms costs real time: specifying the wrong motor because "holding torque" and "rated torque" were confused, or missing a resonance problem because "backlash" and "compliance" were treated as the same thing.

This glossary collects 55 of the terms that come up most often in mechatronic system design — spanning actuators, sensors, motion control, and the embedded electronics that tie them together — organized alphabetically with plain-language explanations and the standards bodies (IEEE, ISO, NEMA, ANSI) that formalize them where applicable.

A

Actuator — general mechatronics term
A device that converts an input signal (electrical, hydraulic, or pneumatic) into physical motion or force. Motors, solenoids, hydraulic cylinders, and piezoelectric elements are all actuators. The actuator is the "muscle" of a mechatronic system; sensors are its "nerves," and the controller is its "brain."
Ackermann Steering — vehicle kinematics term
A steering geometry in which the inner and outer front wheels turn at slightly different angles so that all wheels trace circles around a common center point, avoiding tire scrub during turns. Used in wheeled mobile robot design and automotive steering linkages.
Analog-to-Digital Converter (ADC) — electronics term
A circuit that converts a continuous analog voltage (from a sensor, for example) into a discrete digital value a microcontroller can process. ADC resolution, expressed in bits (e.g., 12-bit = 4096 discrete levels), determines the smallest voltage change the system can distinguish — a critical spec when reading strain gauges or thermocouples.
Actuator Saturation — control systems term
The condition where a controller commands more force, torque, current, or voltage than the actuator can physically deliver. Saturation causes integral windup in PID controllers and is a common source of overshoot and instability if not explicitly handled in the control algorithm (anti-windup logic).

B

Backlash — gear/mechanism term
The small amount of "lost motion" or play between mating gear teeth (or other mechanical linkages) before torque transfer begins when direction reverses. Backlash causes positioning error and control instability in precision motion systems; it is minimized with anti-backlash gears, preloaded ball screws, or direct-drive designs that eliminate the gear train entirely.
Ball Screw — linear motion term
A mechanical linear actuator that converts rotary motion into linear motion using recirculating ball bearings riding in a helical groove, offering much lower friction and higher precision than an ACME (trapezoidal) lead screw. Preloaded ball screws virtually eliminate backlash and are standard in CNC machines and precision stages.
Bandwidth (control loop) — control systems term
The frequency range over which a control system can accurately track a reference input, typically defined as the frequency at which the closed-loop gain drops by 3 dB. Higher bandwidth means faster, more responsive control, but pushing bandwidth too high can excite unmodeled mechanical resonances and cause instability.
Brushless DC Motor (BLDC) — actuator term
A synchronous motor that uses electronic commutation (via a motor driver and rotor position feedback) instead of mechanical brushes to switch current between windings. BLDC motors offer higher efficiency, longer life, and better heat dissipation than brushed DC motors because there is no brush-commutator friction or arcing, but they require more complex drive electronics.

C

Closed-Loop Control — control systems term
A control scheme that continuously measures the actual output (via a sensor) and feeds it back to the controller, which adjusts its command based on the error between the desired and actual value. Closed-loop (feedback) control corrects for disturbances and modeling errors that open-loop control cannot, at the cost of added sensors and complexity.
Compliance — mechanical term
The inverse of stiffness — a measure of how much a mechanical structure deflects under a given load. High compliance (a "soft" structure) can absorb shock and enable safe human-robot contact, but it also introduces vibration modes and positioning error that the control system must account for. Not to be confused with backlash, which is play, not elasticity.
Current Loop — motor control term
The innermost, fastest control loop in a cascaded servo control architecture, responsible for regulating motor current (and therefore torque) directly. The current loop typically runs at the highest update rate (tens of kHz), with the velocity loop and position loop nested outside it at progressively lower rates.
Cogging Torque — motor term
The pulsating torque ripple felt when manually rotating a permanent-magnet motor shaft with no power applied, caused by magnetic attraction between the rotor magnets and stator teeth. Cogging torque degrades smoothness at low speed and is minimized with skewed magnets, slotless stator designs, or higher pole counts.

D

Datum — dimensional/kinematics term
A reference point, axis, or plane from which the position or orientation of other features or motion is measured. Establishing a consistent datum is essential for coordinating multi-axis motion systems and for tolerance stack-up analysis in mechanical design.
Degrees of Freedom (DOF) — kinematics term
The number of independent parameters needed to fully define the position and orientation of a mechanical system. A point moving in a plane has 2 DOF; a rigid body in 3D space has 6 DOF (3 translational, 3 rotational). A six-axis robot arm has 6 DOF, allowing it to reach any position and orientation within its workspace.
Duty Cycle — actuator/electronics term
The proportion of time a motor, solenoid, or PWM signal is actively "on" versus the total cycle period, usually expressed as a percentage. Motors rated for intermittent duty (e.g., S3 per IEC 60034-1) will overheat if run continuously at full load; duty cycle ratings tell the engineer how much rest time the motor needs between operations.
Deadband — control systems term
A range of input values around zero (or around the setpoint) over which the controller produces no output change, used to prevent chattering from sensor noise near a threshold. Too wide a deadband causes sluggish response and steady-state error; too narrow causes actuator wear from constant small corrections.

E

Embedded System — computing term
A microcontroller- or microprocessor-based computer system dedicated to a specific function within a larger mechanical or electromechanical device, as opposed to a general-purpose computer. Motor controllers, sensor interface boards, and robot joint controllers are all embedded systems — typically running real-time firmware rather than a general OS.
Encoder — sensor term
A sensor that converts angular or linear position into an electrical signal, most commonly by counting pulses (incremental encoder) or reading a unique position code (absolute encoder) as a disk or scale moves past a read head. Encoder resolution, given in counts per revolution (CPR) or pulses per revolution (PPR), directly limits the positioning precision achievable by the servo loop.
End Effector — robotics term
The tool or device attached to the end of a robotic arm that interacts with the environment — a gripper, welding torch, vacuum cup, or camera. End-effector selection and mounting drive much of the kinematic and dynamic analysis of a robot application.
Encoder, Absolute — sensor term
An encoder that outputs a unique digital code for every distinct position within a revolution (or range), so the true position is known immediately at power-up without requiring a homing move. Contrasts with an incremental encoder, which only outputs relative pulse counts and needs a reference (home) position established after every power cycle.

F

Feedforward Control — control systems term
A control technique that computes and applies a command based on a model of the system and the desired trajectory, before any error is measured, rather than waiting to react to feedback. Feedforward is typically combined with feedback (closed-loop) control to reduce tracking error and improve response speed, especially for known, repeatable disturbances like gravity or friction.
Force/Torque Sensor — sensor term
A sensor, often mounted at a robot wrist or joint, that measures the forces and moments (typically in 3 or 6 axes) being applied at that point. Used for compliant assembly tasks, collaborative robot safety (detecting unexpected contact), and process monitoring in machining.
Fieldbus — communications term
A digital, serial, multi-drop communication network used to connect industrial devices such as sensors, actuators, and PLCs in real time, replacing point-to-point analog 4–20 mA wiring. EtherCAT, CANopen, and PROFINET are common fieldbus protocols used to synchronize motion control axes in mechatronic systems.
Frequency Response — control systems term
A characterization of how a system's output amplitude and phase respond to sinusoidal inputs across a range of frequencies, typically shown as a Bode plot. Frequency response analysis reveals mechanical resonances and identifies the achievable control bandwidth before resonant modes are excited.

G

Gear Ratio — mechanical term
The ratio of input speed to output speed (or, equivalently, output torque to input torque) across a gear train or gearbox. A 10:1 gear ratio multiplies torque by 10 and divides speed by 10 (minus mechanical losses), which is why gearmotors trade top speed for holding torque and why reflected inertia at the motor scales with the square of the gear ratio.
Gain — control systems term
A scalar multiplier applied to an error signal (or other variable) within a control loop; in a PID controller, the proportional gain (Kp), integral gain (Ki), and derivative gain (Kd) determine how aggressively the controller reacts to error, its history, and its rate of change, respectively.
Gantry — motion system term
A motion platform in which a beam spans two parallel linear axes (often synchronized as a single logical axis) to carry a moving carriage or tool across a work envelope, common in CNC routers, 3D printers, and pick-and-place machines. Gantry systems require careful synchronization ("gantry squaring") between the two parallel axes to avoid racking.

H

Haptic Feedback — human-machine interface term
The use of force, vibration, or motion to communicate information to a human operator through the sense of touch, commonly implemented in teleoperated robotics and simulation to convey resistance, texture, or collision events.
Hall Effect Sensor — sensor term
A sensor that detects the presence and strength of a magnetic field by measuring the voltage generated across a current-carrying conductor placed in that field (the Hall effect). Widely used for brushless motor commutation feedback, proximity sensing, and current sensing because they are contactless and highly reliable.
Homing — motion control term
The procedure by which a motion axis establishes a known reference (zero) position, typically by moving toward a limit or home switch at reduced speed and then defining that point as the origin. Required at every power-up for systems using incremental encoders, since they have no memory of absolute position.
Holding Torque — motor term
The maximum torque a stepper motor (or a servo in position-hold mode) can resist before its rotor is forced out of its commanded position, measured with the motor energized but not rotating. Holding torque is often confused with rated (continuous running) torque, which is typically lower once the motor is turning.

I

Inertia — mechanical/dynamics term
A body's resistance to angular (moment of inertia) or linear (mass) acceleration. In mechatronic design, matching the reflected load inertia to the motor's rotor inertia (commonly targeting a ratio of 1:1 to 10:1) is a key criterion for achieving stable, responsive servo control without excessive gain or overshoot.
Interrupt — embedded systems term
A hardware or software signal that causes a microcontroller to pause its current task and immediately execute a designated handler routine, used for time-critical events such as reading an encoder pulse or responding to an emergency-stop input without waiting for the main program loop.
Inverse Kinematics (IK) — robotics term
The mathematical process of calculating the joint angles (or actuator positions) required to place a robot's end effector at a desired position and orientation — the reverse of forward kinematics, which computes end-effector pose from known joint angles. IK problems can have zero, one, or multiple valid solutions depending on the robot's configuration.
IP Rating — ISO/IEC 60529 term
Ingress Protection rating, a two-digit code (e.g., IP65) specifying a component's resistance to solid particle intrusion (first digit) and liquid intrusion (second digit). Selecting actuators and sensors with adequate IP ratings is essential for mechatronic systems deployed in washdown, outdoor, or dusty industrial environments.

J

Jerk — motion profile term
The rate of change of acceleration over time (the third derivative of position). Limiting jerk — using an S-curve rather than a trapezoidal velocity profile — reduces mechanical shock, vibration, and wear on a motion system, at the cost of slightly longer move times.
Joint Space — robotics term
A coordinate system that describes a robot's configuration in terms of its individual joint angles (or positions) rather than the Cartesian position of its end effector (task space). Trajectory planning can be performed in either joint space or task space depending on the application's requirements.

K

Kalman Filter — sensor fusion term
A recursive algorithm that estimates the true state of a dynamic system (such as position and velocity) by optimally combining noisy sensor measurements with a mathematical model of the system's expected behavior, weighting each source by its estimated uncertainty. Widely used in mechatronics to fuse accelerometer, gyroscope, and encoder data into a single smooth, low-latency state estimate.
Kinematics — mechanics term
The study of motion (position, velocity, acceleration) without regard to the forces that cause it, as distinct from dynamics, which accounts for forces and torques. Forward and inverse kinematics are the two foundational problems in robot motion planning.

L

Linear Actuator — actuator term
An actuator that produces motion in a straight line, implemented via a motor-driven lead screw or ball screw, a pneumatic/hydraulic cylinder, or a linear motor (which produces linear force directly with no rotary-to-linear conversion mechanism).
Limit Switch — sensor term
A mechanical or non-contact (optical/magnetic) switch that signals when a moving part has reached the end of its allowed travel range, used both for homing reference and as a hardware safety interlock to prevent mechanical overtravel and damage.
Load Cell — sensor term
A transducer, typically based on strain gauges bonded to a metal element, that converts an applied force into an electrical signal proportional to that force. Used for weighing, force-controlled assembly, and overload protection in mechatronic systems.

M

Mechatronics — foundational term
The integrated, multidisciplinary design of systems combining mechanical engineering, electronics, control theory, and computer/software engineering into a single product, rather than designing each discipline in isolation and bolting the results together. The term was coined in Japan in 1969 and now describes everything from robots and CNC machines to automotive anti-lock brakes and camera autofocus systems.
Microcontroller Unit (MCU) — electronics term
A compact integrated circuit containing a processor core, memory, and peripheral interfaces (ADC, PWM, communication buses) on a single chip, designed to run dedicated embedded control tasks such as motor commutation or sensor polling with deterministic timing.
Motor Driver — electronics term
The power electronics stage (often an H-bridge or three-phase inverter built from MOSFETs or IGBTs) that converts low-power control signals from a microcontroller into the higher-voltage, higher-current waveforms needed to drive a motor's windings.
Motion Profile — motion control term
The planned time history of position, velocity, and acceleration commanded to an axis during a move, most commonly a trapezoidal profile (constant acceleration, constant velocity, constant deceleration) or an S-curve profile (which also limits jerk for smoother motion).

N

NEMA Frame Size — NEMA standard term
A standardized mounting-face dimension for stepper and servo motors (e.g., NEMA 17, NEMA 23, NEMA 34), where the number refers to the face width in tenths of an inch. NEMA sizing lets designers swap motors from different manufacturers without redesigning mounting hardware, though torque and length still vary by model.
Natural Frequency — dynamics term
The frequency at which a mechanical structure or system oscillates when disturbed and left to vibrate freely, with no external driving force. If a control loop's bandwidth approaches a structure's natural frequency, the interaction can excite resonance and destabilize the system — a key constraint in servo tuning.

O

Open-Loop Control — control systems term
A control scheme that issues commands based solely on a predetermined input, with no sensor feedback to verify the actual outcome. Stepper motors are commonly driven open-loop, relying on their inherent step accuracy — but this means a missed step (from excessive load or acceleration) goes undetected unless an encoder is added to close the loop.
Overshoot — control systems term
The amount by which a system's response exceeds its final steady-state target value before settling, typically expressed as a percentage of the step input size. Excessive proportional or integral gain in a PID loop is a common cause of overshoot.
Optical Encoder — sensor term
An encoder that determines position by shining light through (or reflecting it off) a patterned disk or linear scale and detecting the resulting light/dark transitions with a photodetector array, offering high resolution but requiring protection from dust and contamination compared to magnetic encoders.

P

PID Controller — control systems term
A feedback control algorithm that computes a correction based on three terms: Proportional (reacts to current error), Integral (eliminates steady-state error by accumulating past error over time), and Derivative (dampens response by reacting to the rate of change of error). PID control is the most widely used control architecture in mechatronic systems because it is simple to implement and tune without requiring a detailed system model.
Pulse Width Modulation (PWM) — electronics term
A technique for controlling average power delivered to a load by rapidly switching a signal on and off and varying the ratio of on-time to off-time (duty cycle), rather than varying voltage continuously. PWM is the standard method for controlling DC motor speed and driving proportional valves efficiently, since the switching devices spend little time in their lossy linear (partially on) state.
Piezoelectric Actuator — actuator term
An actuator that produces motion by exploiting the piezoelectric effect, in which certain crystals or ceramics change shape when a voltage is applied across them. Piezo actuators offer sub-micron positioning resolution and extremely fast response but very limited travel range, making them suited to precision alignment and vibration cancellation rather than long-stroke motion.
Proprioception — robotics/sensing term
A robot's internal sense of its own configuration — joint angles, velocities, and applied torques — derived from encoders and force/torque sensors, as distinct from exteroception (sensing the external environment via cameras or lidar).

R

Real-Time System — embedded systems term
A computing system in which the correctness of a result depends not only on its logical accuracy but also on the time at which it is delivered. A hard real-time system (such as a motor's current control loop) must meet its deadline every cycle without exception, or the control loop becomes unstable.
Resolver — sensor term
An electromagnetic position sensor that outputs sine and cosine signals proportional to shaft angle, functioning like a rotary transformer. Resolvers are more rugged and tolerant of heat, vibration, and contamination than optical encoders, which is why they remain common in automotive and industrial servo motors despite requiring more complex signal-conditioning electronics.
Reflected Inertia — mechanical/dynamics term
The apparent inertia that a load presents to a motor after being scaled through a gear reduction, calculated as the load's actual inertia divided by the square of the gear ratio. Because the relationship is squared, even a modest gear ratio dramatically reduces the inertia a motor "feels," which is why gearing is often used to better match motor and load inertia for stable servo control.
Repeatability — motion/robotics term
The ability of a system to return to the same commanded position across repeated trials, expressed as a tolerance band (e.g., ±0.02 mm). Repeatability differs from accuracy — a system can be highly repeatable (consistent) while still being inaccurate (offset from the true target) if it has not been properly calibrated.
Robotics — related discipline term
The subset of mechatronics specifically focused on machines capable of sensing their environment, planning actions, and executing physical motion autonomously or semi-autonomously, drawing on kinematics, dynamics, control theory, and often machine perception.

S

Sensor Fusion — sensing term
The process of combining data from multiple sensors (e.g., an accelerometer and a gyroscope in an inertial measurement unit) to produce a state estimate that is more accurate, reliable, or complete than any single sensor could provide alone — typically implemented with a Kalman filter or complementary filter.
Servo Motor — actuator term
A motor paired with a position (and typically velocity and current) feedback sensor and a closed-loop controller, allowing precise control of angular or linear position, velocity, and torque. Unlike open-loop stepper motors, servo systems can detect and correct for missed steps, external disturbances, or load changes in real time.
Stepper Motor — actuator term
A brushless DC motor that rotates in discrete, fixed-angle increments ("steps") in response to a sequence of electrical pulses, allowing open-loop position control without feedback in applications where the load and acceleration stay within the motor's torque capability at every step.
Stiffness — mechanical term
The resistance of a structure to deflection under an applied load, expressed as force (or torque) per unit displacement. High structural stiffness is generally desirable in machine frames because it raises natural frequency and reduces positioning error, though it trades off against weight and cost.
System Identification — control systems term
The experimental process of characterizing a physical system's dynamic behavior (transfer function, natural frequencies, damping) by measuring its response to known test inputs, used to build the model needed for model-based controller tuning or feedforward design.

T

Torque Ripple — motor term
Periodic variation in a motor's output torque as the shaft rotates, caused by cogging torque, commutation switching, or winding harmonics. Torque ripple degrades smoothness at low speed and can excite mechanical resonance, so it is a key spec for precision motion applications like optical scanning or CNC finishing passes.
Trajectory Planning — motion control term
The process of generating a time-parameterized path (position, velocity, and acceleration at every point in time) for one or more axes to follow, subject to constraints such as maximum velocity, acceleration, jerk, and obstacle avoidance.
Transducer — sensor term
A general term for any device that converts one form of energy or physical quantity into another, most commonly into an electrical signal — the umbrella category that includes encoders, load cells, thermocouples, and pressure sensors.
Torque Constant (Kt) — motor term
A motor parameter, expressed in units such as N·m/A, that relates output torque directly to armature (or phase) current in a DC or brushless motor, allowing torque to be commanded indirectly and precisely through current control in the innermost servo loop.

U

Underdamped Response — control systems term
A system response to a step input that oscillates around the final value before settling, characterized by overshoot and a damping ratio less than 1.0. Contrasts with a critically damped response (fastest settling with no overshoot) and an overdamped response (no overshoot but slower settling).

V

Variable Frequency Drive (VFD) — motor control term
A power electronics unit that controls an AC induction motor's speed and torque by varying the frequency and voltage of the power supplied to it, rather than relying on a fixed line frequency. VFDs are also called AC drives or inverters and are common in industrial fan, pump, and conveyor applications where precise servo positioning is not required but variable speed and soft starting are.
Velocity Loop — control systems term
The middle control loop in a cascaded servo architecture, sitting between the fast inner current loop and the slower outer position loop, responsible for regulating the actuator's speed to match a commanded velocity profile.

W

Workspace — robotics term
The complete volume of space that a robot's end effector can physically reach, determined by its link lengths, joint types, and joint travel limits. Distinguishing the "reachable workspace" (positions reachable in at least one orientation) from the "dexterous workspace" (positions reachable in every orientation) matters when selecting a robot for a task.
Watchdog Timer — embedded systems term
A hardware timer that must be periodically "reset" (fed) by running firmware; if the firmware hangs or crashes and fails to reset the timer in time, the watchdog forces a system reset. A standard safety mechanism in embedded mechatronic controllers to recover automatically from software faults.