summaryrefslogtreecommitdiff
path: root/2360/CH5/EX5.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2360/CH5/EX5.4
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 '2360/CH5/EX5.4')
-rwxr-xr-x2360/CH5/EX5.4/ex5_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2360/CH5/EX5.4/ex5_4.sce b/2360/CH5/EX5.4/ex5_4.sce
new file mode 100755
index 000000000..eed552e82
--- /dev/null
+++ b/2360/CH5/EX5.4/ex5_4.sce
@@ -0,0 +1,14 @@
+// Exa 5.4
+format('v',7);clc;clear;close;
+// Given data
+R3 = 100.03;//standard resistance in µohm
+R3 = R3 * 10^-6;// in ohm
+R2 = 100.24;//outer ratio arms resistance in ohm
+R1 = 200;//outer ratio arms resistance in ohm
+b = 100.31;// in ohm
+a = 200;// in ohm
+Ry = 700;// in µohm
+Ry = Ry * 10^-6;// in ohm
+Rx = ((R1*R3)/R2) + ( ((b*Ry)/(Ry+a+b)) * ((R1/R2) - (a/b)) );// in ohm
+Rx = Rx * 10^6;//unknown resistance in µohm
+disp(Rx,"The unknown resistance in µΩ is");