diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /876/CH2/EX2.9 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '876/CH2/EX2.9')
-rwxr-xr-x | 876/CH2/EX2.9/Ex2_9.sce | 14 | ||||
-rwxr-xr-x | 876/CH2/EX2.9/Ex2_9.txt | 8 | ||||
-rwxr-xr-x | 876/CH2/EX2.9/Ex2_9t.txt | 14 |
3 files changed, 36 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 diff --git a/876/CH2/EX2.9/Ex2_9.txt b/876/CH2/EX2.9/Ex2_9.txt new file mode 100755 index 000000000..b22dcd022 --- /dev/null +++ b/876/CH2/EX2.9/Ex2_9.txt @@ -0,0 +1,8 @@ +limiting error when measured voltage is V1(in %)=
+
+ 2.
+
+ limiting error when measured voltage is V2(in %)=
+
+ 4.
+
\ No newline at end of file diff --git a/876/CH2/EX2.9/Ex2_9t.txt b/876/CH2/EX2.9/Ex2_9t.txt new file mode 100755 index 000000000..b78261f79 --- /dev/null +++ b/876/CH2/EX2.9/Ex2_9t.txt @@ -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 |