Complete the code to name the basic components of a three-phase inverter.
A three-phase inverter typically consists of six [1] switches arranged in three legs.
The three-phase inverter uses six transistor switches to convert DC to AC in three phases.
Complete the code to describe the output phases of a three-phase inverter.
The inverter outputs three AC voltages that are 120 degrees [1] from each other.
The three output voltages are shifted by 120 degrees to create balanced three-phase power.
Fix the error in the statement about the switching devices used in a three-phase inverter.
A three-phase inverter uses six [1] diodes to control the output voltage.The correct term is 'switching' devices, such as IGBTs or MOSFETs, not just diodes.
Fill both blanks to complete the description of the inverter's legs and their connections.
Each leg of the inverter has two [1] connected in series between the positive and negative [2] terminals.
Each leg has two switches connected between the positive and negative DC terminals to convert DC to AC.
Fill all three blanks to complete the dictionary comprehension describing phase voltages.
phase_voltages = { [1]: voltage_[2] for [3] in ['A', 'B', 'C']}This comprehension creates a dictionary with keys as phase names and values as their voltages.