diff options
Diffstat (limited to '876/CH2/EX2.9/Ex2_9.sce')
-rwxr-xr-x | 876/CH2/EX2.9/Ex2_9.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/876/CH2/EX2.9/Ex2_9.sce b/876/CH2/EX2.9/Ex2_9.sce new file mode 100755 index 000000000..b78261f79 --- /dev/null +++ b/876/CH2/EX2.9/Ex2_9.sce @@ -0,0 +1,14 @@ +//caption:Find limiting error when measured voltage is(a)V1(b)V2
+//Ex2.9
+clc
+clear
+close
+Ar=0.01//magnitude of accuracy(in V)
+V1=50//measured voltage(in V)
+V2=25//measured voltage(in V)
+Vmax=100//maximum range of voltage
+dA=Ar*Vmax
+er1=(dA/V1)*100
+disp(er1,'limiting error when measured voltage is V1(in %)=')
+er2=(dA/V2)*100
+disp(er2,'limiting error when measured voltage is V2(in %)=')
\ No newline at end of file |