Preface: Constructing the "Dynamic Core" for Safe Human-Robot Collaboration – A Systems Approach to Power Device Selection in Cobot Drives and Safety Systems
Cobot Drive & Safety System Power Topology Diagram
Cobot Drive & Safety System Overall Power Topology Diagram
graph LR
%% Main Power Supply Section
subgraph "Main Power Input & Distribution"
AC_DC["Main AC-DC Power Supply 48V/24V Industrial"] --> EMI_FILTER["EMI Filter & Surge Protection"]
EMI_FILTER --> MAIN_DC_BUS["Main DC Bus 48VDC"]
EMI_FILTER --> AUX_DC_BUS["Auxiliary DC Bus 24VDC"]
end
%% High-Power Main Axis Inverter Section
subgraph "High-Torque Main Axis/Shoulder Inverter"
INV_BRIDGE["Three-Phase Inverter Bridge"] --> MAIN_MOTOR["Main Axis Servo Motor High Torque"]
subgraph "High-Current MOSFET Array"
Q_MAIN_UH["VBGQT3401 Dual-N+N 40V/350A"]
Q_MAIN_VH["VBGQT3401 Dual-N+N 40V/350A"]
Q_MAIN_WH["VBGQT3401 Dual-N+N 40V/350A"]
Q_MAIN_UL["VBGQT3401 Dual-N+N 40V/350A"]
Q_MAIN_VL["VBGQT3401 Dual-N+N 40V/350A"]
Q_MAIN_WL["VBGQT3401 Dual-N+N 40V/350A"]
end
MAIN_DC_BUS --> Q_MAIN_UH
MAIN_DC_BUS --> Q_MAIN_VH
MAIN_DC_BUS --> Q_MAIN_WH
Q_MAIN_UH --> INV_BRIDGE
Q_MAIN_VH --> INV_BRIDGE
Q_MAIN_WH --> INV_BRIDGE
INV_BRIDGE --> Q_MAIN_UL
INV_BRIDGE --> Q_MAIN_VL
INV_BRIDGE --> Q_MAIN_WL
Q_MAIN_UL --> GND_MAIN
Q_MAIN_VL --> GND_MAIN
Q_MAIN_WL --> GND_MAIN
end
%% Distributed Joint Actuator Section
subgraph "Distributed Joint Actuator Modules"
subgraph "Joint 1: Elbow Actuator"
J1_DCDC["Point-of-Load DC-DC Converter"] --> J1_DRIVER["Servo Driver"]
J1_DRIVER --> J1_MOTOR["Joint Motor"]
subgraph "DC-DC Power Switches"
Q_J1_HIGH["VBNCB1303 30V/90A"]
Q_J1_LOW["VBNCB1303 30V/90A"]
end
AUX_DC_BUS --> Q_J1_HIGH
Q_J1_HIGH --> J1_DCDC
J1_DCDC --> Q_J1_LOW
Q_J1_LOW --> GND_JOINT
end
subgraph "Joint 2: Wrist Actuator"
J2_DCDC["Point-of-Load DC-DC Converter"] --> J2_DRIVER["Servo Driver"]
J2_DRIVER --> J2_MOTOR["Joint Motor"]
subgraph "DC-DC Power Switches"
Q_J2_HIGH["VBNCB1303 30V/90A"]
Q_J2_LOW["VBNCB1303 30V/90A"]
end
AUX_DC_BUS --> Q_J2_HIGH
Q_J2_HIGH --> J2_DCDC
J2_DCDC --> Q_J2_LOW
Q_J2_LOW --> GND_JOINT
end
end
%% Safety System Section
subgraph "Safety-Critical Power Isolation & Monitoring"
SAFETY_MCU["Safety-Certified MCU ISO 13849 PL e"] --> GATE_DRIVER_SAFETY["Safety Gate Driver"]
subgraph "Dual-Channel Safe Torque Off (STO)"
STO_CH1_HIGH["VBA1104N 100V/9A"]
STO_CH1_LOW["VBA1104N 100V/9A"]
STO_CH2_HIGH["VBA1104N 100V/9A"]
STO_CH2_LOW["VBA1104N 100V/9A"]
end
MAIN_DC_BUS --> STO_CH1_HIGH
MAIN_DC_BUS --> STO_CH2_HIGH
STO_CH1_HIGH --> BRAKE_POWER["Brake Coil Power"]
STO_CH2_HIGH --> BRAKE_POWER
STO_CH1_LOW --> GND_SAFETY
STO_CH2_LOW --> GND_SAFETY
GATE_DRIVER_SAFETY --> STO_CH1_HIGH
GATE_DRIVER_SAFETY --> STO_CH1_LOW
GATE_DRIVER_SAFETY --> STO_CH2_HIGH
GATE_DRIVER_SAFETY --> STO_CH2_LOW
subgraph "Sensor Power Isolation"
SENSOR_SW1["VBA1104N 100V/9A"]
SENSOR_SW2["VBA1104N 100V/9A"]
end
AUX_DC_BUS --> SENSOR_SW1
AUX_DC_BUS --> SENSOR_SW2
SENSOR_SW1 --> FORCE_SENSOR["Collision Force Sensor"]
SENSOR_SW2 --> POS_SENSOR["Position Encoder"]
SAFETY_MCU --> SENSOR_SW1
SAFETY_MCU --> SENSOR_SW2
end
%% Control & Communication Section
subgraph "Central Control & Communication"
MAIN_CONTROLLER["Main Motion Controller"] --> CAN_MASTER["CAN Master"]
MAIN_CONTROLLER --> ETHERCAT["EtherCAT Master"]
CAN_MASTER --> CAN_BUS["Robot CAN Bus"]
ETHERCAT --> ETHERCAT_RING["EtherCAT Ring"]
CAN_BUS --> JOINT_NODES["Joint Controller Nodes"]
CAN_BUS --> SAFETY_MCU
end
%% Thermal Management Section
subgraph "Hierarchical Thermal Management"
subgraph "Level 1: Liquid Cooling"
COOLING_PLATE["Liquid Cold Plate"] --> Q_MAIN_UH
COOLING_PLATE --> Q_MAIN_VH
COOLING_PLATE --> Q_MAIN_WH
end
subgraph "Level 2: Forced Air Cooling"
HEATSINK_FAN["Heatsink with Fan"] --> Q_J1_HIGH
HEATSINK_FAN --> Q_J2_HIGH
end
subgraph "Level 3: Natural Convection"
PCB_COPPER["PCB Copper Pour"] --> VBA1104N
end
TEMP_SENSORS["NTC Temperature Sensors"] --> THERMAL_MCU["Thermal Management MCU"]
THERMAL_MCU --> FAN_CONTROL["Fan PWM Control"]
THERMAL_MCU --> PUMP_CONTROL["Pump Speed Control"]
end
%% Protection Circuits
subgraph "System Protection & Monitoring"
subgraph "Gate Protection"
GATE_RES["Series Gate Resistors"]
GATE_ZENER["Zener Clamp Diodes"]
LOCAL_DECOUPL["Local Decoupling Caps"]
end
subgraph "Overcurrent Protection"
DESAT_DETECT["Desaturation Detection"]
CURRENT_SENSE["High-Precision Shunt"]
COMPARATOR["Fast Comparator"]
end
subgraph "Inductive Load Protection"
FREEWHEEL_DIODE["Freewheeling Diodes"]
TVS_ARRAY["TVS Protection Array"]
RC_SNUBBER["RC Snubber Circuits"]
end
end
%% Style Definitions
style Q_MAIN_UH fill:#e8f5e8,stroke:#4caf50,stroke-width:2px
style Q_J1_HIGH fill:#e3f2fd,stroke:#2196f3,stroke-width:2px
style STO_CH1_HIGH fill:#fff3e0,stroke:#ff9800,stroke-width:2px
style SAFETY_MCU fill:#fce4ec,stroke:#e91e63,stroke-width:2px
The evolution of human-robot collaboration (HRC) demands a power chain that is not only efficient and compact but fundamentally safe and responsive. The drive and control system of a collaborative robot (cobot) must deliver precise motion, manage high dynamic loads, and integrate robust safety functionalities—all within stringent size and thermal constraints. At the heart of this challenge lies the optimal selection of power semiconductor devices for critical nodes: the high-torque main axis inverter, the dynamic joint actuator DC-DC/servo drives, and the safety-rated power isolation and management circuits. This analysis adopts a holistic, system-optimization perspective to address the core power path challenges in HRC-safe robots. It focuses on selecting the optimal MOSFETs under the multi-dimensional constraints of high power density, exceptional reliability, low electromagnetic interference (EMI) for signal integrity, and intrinsic safety design. We identify three key devices from the provided portfolio to build a synergistic power solution for the main drive, joint actuators, and safety-critical power distribution. I. In-Depth Analysis of the Selected Device Combination and Application Roles 1. The Muscle of Dynamic Motion: VBGQT3401 (40V, Dual-N+N, 350A, TOLL) – Main Axis/High-Power Joint Inverter Bridge Switch Core Positioning & Topology Deep Dive: This dual N-channel MOSFET in a TOLL package is engineered for the high-current, low-voltage three-phase inverter driving the robot's primary axes (e.g., base, shoulder). Its exceptionally low Rds(on) of 0.63mΩ (typ.) per channel is critical for minimizing conduction losses during high-torque operations and continuous duty cycles, directly impacting motor efficiency and thermal rise. Key Technical Parameter Analysis: Ultra-Low Loss & Power Density: The combination of SGT (Shielded Gate Trench) technology and a TOLL package offers an unparalleled balance of very low on-resistance and superior thermal performance in a compact footprint, enabling higher power density in the servo drive cabinet. Dual-Channel Integration Advantage: Integrating two high-performance MOSFETs in one package drastically reduces the inverter bridge's parasitic inductance and physical size, simplifying PCB layout for critical half-bridge legs and improving switching consistency. Selection Trade-off: Compared to using multiple discrete TO-247 devices, this integrated solution provides superior current handling, reduced interconnection complexity, and better thermal coupling for synchronized cooling, making it ideal for space-constrained, high-output cobot drives. 2. The Agile Joint Enabler: VBNCB1303 (30V, Single-N, 90A, TO-262) – Dynamic Joint Actuator / Auxiliary DC-DC Converter Switch Core Positioning & System Benefit: This low-voltage, low-Rds(on) MOSFET is perfectly suited for driving smaller joint motors or serving as the main switch in non-isolated point-of-load (POL) DC-DC converters within each robotic joint module. Its low gate threshold (Vth=1.7V) and charge facilitate fast switching, which is essential for high-bandwidth current control in torque loops. Key Technical Parameter Analysis: Optimized for Fast Switching: The Trench technology and low Rds(on) values (7mΩ @4.5V, 3.4mΩ @10V) ensure low conduction loss even with lower gate drive voltages, allowing for efficient operation in tightly integrated joint spaces with limited drive voltage headroom. Package & Current Balance: The TO-262 package offers a good compromise between copper area for heat sinking and mounting footprint, suitable for the distributed thermal management needs of joint actuators. Application Flexibility: It can be used in multi-phase synchronous buck converters to generate low-voltage, high-current power for motor drives and onboard processing units within the joint, promoting a modular power architecture. 3. The Sentinel of Safety: VBA1104N (100V, Single-N, 9A, SOP8) – Safety-Circuit Power Isolation & Monitoring Switch Core Positioning & System Integration Advantage: This 100V-rated MOSFET in a compact SOP8 package is the key component for implementing safety-related functions such as Safe Torque Off (STO) or controlled power isolation for sensors and brakes. Its higher voltage rating provides a safety margin for 24V/48V industrial power systems, including transients. Key Technical Parameter Analysis: High-Voltage Safety Margin: The 100V VDS rating is crucial for reliable operation on industrial bus voltages (24V/48V), ensuring robustness against line surges and inductive kickback, which is non-negotiable for functional safety (e.g., ISO 13849, IEC 62061). Compact Integration for Redundancy: The small SOP8 footprint allows for the easy implementation of redundant, independently controlled switching paths—a common requirement in safety-critical circuits (e.g., dual-channel STO). Its consistent Rds(on) across gate voltages ensures predictable performance. Reason for N-Channel Selection: When used in a low-side configuration for power isolation, controlled by a safety microcontroller or certified safety relay, it offers a simple, reliable, and monitored path to cut off power. Its logic-level compatibility simplifies interface design with safety controllers. II. System Integration Design and Expanded Key Considerations 1. Drive, Control, and Safety Loop Integration High-Performance Servo Drive: The VBGQT3401 requires a matched, high-current gate driver with desaturation detection and short-circuit protection to fully exploit its speed and protect the motor. Its switching edges must be optimized for EMI in sensitive control environments. Distributed Joint Control: The VBNCB1303 in joint modules can be driven by localized microcontrollers or dedicated driver ICs, with current feedback tightly integrated into the motor control algorithm for precise torque and position control. Safety-Certified Control Path: The gate drive for VBA1104N must originate from a validated safety subsystem. Monitoring its state (e.g., via source voltage sensing) provides feedback to the safety controller, enabling diagnosis of switch faults—a key aspect of achieving high Safety Integrity Levels (SIL) or Performance Levels (PL). 2. Hierarchical Thermal Management Strategy Primary Heat Source (Centralized Cooling): The VBGQT3401 in the main drive inverter is a primary heat source. It should be mounted on a liquid-cooled or forced-air-cooled heatsink, with thermal interface material (TIM) optimized for the TOLL package. Secondary Heat Source (Localized Cooling): The VBNCB1303 devices in joint actuators rely on conduction through the PCB to a localized heatsink or the robot's structural metal, often aided by thermal vias and exposed pads. Tertiary Heat Source (Natural Convection): The VBA1104N in safety circuits typically operates at low continuous duty and can rely on PCB copper pours and natural convection, but its layout must ensure no overheating that could compromise long-term reliability. 3. Engineering Details for Reliability and Safety Reinforcement Electrical Stress Protection: VBGQT3401: Use low-inductance busbar design and snubber networks to manage voltage overshoot during fast switching, protecting the device and reducing noise. Inductive Load Handling: For safety circuits (e.g., brake coils) switched by VBA1104N, incorporate freewheeling diodes or TVS arrays to safely dissipate inductive turn-off energy. Enhanced Gate Protection & Monitoring: All gate drives should include series resistors, local decoupling, and clamp Zeners. For safety circuits, consider redundant pull-down resistors to ensure fail-safe turn-off. Derating Practice for Mission-Critical Operation: Voltage Derating: Ensure VDS for VBA1104N remains below 80V under all transient conditions on a 48V bus. For VBNCB1303, ensure margin above the maximum battery/DC-link voltage in the joint. Current & Thermal Derating: Base current ratings on realistic worst-case thermal impedance scenarios (e.g., stalled motor condition for VBGQT3401). Maintain junction temperatures well below 125°C, targeting Tj < 100°C for enhanced lifetime, especially for always-on safety circuits. III. Quantifiable Perspective on Scheme Advantages and Competitor Comparison Quantifiable Efficiency & Performance Gain: Replacing standard MOSFETs in a 5kW axis drive with VBGQT3401 can reduce inverter conduction losses by over 40%, allowing for either higher continuous torque output or a more compact cooling system. Quantifiable System Integration Improvement: Using VBGQT3401 (dual) over discrete singles for a three-phase inverter reduces the power stage footprint by approximately 35%, enabling more compact servo drives. Using SOP8-based VBA1104N for safety switches saves over 60% space compared to through-hole alternatives. Enhanced Safety & Reliability Metrics: The robust voltage rating and consistent performance of VBA1104N support the development of safety circuits capable of achieving PL e / SIL 3, reducing system-level failure rates and potentially lowering the cost of safety certification through demonstrable component reliability. IV. Summary and Forward Look This device combination provides a optimized, safety-aware power chain for advanced collaborative robots, addressing high-power motion, distributed joint control, and critical safety isolation. Power Output Level – Focus on "Density & Efficiency": Leverage the highest performance devices (SGT, TOLL) in the core power path to maximize torque density and system efficiency. Distributed Actuation Level – Focus on "Dynamic Response & Integration": Select devices that balance fast switching, low loss, and package practicality for space-constrained, high-performance joint modules. Safety & Management Level – Focus on "Certifiable Reliability & Compactness": Choose devices with appropriate voltage margins and packages conducive to implementing redundant, monitorable safety functions. Future Evolution Directions: Integrated Motor Drive Modules: Future systems may adopt pre-assembled power modules integrating devices like VBGQT3401 with gate drivers, current sensing, and protection, further simplifying design and improving reliability. Advanced Wide-Bandgap for High-Frequency Drives: For ultra-high dynamic performance, GaN HEMTs could be considered for joint motor drives to enable drastically higher PWM frequencies, reducing motor current ripple and acoustic noise. Smart Power Switches with Diagnostics: The integration of devices like VBA1104N into Intelligent Power Switches (IPS) with built-in overtemperature, overcurrent, and open-load detection would further streamline safety system design and diagnostic coverage. Engineers can adapt this framework based on specific cobot parameters such as axis count and peak torque, bus voltage (24V/48V), safety performance level targets, and thermal management architecture to create high-performance, safe, and reliable robotic systems.
*To request free samples, please complete and submit the following information. Our team will review your application within 24 hours and arrange shipment upon approval. Thank you!
X
SN Check
***Serial Number Lookup Prompt**
1. Enter the complete serial number, including all letters and numbers.
2. Click Submit to proceed with verification.
The system will verify the validity of the serial number and its corresponding product information to help you confirm its authenticity.
If you notice any inconsistencies or have any questions, please immediately contact our customer service team. You can also call 400-655-8788 for manual verification to ensure that the product you purchased is authentic.