diff options
Diffstat (limited to '3776/CH6/EX6.18/Ex6_18.sce')
-rw-r--r-- | 3776/CH6/EX6.18/Ex6_18.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/3776/CH6/EX6.18/Ex6_18.sce b/3776/CH6/EX6.18/Ex6_18.sce new file mode 100644 index 000000000..ccce2e9e8 --- /dev/null +++ b/3776/CH6/EX6.18/Ex6_18.sce @@ -0,0 +1,7 @@ +clear +l = 50 //mm - The length of the beam +b = 50 //mm - The width of the beam +A = l*b //mm2 - The area of the beam +p = 8.33 //KN - The force applied on the beam +stress_max = p*(10**3)/A //MPa After cutting section A--b +printf("\n The maximum stress in the beam %0.3f MPa ",stress_max ) |