summaryrefslogtreecommitdiff
path: root/3257/CH2/EX2.5
diff options
context:
space:
mode:
Diffstat (limited to '3257/CH2/EX2.5')
-rwxr-xr-x3257/CH2/EX2.5/Ex2_5.sce16
-rwxr-xr-x3257/CH2/EX2.5/Ex2_5.txt5
2 files changed, 21 insertions, 0 deletions
diff --git a/3257/CH2/EX2.5/Ex2_5.sce b/3257/CH2/EX2.5/Ex2_5.sce
new file mode 100755
index 000000000..91dfe23c0
--- /dev/null
+++ b/3257/CH2/EX2.5/Ex2_5.sce
@@ -0,0 +1,16 @@
+// Yielding of a thin walled shell
+clc
+r = 254 // radius in mm
+t = 2.54 // thickness in mm
+sigma_1 = 140 // stress in MPa
+sigma_2 = 140 // stress in MPa
+sigma_min = 0 // stress in MPa
+printf("\ Example 2.5")
+Y = sigma_2 - sigma_min
+p = 2*(t/1e3)*Y/(r*1e-3)
+printf("\n\n According to maximum shear stress criterion, Required pressure is %.1f MPa",p)
+Y = sqrt(0.5*(sigma_1^2+sigma_2^2))
+p = 2*(t/1e3)*Y/(r*1e-3)
+printf("\n\n According to maximum distortion energy criterion, Required pressure is %.1f MPa",p)
+
+
diff --git a/3257/CH2/EX2.5/Ex2_5.txt b/3257/CH2/EX2.5/Ex2_5.txt
new file mode 100755
index 000000000..9c8488de6
--- /dev/null
+++ b/3257/CH2/EX2.5/Ex2_5.txt
@@ -0,0 +1,5 @@
+ Example 2.5
+
+ According to maximum shear stress criterion, Required pressure is 2.8 MPa.
+
+ According to maximum distortion energy criterion, Required pressure is 2.8 MPa. \ No newline at end of file