summaryrefslogtreecommitdiff
path: root/1445/CH3/EX3.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1445/CH3/EX3.2
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1445/CH3/EX3.2')
-rw-r--r--1445/CH3/EX3.2/Ex3_2.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1445/CH3/EX3.2/Ex3_2.sce b/1445/CH3/EX3.2/Ex3_2.sce
new file mode 100644
index 000000000..c5a2d35e0
--- /dev/null
+++ b/1445/CH3/EX3.2/Ex3_2.sce
@@ -0,0 +1,24 @@
+//CHAPTER 3- THREE-PHASE A.C. CIRCUITS
+//Example 2
+
+disp("CHAPTER 3");
+disp("EXAMPLE 2");
+
+//VARIABLE INITIALIZATION
+v_l=400; //line voltage in Volts
+I_l=30; //line current in Amperes
+p=12*1000; //power absorbed in Watts
+
+//SOLUTION
+v_ph=v_l/sqrt(3); //phase voltage = (line voltage)/sqrt(3)
+z_ph=v_ph/I_l; //phase current = line current for star connection
+pow_fact=p/(sqrt(3)*v_l*I_l); //three-phase power = 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 %.2f Ω",r_ph));
+x_ph=sqrt((z_ph^2)-(r_ph^2));
+disp(sprintf("The ractance of each impedance is %.2f Ω",x_ph));
+
+//END
+
+
+