summaryrefslogtreecommitdiff
path: root/3830/CH7/EX7.2/Ex7_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3830/CH7/EX7.2/Ex7_2.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3830/CH7/EX7.2/Ex7_2.sce')
-rw-r--r--3830/CH7/EX7.2/Ex7_2.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3830/CH7/EX7.2/Ex7_2.sce b/3830/CH7/EX7.2/Ex7_2.sce
new file mode 100644
index 000000000..c5652c2c9
--- /dev/null
+++ b/3830/CH7/EX7.2/Ex7_2.sce
@@ -0,0 +1,22 @@
+// Exa 7.2
+
+clc;
+clear;
+
+// Given
+
+l = 50; // length of potentiometer in mm
+R = 5000; // Total resistance of potentiometer in Ohms
+Rt = 1850; // Resistance of potentiometer in Ohms
+
+// Solution
+
+R_length = R/l ; // Resistance per unit length
+R_normal = R/(l*10^-3*0.5);
+printf(' Resistance of normal position = %d Ohms \n',R_normal);
+R_change = R_normal - Rt;
+printf(' Change in resistance = %d Ohms \n',R_change);
+Displacement = R_change/R_length ;
+printf(' The linear displacement when the resistance of the potentiometer is 1850 ohms = %.2f mm \n',Displacement);
+
+// The answer provided in the textbook is wrong