summaryrefslogtreecommitdiff
path: root/3705/CH5/EX5.4/Ex5_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3705/CH5/EX5.4/Ex5_4.sce')
-rw-r--r--3705/CH5/EX5.4/Ex5_4.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3705/CH5/EX5.4/Ex5_4.sce b/3705/CH5/EX5.4/Ex5_4.sce
new file mode 100644
index 000000000..94b980574
--- /dev/null
+++ b/3705/CH5/EX5.4/Ex5_4.sce
@@ -0,0 +1,12 @@
+
+clear//
+
+//Variable Declaration
+M=15000 //Maximum bending moment in absolute values in lb.ft
+S=42 //Sectional Modulus in in^3
+
+//Calculations
+sigma_max=M*12*S**-1 //Maximum stress in the section in psi
+
+//Result
+printf("\n The maximum Bending Stress in the section is %0.0f psi",sigma_max)