diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /1445/CH3/EX3.5/Ex3_5.sce | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '1445/CH3/EX3.5/Ex3_5.sce')
-rw-r--r-- | 1445/CH3/EX3.5/Ex3_5.sce | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/1445/CH3/EX3.5/Ex3_5.sce b/1445/CH3/EX3.5/Ex3_5.sce index 2804e3e92..f956a407d 100644 --- a/1445/CH3/EX3.5/Ex3_5.sce +++ b/1445/CH3/EX3.5/Ex3_5.sce @@ -1,6 +1,7 @@ //CHAPTER 3- THREE-PHASE A.C. CIRCUITS //Example 5 +clc; disp("CHAPTER 3"); disp("EXAMPLE 5"); @@ -18,7 +19,7 @@ disp(sprintf("(a) The total power is %d W",p1)); p2=w1-w2; phi=atan((sqrt(3)*p2)/p1); //this equation comes from two-wattmeter method pow_fact=cos(phi); -disp(sprintf("(b) The power factor of the load is %.3f", pow_fact)); +disp(sprintf("(b) The power factor of the load is %f", pow_fact)); //END |