diff options
Diffstat (limited to '539/CH6/EX6.3.d')
-rwxr-xr-x | 539/CH6/EX6.3.d/Example_6_3d.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/539/CH6/EX6.3.d/Example_6_3d.sce b/539/CH6/EX6.3.d/Example_6_3d.sce new file mode 100755 index 000000000..1d5db01ac --- /dev/null +++ b/539/CH6/EX6.3.d/Example_6_3d.sce @@ -0,0 +1,21 @@ +clear;
+clc;
+
+printf("\tExample 6.3\n");
+
+//From draph in the question
+//stress and strain can be obtained
+
+printf("\n\tPart D");
+
+//From stress-strain curve
+//Strain corresponding to stress of 345 MPa is 0.06
+
+l0=250; //Initial lengt in mm
+e=0.06; //strain
+
+dl=e*l0;
+printf("\nChange in length is %d mm",dl);
+
+
+//End
\ No newline at end of file |