diff options
Diffstat (limited to '3760/CH9/EX9.7/ExB_7.sce')
-rw-r--r-- | 3760/CH9/EX9.7/ExB_7.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3760/CH9/EX9.7/ExB_7.sce b/3760/CH9/EX9.7/ExB_7.sce new file mode 100644 index 000000000..be6d3d08d --- /dev/null +++ b/3760/CH9/EX9.7/ExB_7.sce @@ -0,0 +1,8 @@ +clc;
+w1=2000; // reading of wattmeter 1 under no load
+w2=-400; // reading of wattmeter 2 under no load, since the connections are reversed that is why negative sign
+theta=atand((sqrt(3)*(w1-w2))/(w1+w2));
+pl=w1+w2;
+pf=cosd(theta);
+printf('No load losses are %f W\n',pl);
+printf('No load power factor is %f lagging',pf);
|