summaryrefslogtreecommitdiff
path: root/1445/CH2/EX2.34/ch2_ex_34.sce
diff options
context:
space:
mode:
Diffstat (limited to '1445/CH2/EX2.34/ch2_ex_34.sce')
-rw-r--r--1445/CH2/EX2.34/ch2_ex_34.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1445/CH2/EX2.34/ch2_ex_34.sce b/1445/CH2/EX2.34/ch2_ex_34.sce
new file mode 100644
index 000000000..263cf0ce7
--- /dev/null
+++ b/1445/CH2/EX2.34/ch2_ex_34.sce
@@ -0,0 +1,25 @@
+//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT
+//Example 34 // read it as example 33 in the book on page 2.87
+
+disp("CHAPTER 2");
+disp("EXAMPLE 34");
+
+//VARIABLE INITIALIZATION
+r=100; //in Ω
+c=40*10^(-6); //
+V=400; // volts
+f=50; //Hz
+//
+//SOLUTION
+XC=1/(2*%pi*f*c);
+//impedence Z=sqrt(R^2 +XL^2)
+Z=sqrt(r^2 +XC^2);
+I=V/Z;
+pf=r/Z;
+pc=V*I*pf;
+disp(sprintf("The total current is %f Amp", I));
+disp(sprintf("The Power Factor is %f leading", pf));
+disp(sprintf("The Power consumed in the circuit is %f W",pc));
+disp(" ");
+//
+//END