Tutorial: Boost Converter¶
Design and simulate a boost (step-up) DC-DC converter.
Difficulty: Beginner (⅓) | Duration: 30 minutes
Circuit file: resources/tutorials/2xx_dcdc_converters/202_boost_converter/boost_simple.ipes
Learning Objectives¶
- Understand boost converter operation
- Calculate output voltage and component values
- Simulate and verify the design
- Analyze voltage and current waveforms
Theory¶
Topology¶
The boost converter steps up DC voltage:
Operating Principle¶
Switch ON (0 < t < D·T): Inductor charges from V_in, diode is reverse-biased, capacitor supplies load.
Switch OFF (D·T < t < T): Inductor discharges through diode to load and capacitor.
Key Equations¶
Voltage conversion ratio (CCM):
Minimum inductance for CCM:
Output voltage ripple:
Inductor current ripple:
Design Example¶
Specifications¶
| Parameter | Value |
|---|---|
| Input voltage | 12 V |
| Output voltage | 24 V |
| Output power | 24 W |
| Switching frequency | 100 kHz |
| Max voltage ripple | 1% |
Calculations¶
Duty cycle:
Load resistance:
Minimum inductance:
Choose L = 100 uH (well above minimum for low ripple).
Output capacitor:
Choose C = 47 uF.
Simulation¶
Setup¶
- Open
boost_simple.ipes - Verify parameters match the design
- Set simulation: T_end = 2 ms, dt = 50 ns
Run¶
Press F5 and open the SCOPE to view:
- Output voltage - Should settle to ~24V
- Inductor current - Triangular waveform, always positive (CCM)
- Switch voltage - Pulses to V_out when OFF
Expected Waveforms¶
- Output voltage: 24V with < 1% ripple
- Average inductor current: I_out / (1-D) = 2A
- Inductor current ripple: V_in x D / (L x f_sw) = 0.6A
Exercises¶
Exercise 1: Duty Cycle Variation¶
Change D from 0.3 to 0.7 in steps of 0.1. Plot V_out vs D and compare with theory.
Exercise 2: CCM/DCM Boundary¶
Reduce the load power (increase R) until the inductor current touches zero. This is the CCM/DCM boundary.
Exercise 3: Component Sizing¶
Reduce L to 15 uH (minimum). Observe increased ripple. Then try 5 uH to see DCM operation.
Important Notes¶
Boost Converter Limitations
- Output is always higher than input (V_out > V_in)
- As D approaches 1, efficiency drops due to parasitic resistances
- Practical limit: V_out < 4-5x V_in
- Input current is continuous (good for solar/battery applications)
Next Steps¶
- Buck-Boost Topologies - Inverting and non-inverting variants
- Flyback Converter - Isolated boost-derived topology
- PFC Boost - Boost converter for power factor correction