diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /539/CH6/EX6.3.d | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 |