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.3 | |
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.3')
-rwxr-xr-x | 876/CH2/EX2.3/Ex2_3.sce | 20 | ||||
-rwxr-xr-x | 876/CH2/EX2.3/Ex2_3.txt | 11 | ||||
-rwxr-xr-x | 876/CH2/EX2.3/Ex2_3t.txt | 20 |
3 files changed, 51 insertions, 0 deletions
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 |