diff options
Diffstat (limited to '3830/CH7/EX7.14')
-rw-r--r-- | 3830/CH7/EX7.14/Ex7_14.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3830/CH7/EX7.14/Ex7_14.sce b/3830/CH7/EX7.14/Ex7_14.sce new file mode 100644 index 000000000..5c065b801 --- /dev/null +++ b/3830/CH7/EX7.14/Ex7_14.sce @@ -0,0 +1,18 @@ +// Exa 7.14
+
+clc;
+clear;
+
+// Given
+
+// An LVDT
+vo = 2.6; // Output voltage(volts) of LVDT
+d = 0.4; // displacement 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);
|