diff options
Diffstat (limited to '3772/CH6/EX6.7/Ex6_7.sce')
-rw-r--r-- | 3772/CH6/EX6.7/Ex6_7.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3772/CH6/EX6.7/Ex6_7.sce b/3772/CH6/EX6.7/Ex6_7.sce new file mode 100644 index 000000000..4e53cbaa6 --- /dev/null +++ b/3772/CH6/EX6.7/Ex6_7.sce @@ -0,0 +1,24 @@ +// Problem no 6.7,Page No.158 + +clc;clear; +close; + +L=5 //m //Length of beam +w=40*10**3 //N //U.d.L +y_max=0.01 //Deflection +sigma_s=7*10**6 //Bending stress +E=10.5*10**9 + +//Calculation + +M=w*L*8**-1 //N*m //Max Bending moment + +//From equation of max deflection +I=5*w*L**3*(y_max*384*E)**-1 //m**4 + +d=sigma_s*2*I*M**-1*10**2 //cm +b=12*I*((d*10**-2)**3)**-1*10**2 //cm //Breadth + +//Result +printf("Minimum value of breadth is %.2f cm",b) +printf("\n Minimum value of Depth is %.2f cm",d) |