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 /3257/CH10/EX10.3 | |
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 '3257/CH10/EX10.3')
-rwxr-xr-x | 3257/CH10/EX10.3/Ex10_3.sce | 13 | ||||
-rwxr-xr-x | 3257/CH10/EX10.3/Ex10_3.txt | 4 |
2 files changed, 17 insertions, 0 deletions
diff --git a/3257/CH10/EX10.3/Ex10_3.sce b/3257/CH10/EX10.3/Ex10_3.sce new file mode 100755 index 000000000..1c921ab6b --- /dev/null +++ b/3257/CH10/EX10.3/Ex10_3.sce @@ -0,0 +1,13 @@ +
+// stress relaxation in a thermoplastic members under tension
+
+clc
+sigma1 = 6 // stress in MPa
+sigma2 = 3 // stress factor after 25 days
+sigma3 = 1 // stress factor at one tenth of initial value
+t1 = 25 // number of days
+printf("\n Example 10.3")
+lambda = -t1/log(sigma2/sigma1)
+t = -lambda*log(sigma3/sigma1)
+printf("\n It will take time of %.1f days \n for stress level to reach one tenth of its original value.",t)
+
diff --git a/3257/CH10/EX10.3/Ex10_3.txt b/3257/CH10/EX10.3/Ex10_3.txt new file mode 100755 index 000000000..942d31dab --- /dev/null +++ b/3257/CH10/EX10.3/Ex10_3.txt @@ -0,0 +1,4 @@ +
+ Example 10.3
+ It will take time of 64.6 days
+ for stress level to reach one tenth of its original value.
\ No newline at end of file |