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.3/Ex2_3.sce | 20 ++++++++++++++++++++ 876/CH2/EX2.3/Ex2_3.txt | 11 +++++++++++ 876/CH2/EX2.3/Ex2_3t.txt | 20 ++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100755 876/CH2/EX2.3/Ex2_3.sce create mode 100755 876/CH2/EX2.3/Ex2_3.txt create mode 100755 876/CH2/EX2.3/Ex2_3t.txt (limited to '876/CH2/EX2.3') diff --git a/876/CH2/EX2.3/Ex2_3.sce b/876/CH2/EX2.3/Ex2_3.sce new file mode 100755 index 000000000..128e2c751 --- /dev/null +++ b/876/CH2/EX2.3/Ex2_3.sce @@ -0,0 +1,20 @@ +//caption:Find unknown resistance,relative limiting error in percentage and in ohms +//Ex2.3 +clc +clear +close +R1=90//resistance of arm wheatstone bridge(in ohm) +Rle1=0.5//limiting error for R1(in %) +R2=900//resistance of arm wheatstone bridge(in ohm) +Rle2=0.8//limiting error for R2(in %) +R3=825//resistance of arm wheatstone bridge(in ohm) +Rle3=0.6//limiting error for R3(in %) +Rx=(R2*R3)/R1 +disp(Rx,'unknown resistance(in ohm)=') +dR1=(R1*Rle1)/100 +dR2=(R2*Rle2)/100 +dR3=(R3*Rle3)/100 +dR=((dR2/R2)+(dR3/R3)+(dR1/R1))*100 +disp(dR,'relative limiting error(in %)=') +Le=(dR*Rx)/100 +disp(Le,'limiting error(in ohm)=') \ No newline at end of file diff --git a/876/CH2/EX2.3/Ex2_3.txt b/876/CH2/EX2.3/Ex2_3.txt new file mode 100755 index 000000000..da58e3659 --- /dev/null +++ b/876/CH2/EX2.3/Ex2_3.txt @@ -0,0 +1,11 @@ + unknown resistance(in ohm)= + + 8250. + + relative limiting error(in %)= + + 1.9 + + limiting error(in ohm)= + + 156.75 \ No newline at end of file diff --git a/876/CH2/EX2.3/Ex2_3t.txt b/876/CH2/EX2.3/Ex2_3t.txt new file mode 100755 index 000000000..128e2c751 --- /dev/null +++ b/876/CH2/EX2.3/Ex2_3t.txt @@ -0,0 +1,20 @@ +//caption:Find unknown resistance,relative limiting error in percentage and in ohms +//Ex2.3 +clc +clear +close +R1=90//resistance of arm wheatstone bridge(in ohm) +Rle1=0.5//limiting error for R1(in %) +R2=900//resistance of arm wheatstone bridge(in ohm) +Rle2=0.8//limiting error for R2(in %) +R3=825//resistance of arm wheatstone bridge(in ohm) +Rle3=0.6//limiting error for R3(in %) +Rx=(R2*R3)/R1 +disp(Rx,'unknown resistance(in ohm)=') +dR1=(R1*Rle1)/100 +dR2=(R2*Rle2)/100 +dR3=(R3*Rle3)/100 +dR=((dR2/R2)+(dR3/R3)+(dR1/R1))*100 +disp(dR,'relative limiting error(in %)=') +Le=(dR*Rx)/100 +disp(Le,'limiting error(in ohm)=') \ No newline at end of file -- cgit