diff options
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 |