Which statement best describes the function of an H-bridge in motor control?
Think about how direction control is achieved in DC motors.
An H-bridge switches the polarity of the voltage across the motor terminals, enabling forward and reverse rotation.
Given a Simulink model of an H-bridge with inputs IN1=1, IN2=0, what is the expected output voltage polarity across the motor terminals?
IN1 = 1; IN2 = 0; % Output voltage polarity: +V to terminal A, 0V to terminal B
Check which input is high and which is low to determine polarity.
IN1=1 and IN2=0 causes the H-bridge to apply positive voltage to terminal A and ground terminal B, resulting in forward rotation.
In a Simulink H-bridge model, a PWM signal with 50% duty cycle is applied to the enable pin. What is the expected average voltage across the motor terminals?
PWM_duty = 0.5; V_supply = 12; % volts V_avg = PWM_duty * V_supply;
Average voltage is supply voltage multiplied by PWM duty cycle.
With 50% duty cycle PWM, the motor receives half the supply voltage on average, so 6 volts.
In a Simulink H-bridge model, both IN1 and IN2 inputs are set to 1 simultaneously. What is the likely outcome?
Consider what happens if both sides of the H-bridge are connected to the supply voltage at the same time.
Both IN1 and IN2 high turns on both high-side switches, causing a direct short from supply to ground, which can damage components.
You want to simulate a bidirectional DC motor control using an H-bridge in Simulink. Which input signal combination correctly achieves forward, reverse, and stop states?
Recall the polarity needed for forward and reverse motor rotation and what input combination stops the motor.
Forward rotation is achieved by IN1=1 and IN2=0, reverse by IN1=0 and IN2=1, and stop by both inputs low (0,0) to avoid short circuits.