variable duty ratio to a switch at different time intervals
Show older comments
I want to supply a gate pulse to an IGBT switch in DC-DC converter with a duty ratio of 40% from 0 to 2 seconds and 2 to 4 seconds with simulation time of 6 seconds and i want to disconnect the gate pulse to switch from 4 to 6 seconds. how to do this in simulink. The switching frequency of IGBT switch is 20 kHZ.
6 Comments
Manikanta Aditya
on 12 Apr 2024
This block allows you to generate ideal modulated pulse signals with variable duty cycles.
KESARI HANUMANTHU
on 12 Apr 2024
Manikanta Aditya
on 12 Apr 2024
Edited: Manikanta Aditya
on 12 Apr 2024
To control an IGBT in a DC-DC converter with a variable duty cycle using Simulink:
- Add a Pulse Generator block to your model.
- Set Parameters in the Pulse Generator block:
% Pulse Type: Square
% Amplitude: 1 (or desired gate pulse amplitude)
% Period: (1/20000) seconds (for 20 kHz switching frequency)
% Pulse Width (% of period): 40 (for 40% duty ratio initially)
% Phase delay: 0
- Configure Signal Attributes: Choose "Time-based" pulse type.
- Define Variable Duty Ratio in Pulse Type Attributes:
% Time vector: ([0, 2, 4, 6]) seconds (time intervals)
% Duty cycle vector: ([0.4, 0.4, 0, 0]) (40% duty ratio from 0 to 4 seconds, then 0% from 4 to 6 seconds)
This setup achieves a variable duty cycle, transitioning from active switching to an off state.
Fangjun Jiang
on 12 Apr 2024
@Manikanta Aditya, which Pulse Generator block are you referring to? I didn't find the place to "Define Variable Duty Ratio in Pulse Type Attributes".
Manikanta Aditya
on 13 Apr 2024
I meant the Pulse Generator block in Simulink that allows defining a variable duty ratio based on time.
Accepted Answer
More Answers (0)
Categories
Find more on Electrical Block Libraries in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!