diff options
Diffstat (limited to '3830/CH7/EX7.15/Ex7_15.sce')
-rw-r--r-- | 3830/CH7/EX7.15/Ex7_15.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3830/CH7/EX7.15/Ex7_15.sce b/3830/CH7/EX7.15/Ex7_15.sce new file mode 100644 index 000000000..cc8ccd65d --- /dev/null +++ b/3830/CH7/EX7.15/Ex7_15.sce @@ -0,0 +1,16 @@ +// Exa 7.15
+
+clc;
+clear;
+
+// Given
+
+// An LVDT
+Vo = 1.25; // Output voltage
+Dmax = 0.0025;// max. deviation of linearity
+L = 0.75; // weight of load in kgf
+
+// Solution
+
+Linearity = (Dmax/Vo)*100;
+printf(' The linearity at a given load 0.65/kgf = %.1f percent \n',Linearity);
|