diff options
Diffstat (limited to '3020/CH1/EX1.8/ex1_8.sce')
-rwxr-xr-x | 3020/CH1/EX1.8/ex1_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3020/CH1/EX1.8/ex1_8.sce b/3020/CH1/EX1.8/ex1_8.sce new file mode 100755 index 000000000..766a003c5 --- /dev/null +++ b/3020/CH1/EX1.8/ex1_8.sce @@ -0,0 +1,15 @@ +clc;
+clear all;
+d = 0.6e-3; // Diameter in meters
+r = d/2; // Radius of wire in meter
+deltal = 1e-3; // Length of elongation produced in meters
+m = 0.16*1e-3; // Mass in Rg
+angt = 1; // Angular twist in radian
+T = 10e-4; //Torque in Newton
+g = 9.8; // Gravitational Constant
+n = 2.34e9; // Rigidity modulus in mewton per square meters
+Y = (m*g)/(%pi*r*r*deltal);
+disp('',Y);
+sigma = (Y/(2*n))-1
+disp(' ',sigma,'The poisssons ratio is')
+// Wrong answer printed in textbook... Checked in calculator also...
|