diff options
Diffstat (limited to '1445/CH2/EX2.34/Ex2_34.sce')
-rw-r--r-- | 1445/CH2/EX2.34/Ex2_34.sce | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/1445/CH2/EX2.34/Ex2_34.sce b/1445/CH2/EX2.34/Ex2_34.sce index 560d4657d..aecd5a669 100644 --- a/1445/CH2/EX2.34/Ex2_34.sce +++ b/1445/CH2/EX2.34/Ex2_34.sce @@ -1,6 +1,7 @@ //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 +clc; disp("CHAPTER 2"); disp("EXAMPLE 34"); @@ -11,15 +12,15 @@ V=400; // volts f=50; //Hz // //SOLUTION -XC=1/(2*%pi*f*c); //capacitative reactance +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 %.2f Amp", I)); -disp(sprintf("The Power Factor is %.3f leading", pf)); -disp(sprintf("The Power consumed in the circuit is %.0f W",pc)); +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 |