Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to define the inverter output frequency.
Simulink
output_frequency = [1]; Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 50 Hz which is common in Europe but not in this simulation.
Using 100 or 120 which are too high for standard inverter output.
✗ Incorrect
The standard inverter output frequency is set to 60 Hz for this simulation.
2fill in blank
mediumComplete the code to set the inverter DC input voltage.
Simulink
dc_voltage = [1]; Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 220 or 400 which are lower than typical DC bus voltage.
Choosing 800 which is higher than the designed voltage.
✗ Incorrect
The inverter DC input voltage is set to 600 volts for this simulation.
3fill in blank
hardFix the error in the PWM carrier frequency assignment.
Simulink
pwm_carrier_frequency = [1]; Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 5 kHz or 10 kHz which may cause audible noise.
Using 15 kHz which is less common than 20 kHz for this simulation.
✗ Incorrect
The PWM carrier frequency should be 20 kHz for proper inverter switching.
4fill in blank
hardFill both blanks to create a dictionary mapping phase names to their voltages.
Simulink
phase_voltages = dict('A', [1], 'B', [2] );
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using voltages that are too low or too high for typical phase voltages.
Assigning the same voltage to both phases which is less realistic.
✗ Incorrect
Phase A voltage is 230 V and phase B voltage is 240 V in this inverter simulation.
5fill in blank
hardFill all three blanks to create a dictionary with phase names and their frequencies.
Simulink
phase_frequencies = dict('A', [1], 'B', [2], 'C', [3] );
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using identical frequencies for all phases which is less realistic.
Using frequencies too far from 60 Hz causing simulation errors.
✗ Incorrect
Phase A frequency is 61 Hz, phase B is 59.9 Hz, and phase C is 60.1 Hz to simulate slight frequency variations.