diff options
Diffstat (limited to '3871/CH4/EX4.1/Ex4_1.sce')
-rw-r--r-- | 3871/CH4/EX4.1/Ex4_1.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3871/CH4/EX4.1/Ex4_1.sce b/3871/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..6f0bd68ef --- /dev/null +++ b/3871/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,20 @@ +//===========================================================================
+//chapter 4 example 1
+clc;
+clear all;
+
+
+//variable decalartion
+L =0.4; //length of the strip in m
+W = 0.0005; //width of the strip in m
+t = 0.00008 //thickness in m
+E = 1.2*10^10; //young's modulus in kg/m**2
+d = 90; //deflection in degrees
+
+//calucaltions
+theta = %pi/(2); //deflection in radians
+T = ((E*W*(t^3))/(12*L*2))*(%pi); //torque exerted in Kg-m
+
+//result
+
+mprintf("torque exerted T = %3.2e Kg-m",T);
|