diff options
Diffstat (limited to '1094/CH2/EX2.3.3/EX2_3_3.sce')
-rw-r--r-- | 1094/CH2/EX2.3.3/EX2_3_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1094/CH2/EX2.3.3/EX2_3_3.sce b/1094/CH2/EX2.3.3/EX2_3_3.sce new file mode 100644 index 000000000..acf4c03a1 --- /dev/null +++ b/1094/CH2/EX2.3.3/EX2_3_3.sce @@ -0,0 +1,12 @@ +//Exa:2.3.3
+clc;
+clear;
+close;
+P=10000;//in watts
+I=60;//in amperes
+V=400;//in volts
+//When the coil is connected between phase A and Neutral;
+theta=acosd(P/(V*I/sqrt(3)));//in degrees
+alpha=90-theta;//in degrees
+W=V*I*cosd(alpha)/1000;
+disp(W,'Wattmeter Reading (in watts)=')
\ No newline at end of file |