summaryrefslogtreecommitdiff
path: root/1445/CH2/EX2.16/ch2_ex_16.sce
blob: c0acf18c523e4dddc2f65320ff258c75ca9e35d3 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT
//Example 16

disp("CHAPTER 2");
disp("EXAMPLE 16");

//VARIABLE INITIALIZATION
r1=5;                          //in Ohms
r2=10;                         //in Ohms
L1=0.04;                       //in Henry
L2=0.05;                       //in Henry
v=200;                         //in Volts
f=50;                          //in Hertz

//SOLUTION

//solution (i)
xl1=L1*(2*%pi*f);
xl2=L2*(2*%pi*f);
z1=r1+(%i*xl1);
z2=r2+(%i*xl2);
//function to convert from rectangular form to polar form
function [z,angle]=rect2pol(x,y);
z=sqrt((x^2)+(y^2));           //z is impedance & the resultant of x and y
angle=atan(y/x)*(180/%pi);     //to convert the angle from radians to degrees
endfunction;
[z1,angle1]=rect2pol(r1,xl1);
[z2,angle2]=rect2pol(r2,xl2);
Y1=1/z1;                       //admittance
Y2=1/z2;
//function to convert from polar form to rectangular form
function [x,y]=pol2rect(mag,angle);
x=mag*cos(angle*(%pi/180));    //to convert the angle from degrees to radians
y=mag*sin(angle*(%pi/180));
endfunction;
[G1,B1]=pol2rect(Y1,angle1);
[G2,B2]=pol2rect(Y2,angle2);
disp("......................................");
disp("SOLUTION (i)");
disp(sprintf("Conductance of 1st coil is %f S",G1));
disp(sprintf("Conductance of 2nd coil is %f S",G2));
disp(" ");
disp(sprintf("Susceptance of 1st coil is %f S",B1));
disp(sprintf("Susceptance of 2nd coil is %f S",B2));
disp(" ");
disp(sprintf("Admittance of 1st coil is %f S",Y1));
disp(sprintf("Admittance of 2nd coil is %f S",Y2));
disp("......................................");

//solution (ii)
G=G1+G2;
B=B1+B2;
[Y,angle]=rect2pol(G,B); 
I=v*Y;
pf=cos((angle)*(%pi/180));
disp("SOLUTION (ii)");
disp(sprintf("Total current drawn by the circuit is %f A, %f degrees",I,-angle));
disp(sprintf("Power factor of the circuit is %f (lagging)",pf));
disp("......................................");

//solution (iii)
p=v*I*pf;
disp("SOLUTION (iii)");
disp(sprintf("Power absorbed by the circuit is %f kW",p/1000));
disp("......................................");

//solution (iv)
z=v/I;
function [x,y]=pol2rect(mag,angle);
x=mag*cos(angle*(%pi/180));    //to convert the angle from degrees to radians
y=mag*sin(angle*(%pi/180));
endfunction;
[r,x]=pol2rect(z,angle);
L=x/(2*%pi*f);
disp("SOLUTION (iv)");
disp(sprintf("Resitance of single coil is %f Ω",r));
disp(sprintf("Inductance of single coil is %f H",L));
disp("......................................");

//END