summaryrefslogtreecommitdiff
path: root/182/CH7/EX7.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /182/CH7/EX7.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 '182/CH7/EX7.4')
-rwxr-xr-x182/CH7/EX7.4/7_4.txt2
-rwxr-xr-x182/CH7/EX7.4/example7_4.sce16
2 files changed, 18 insertions, 0 deletions
diff --git a/182/CH7/EX7.4/7_4.txt b/182/CH7/EX7.4/7_4.txt
new file mode 100755
index 000000000..90db497b1
--- /dev/null
+++ b/182/CH7/EX7.4/7_4.txt
@@ -0,0 +1,2 @@
+
+4.Measurement range is from 500 ohm to 4000 ohm \ No newline at end of file
diff --git a/182/CH7/EX7.4/example7_4.sce b/182/CH7/EX7.4/example7_4.sce
new file mode 100755
index 000000000..c9dbb4478
--- /dev/null
+++ b/182/CH7/EX7.4/example7_4.sce
@@ -0,0 +1,16 @@
+// to calculate the value of Resistance R
+// example 7-4 in page 169
+clc;
+// data given
+P=3.5e+3; Q=7e+3; S=5.51e+3; // resistance values of the wheatstone bridge arms in ohm
+//calculation
+R=S*P/Q;// equation for balancng condition
+printf("R=%f K-ohm\n",R/1000);
+S=[1e+3 8e+3];// adjusting s from 1 t0 8 K-ohm
+for n=1:2
+ R=S(n)*P/Q;
+ printf("when S=%d K-ohm,\n",S(n)/1000);
+ printf("R=%d ohm\n",R);
+end
+//result
+//Measurement range is from 500 ohm to 4000 ohm \ No newline at end of file