summaryrefslogtreecommitdiff
path: root/1445/CH3/EX3.2/ch3_ex_2.sce
blob: 1781e58fe0f30e45ac14c4fbaaf43af296f19452 (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
//CHAPTER 3- THREE-PHASE A.C. CIRCUITS
//Example 2

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

//VARIABLE INITIALIZATION
v_l=400;                          //in Volts
I_l=30;                           //in Amperes
I_ph=30;                          //since in star connection line current=phase current
p=12*1000;                        //in Watts

//SOLUTION
v_ph=v_l/sqrt(3);
z_ph=v_ph/I_ph;
pow_fact=p/(sqrt(3)*v_l*I_l);     //p=sqrt(3)*v_l*I_l*pow_fact
r_ph=z_ph*pow_fact;               //from impedance tringle
disp(sprintf("The resisatnce of each impedance is %f Ω",r_ph));
x_ph=sqrt((z_ph^2)-(r_ph^2));
disp(sprintf("The ractance of each impedance is %f Ω",x_ph));

//END