0
0
Power Electronicsknowledge~10 mins

Total Harmonic Distortion (THD) in Power Electronics - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Total Harmonic Distortion (THD)
Start with signal
Measure fundamental frequency amplitude
Measure harmonic frequencies amplitudes
Calculate RMS of harmonics
Calculate THD = (RMS harmonics / fundamental) * 100%
Interpret THD value
The flow shows measuring the main signal and its harmonics, then calculating THD as a percentage of distortion.
Execution Sample
Power Electronics
Fundamental = 100
Harmonics = [10, 5, 3]
THD = sqrt(10**2 + 5**2 + 3**2) / Fundamental * 100  # Result in percentage
Calculates THD by finding the root mean square of harmonic voltages divided by the fundamental voltage.
Analysis Table
StepActionCalculationResult
1Identify fundamental amplitudeFundamental = 100V100V
2List harmonic amplitudesHarmonics = 10V, 5V, 3V[10, 5, 3] V
3Square each harmonic10^2=100, 5^2=25, 3^2=9[100, 25, 9]
4Sum squares100 + 25 + 9134
5Calculate RMS of harmonicssqrt(134)11.57V
6Calculate THD(11.57 / 100) * 100%11.57%
💡 THD calculation complete as 11.57%, representing distortion level.
State Tracker
VariableStartAfter Step 3After Step 5Final
Fundamental0100100100
Harmonics[][10,5,3][10,5,3][10,5,3]
Harmonics Squared[][100,25,9][100,25,9][100,25,9]
Sum Squares00134134
RMS Harmonics0011.5711.57
THD (%)00011.57
Key Insights - 3 Insights
Why do we square the harmonic amplitudes before summing?
Squaring ensures all values are positive and reflects power contribution of each harmonic, as shown in step 3 of the execution_table.
Why do we divide by the fundamental amplitude in the THD formula?
Dividing by the fundamental amplitude normalizes the distortion relative to the main signal size, as seen in step 6.
What does a higher THD percentage mean?
A higher THD means more distortion in the signal, indicating more unwanted harmonics compared to the fundamental.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table at step 5, what is the RMS of harmonics calculated?
A100V
B134V
C11.57V
D10V
💡 Hint
Check the 'Result' column at step 5 in the execution_table.
At which step does the calculation sum the squares of harmonic amplitudes?
AStep 4
BStep 2
CStep 3
DStep 6
💡 Hint
Look for the step where individual squares are added together in the execution_table.
If the fundamental amplitude was 200V instead of 100V, how would the final THD percentage change?
AIt would double
BIt would halve
CIt would stay the same
DIt would become zero
💡 Hint
Refer to the THD formula in the execution_sample and how fundamental amplitude affects the division.
Concept Snapshot
Total Harmonic Distortion (THD) measures signal distortion.
Calculate by: 1) Square each harmonic amplitude.
2) Sum these squares.
3) Take square root (RMS) of sum.
4) Divide by fundamental amplitude.
5) Multiply by 100% for percentage.
Full Transcript
Total Harmonic Distortion (THD) quantifies how much a signal is distorted by harmonics. We start by measuring the fundamental frequency amplitude and the amplitudes of harmonic frequencies. Each harmonic amplitude is squared to reflect its power contribution, then all are summed. The square root of this sum gives the RMS value of harmonics. Dividing this RMS by the fundamental amplitude and multiplying by 100% yields the THD percentage. A higher THD means more distortion. For example, with a fundamental of 100 volts and harmonics of 10, 5, and 3 volts, the THD is about 11.57%. This process helps engineers understand and control signal quality in power electronics.