From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 876/CH2/EX2.9/Ex2_9.sce | 14 ++++++++++++++ 876/CH2/EX2.9/Ex2_9.txt | 8 ++++++++ 876/CH2/EX2.9/Ex2_9t.txt | 14 ++++++++++++++ 3 files changed, 36 insertions(+) create mode 100755 876/CH2/EX2.9/Ex2_9.sce create mode 100755 876/CH2/EX2.9/Ex2_9.txt create mode 100755 876/CH2/EX2.9/Ex2_9t.txt (limited to '876/CH2/EX2.9') 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 -- cgit