diff options
Diffstat (limited to '147/CH18/EX18.6')
-rw-r--r-- | 147/CH18/EX18.6/Example18_6.sce | 16 | ||||
-rw-r--r-- | 147/CH18/EX18.6/Result18_6.txt | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/147/CH18/EX18.6/Example18_6.sce b/147/CH18/EX18.6/Example18_6.sce new file mode 100644 index 000000000..56fba1fae --- /dev/null +++ b/147/CH18/EX18.6/Example18_6.sce @@ -0,0 +1,16 @@ +//Number of revolutions per kWh N1 at V and I, Time t for revolutions N2
+close();
+clear;
+clc;
+V = 230;//V
+I = 10;//A
+N1 = 900;//revolution
+t = 69;//seconds
+N2 = 20;
+theta = 0;
+//Energy consumed 'E'
+E = V*I/2*cos(theta)*t/3600*10^(-3);
+//Number of revolutions meter should have of running correct 'N'
+N = E*N1;
+Error = (N2-N)/N*100;
+mprintf('Error = %0.4f %%',Error);
\ No newline at end of file diff --git a/147/CH18/EX18.6/Result18_6.txt b/147/CH18/EX18.6/Result18_6.txt new file mode 100644 index 000000000..3671eb205 --- /dev/null +++ b/147/CH18/EX18.6/Result18_6.txt @@ -0,0 +1 @@ +Error = 0.8192 %
|