diff options
Diffstat (limited to '3683/CH14/EX14.3/Ex14_3.sce')
-rw-r--r-- | 3683/CH14/EX14.3/Ex14_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3683/CH14/EX14.3/Ex14_3.sce b/3683/CH14/EX14.3/Ex14_3.sce new file mode 100644 index 000000000..7a2b8d376 --- /dev/null +++ b/3683/CH14/EX14.3/Ex14_3.sce @@ -0,0 +1,9 @@ +b=300//width, in mm
+d=600//effective depth, in mm
+fck=20//in MPa
+fy=415//in MPa
+Xc=0.479*d//in mm
+Mu=0.36*fck*b*Xc*(d-0.416*Xc)/10^6//in kN-m
+Ast=round(0.36*fck*b*Xc/0.87/fy)//in sq mm
+mprintf("Moment of resistance of the beam=%f kN-m\nSteel required=%d sq mm", Mu,Ast)
+//answer does not match with textbook because of round-off error
|