diff options
Diffstat (limited to '3020/CH1/EX1.11/ex1_11.sce')
-rwxr-xr-x | 3020/CH1/EX1.11/ex1_11.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3020/CH1/EX1.11/ex1_11.sce b/3020/CH1/EX1.11/ex1_11.sce new file mode 100755 index 000000000..e64836d3f --- /dev/null +++ b/3020/CH1/EX1.11/ex1_11.sce @@ -0,0 +1,11 @@ +clc;
+clear all;
+Y = 1.025e10;// Youngs modulus in newton per square meters
+b = 2e-2; //Breadth of the bar in meters
+l = 1; // Length of wire in meters
+d = 1e-2;// Depth of bar in meters
+m = 2; // Load in Kg
+g = 9.8; // Gravity constant
+W=m*g;
+y = (W*l^3)/(4*Y*b*d^3);
+disp('m',y,'The depression produced in the bar is')
|