blob: cb544816afff09ab1167303a3c5e78ab53f98278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 2 : AC Circuits
// Chapter 11 : AC power Analysis
// Example 11 - 3
clear; clc; close;
//
// Given data
V_mag = 5.0000;
V_angle = 30.0000;
R = 4.0000;
Rc = 2.0000;
V_s = complex(5*cosd(30),5*sind(30))
Z_s = complex(4,-2)
//
// Calculations Total Current
I_s = V_s/Z_s;
I_real = real(I_s);
I_imag = imag(I_s);
I_magnitude = norm(I_s);
I_angle = atand(I_imag,I_real);
// Calculations Average Power Absorbed by The Source
P_avg = 0.5000 * V_mag * I_magnitude * cosd(V_angle - I_angle);
// Calculations Average Power Absorbed by The Resistor
IR = I_magnitude;
VR = IR * R;
P_R = 0.5*VR*IR;
//
disp("Example 11-3 Solution : ");
printf(" \n P_avg = Average Power Absorbed by Source = %.3f Watt",P_avg)
printf(" \n P_R = Average Power Absorbed by Resistor = %.3f Watt",P_R)
|