diff options
Diffstat (limited to '539/CH6/EX6.3.c')
-rwxr-xr-x | 539/CH6/EX6.3.c/Example_6_3c.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/539/CH6/EX6.3.c/Example_6_3c.sce b/539/CH6/EX6.3.c/Example_6_3c.sce new file mode 100755 index 000000000..e8e0a47ee --- /dev/null +++ b/539/CH6/EX6.3.c/Example_6_3c.sce @@ -0,0 +1,22 @@ +clear;
+clc;
+
+printf("\tExample 6.3\n");
+
+//From draph in the question
+//stress and strain can be obtained
+
+si2=150; // in MPa
+si1=0;
+e2=0.0016;
+e1=0;
+d0=12.8*10^-3; //Initial Diameter in m
+
+printf("\n\tPart C");
+A0=%pi*d0^2/4;
+sig=450*10^6; //tensile strength in MPa
+
+F=sig*A0;
+printf("\nMaximum load sustained is %d N\n",F);
+
+//End
\ No newline at end of file |