summaryrefslogtreecommitdiff
path: root/3830/CH7/EX7.16/Ex7_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '3830/CH7/EX7.16/Ex7_16.sce')
-rw-r--r--3830/CH7/EX7.16/Ex7_16.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3830/CH7/EX7.16/Ex7_16.sce b/3830/CH7/EX7.16/Ex7_16.sce
new file mode 100644
index 000000000..96c28ba51
--- /dev/null
+++ b/3830/CH7/EX7.16/Ex7_16.sce
@@ -0,0 +1,21 @@
+// Exa 7.16
+
+clc;
+clear;
+
+// Given
+
+// An LVDT
+vo = 5; // secondary voltage(volts) of LVDT
+d = 12.5; // displacement in mm
+d0 = 8; // displacement from central position in mm
+
+// Solution
+
+printf(' The sensitivity s = RMS value of output voltage/Displacement \n');
+
+S = vo/d; // sensitivity
+
+printf(' Therefore, s = %.1f V/mm \n',S);
+
+printf(' Output voltage for a displacement of 8mm from its central position = %.1f V \n',S*d0);