diff options
Diffstat (limited to '620/CH13/EX13.2/example13_2.sce')
-rw-r--r-- | 620/CH13/EX13.2/example13_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/620/CH13/EX13.2/example13_2.sce b/620/CH13/EX13.2/example13_2.sce new file mode 100644 index 000000000..bea2b9922 --- /dev/null +++ b/620/CH13/EX13.2/example13_2.sce @@ -0,0 +1,14 @@ +i1=0.25;
+i2=0.235;
+v1=0.2;
+v2=0.03;
+r=1;
+disp("Part a");
+i=(v1+v2)/r;
+disp("The true milliammeter current (in mA) is"); disp(i*1000);
+disp("Part b");
+cor=i-i2;
+disp("The milliammeter correction (in mA) at this point is"); disp(cor*1000);
+disp("Part c");
+fsd=-cor*100/i1;
+disp("the F.S.D. accuracy (in %) of the meter is"); disp(fsd);
\ No newline at end of file |