diff options
Diffstat (limited to '539/CH6/EX6.4.b')
-rwxr-xr-x | 539/CH6/EX6.4.b/Example_6_4b.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/539/CH6/EX6.4.b/Example_6_4b.sce b/539/CH6/EX6.4.b/Example_6_4b.sce new file mode 100755 index 000000000..af3869f2c --- /dev/null +++ b/539/CH6/EX6.4.b/Example_6_4b.sce @@ -0,0 +1,22 @@ +//True-Stress-At-Fracture Computations
+
+clear;
+clc;
+
+printf("\tExample 6.4\n");
+
+di=12.8; //Initial dia in mm
+df=10.7; //Final dia in mm
+
+printf("\n\tPart B");
+Ao=%pi*di^2*10^-6/4;
+sig=460*10^6; //Tensile strength
+
+F=sig*Ao;
+printf("\nF = %d N",F);
+
+Af=%pi*df^2/4;
+sig_t=F/Af;
+printf("\nTrue stress is %d MPa",sig_t);
+
+//End
\ No newline at end of file |