diff options
Diffstat (limited to '2732/CH9/EX9.3/Ex9_3.sce')
-rwxr-xr-x | 2732/CH9/EX9.3/Ex9_3.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/2732/CH9/EX9.3/Ex9_3.sce b/2732/CH9/EX9.3/Ex9_3.sce new file mode 100755 index 000000000..678cfbcc2 --- /dev/null +++ b/2732/CH9/EX9.3/Ex9_3.sce @@ -0,0 +1,26 @@ +clc
+//initialization of variables
+clear
+b=14 //cm
+d=20 //cm
+rx=8.46 //cm
+ry=2.99 //cm
+// calculations
+ex=2*rx^2/d
+ey=2*ry^2/b
+h=2*ex
+w=2*ey
+// results
+printf('for steel height=%.3f cm and width=%.3f cm',h,w)
+// ISHB 225
+b=22.5 //cm
+d=22.5 //cm
+rx=9.8 //cm
+ry=4.96 //cm
+// calculations
+ex=2*rx^2/d
+ey=2*ry^2/b
+h=2*ex
+w=2*ey
+// results
+printf('\n for an ISHB height=%.3f cm and width=%.3f cm',h,w)
|