diff options
Diffstat (limited to '1859/CH8/EX8.3')
-rwxr-xr-x | 1859/CH8/EX8.3/exa_8_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1859/CH8/EX8.3/exa_8_3.sce b/1859/CH8/EX8.3/exa_8_3.sce new file mode 100755 index 000000000..04e274ded --- /dev/null +++ b/1859/CH8/EX8.3/exa_8_3.sce @@ -0,0 +1,13 @@ +// Exa 8.3
+clc;
+clear;
+close;
+// Given data
+l=20;// in mm
+l=l*10^-3;// in meter
+d=5;// in mm
+d=d*10^-3;// in meter
+S= 0.20;// in meter
+Va= 2500;// in volts
+DeflectionSensitivity= l*S/(2*d*Va);// in m/V
+disp(DeflectionSensitivity*10^3,"Deflection Sensitivity in mm/V");
|