summaryrefslogtreecommitdiff
path: root/876/CH2/EX2.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /876/CH2/EX2.9
downloadScilab-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-x876/CH2/EX2.9/Ex2_9.sce14
-rwxr-xr-x876/CH2/EX2.9/Ex2_9.txt8
-rwxr-xr-x876/CH2/EX2.9/Ex2_9t.txt14
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