summaryrefslogtreecommitdiff
path: root/1445/CH2/EX2.43/Ex2_43.sce
diff options
context:
space:
mode:
Diffstat (limited to '1445/CH2/EX2.43/Ex2_43.sce')
-rw-r--r--1445/CH2/EX2.43/Ex2_43.sce5
1 files changed, 3 insertions, 2 deletions
diff --git a/1445/CH2/EX2.43/Ex2_43.sce b/1445/CH2/EX2.43/Ex2_43.sce
index b4e1f6b76..44090eb66 100644
--- a/1445/CH2/EX2.43/Ex2_43.sce
+++ b/1445/CH2/EX2.43/Ex2_43.sce
@@ -1,6 +1,7 @@
//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT
//Example 43 // read it as example 42 in the book on page 2.102
+clc;
disp("CHAPTER 2");
disp("EXAMPLE 43");
@@ -14,8 +15,8 @@ f=50; //Hz
Iav=(1/(2*%pi))*integrate('5+5*sin(th)', 'th',0,2*%pi);
Ims=(1/(2*%pi))*integrate('(5+5*sin(th))^2', 'th',0,2*%pi);
//
-disp(sprintf("The average value of resultant current is %.2f Amp", Iav));
-disp(sprintf("The RMS value of resultant current is %.2f Amp", sqrt(Ims)));
+disp(sprintf("The average value of resultant current is %f Amp", Iav));
+disp(sprintf("The RMS value of resultant current is %f Amp", sqrt(Ims)));
disp(" ");
//
//END