summaryrefslogtreecommitdiff
path: root/3830/CH7/EX7.17/Ex7_17.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.17/Ex7_17.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.17/Ex7_17.sce')
-rw-r--r--3830/CH7/EX7.17/Ex7_17.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3830/CH7/EX7.17/Ex7_17.sce b/3830/CH7/EX7.17/Ex7_17.sce
new file mode 100644
index 000000000..92f6861cd
--- /dev/null
+++ b/3830/CH7/EX7.17/Ex7_17.sce
@@ -0,0 +1,24 @@
+// Exa 7.17
+
+clc;
+clear;
+
+// Given
+
+// An LVDT to measure deflection of bellows
+S1 = 40; // sensitivity in V/mm
+d = 0.125; // displacement in mm
+P1 = 0.8*10^6; // pressure in N/m^2
+Vo2 = 3.5 ; // Output of LVDT for pressure P2
+
+// Solution
+
+// output voltage for the pressure p1
+Vo1 = S1*d; // in volts
+
+L_senstivity = Vo1/P1;
+
+// For P2 calculations when V = 3.5
+P2 = Vo2/L_senstivity;
+
+printf('The sensitivity of LVDT and pressure when the output voltage of LVDT is 3.5 V \n are %.2f * 10^-6 V/N/m^2 and %.1f * 10^5 N/m^2 respectively \n',L_senstivity*10^6,P2*10^-5);