summaryrefslogtreecommitdiff
path: root/2360/CH5/EX5.11/ex5_11.sce
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.11/ex5_11.sce
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.11/ex5_11.sce')
-rwxr-xr-x2360/CH5/EX5.11/ex5_11.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2360/CH5/EX5.11/ex5_11.sce b/2360/CH5/EX5.11/ex5_11.sce
new file mode 100755
index 000000000..af7aa69b2
--- /dev/null
+++ b/2360/CH5/EX5.11/ex5_11.sce
@@ -0,0 +1,22 @@
+// Exa 5.11
+format('v',7);clc;clear;close;
+// Given data
+R1 = 1000;// in ohm
+R2 = 100;// in ohm
+R3 = 4;// in k ohm
+R3 = R3*10^3;// in ohm
+//At bridge balance, R1*R3 = R2*R4;
+R4 = (R1*R3)/R2;// in ohm
+R4= R4*10^-3;//maximum unknown resistance in k ohm
+disp(R4,"The maximum unknown resistance in kΩ is");
+R4= R4*10^3;// in ohm
+R_TH = ((R1*R2)/(R1+R2)) + ((R3*R4)/(R3+R4));// in ohm
+Si = 70;// in mm/µA
+Si = Si * 10^6;// in mm/A
+theta = 3;// in mm
+E = 10;// in V
+Rg = 80;// in ohm
+// theta = (Si*E*R3*del_R)/((R_TH+Rg)*((R3+R4)^2));
+del_R = (theta*((R_TH+Rg)*((R3+R4)^2)))/(Si*E*R3);// in ohm
+disp(del_R,"The value of del_R in Ω is : ")
+disp("This much unbalance is necessary to cause the deflection of 3 mm")