Integrated systems combine mechanical and electrotechnological subsystems to achieve functions that neither could accomplish alone. In VCE Systems Engineering, understanding how these subsystems interface, complement each other, and transfer energy is a core design and analytical skill.
KEY TAKEAWAY: Mechanical subsystems provide physical motion, force, and structural support; electrotechnological subsystems provide sensing, intelligence, and controlled actuation. Integration means designing compatible interfaces between them.
Every integrated system can be represented as a block diagram:
[Inputs] → [Sensors] → [Controller] → [Actuators] → [Mechanical Output]
↑
└─────── [Feedback] ──────────┘
An electric motor (electrotechnological) drives a gear train or belt-pulley system (mechanical) to move a load.
Example — Conveyor belt:
- Motor converts electrical energy → rotational motion
- Belt-and-pulley system transmits motion to conveyor surface
- Speed is controlled by a microcontroller varying PWM signal to motor driver
- A limit switch (sensor) detects when a product reaches the end and stops the belt
Design consideration: The motor’s torque and speed must be matched to the mechanical load using gear ratios. If the load requires 5 N·m and the motor provides 1 N·m, a 5:1 reduction gearbox is needed.
A sensor detects a physical condition; the controller decides; an actuator produces a mechanical response.
Example — Automatic door:
- PIR (passive infrared) sensor detects a person approaching → digital HIGH to microcontroller
- Microcontroller outputs PWM signal to motor driver
- DC motor drives a rack-and-pinion mechanism to slide the door open
- Limit switches at each end of travel stop the motor
- Timer in the controller closes the door after a delay
VCAA FOCUS: Expect questions describing an integrated system and asking you to: (a) identify the sensors and actuators, (b) describe their operating principles, (c) explain how the mechanical and electrotechnological subsystems interact.
A servo motor or stepper motor achieves precise mechanical positioning under electronic control.
Example — Robot arm joint:
- Microcontroller sends a target angle to the servo
- Internal feedback (potentiometer) in the servo compares actual angle to target
- Motor drives the joint until actual = target (closed-loop position control)
- Gear reduction inside the servo multiplies torque for lifting loads
Energy flows through an integrated system and is transformed at each stage:
$$\text{Electrical energy} \xrightarrow{\text{motor}} \text{Mechanical (kinetic)} \xrightarrow{\text{gears}} \text{Mechanical (force × displacement)} \xrightarrow{\text{friction, heat}} \text{Losses}$$
At each conversion stage, efficiency losses occur. The overall system efficiency is the product of individual stage efficiencies:
$$\eta_{system} = \eta_{motor} \times \eta_{gearbox} \times \eta_{drive} \times \ldots$$
Worked example: Motor efficiency = 85%, gearbox efficiency = 90%, belt drive efficiency = 95%.
$$\eta_{system} = 0.85 \times 0.90 \times 0.95 = 0.726 = 72.6\%$$
COMMON MISTAKE: Students often overlook that efficiency losses are multiplicative, not additive. If three stages are each 90% efficient, the system is not 90% efficient — it is $0.9^3 = 72.9\%$ efficient.
For reliable integration, subsystem interfaces must be compatible:
| Interface | Must match |
|---|---|
| Motor ↔ Load | Torque, speed (via gear ratio selection) |
| Sensor ↔ ADC pin | Output voltage range (0 to Vcc) |
| Microcontroller ↔ Motor | Current (use transistor/H-bridge driver) |
| Mechanical ↔ Structural | Forces, stresses within material limits |
APPLICATION: When designing an integrated system prototype, always specify: (1) the electrical supply voltage and current, (2) the mechanical forces and speeds required, (3) the sensor output range and type, and (4) the actuator input requirements. Mismatched interfaces prevent the system from working.
A complete description of an integrated system should cover:
1. Purpose — what function the system achieves
2. Inputs — what physical quantities or user actions the system responds to
3. Sensing — which sensors detect those inputs and how
4. Control logic — what decisions the controller makes
5. Actuation — which actuators respond and what they do mechanically
6. Output — what useful work the mechanical subsystem performs
7. Feedback (if applicable) — how the system monitors and corrects its output
STUDY HINT: Practise writing a complete system description for three or four familiar integrated systems (washing machine, robot, automatic gate, 3D printer) before the exam. The VCAA structured response questions often ask for exactly this type of analysis.