diff options
Diffstat (limited to '3526/CH16/EX16.9/EX16_9.sce')
-rw-r--r-- | 3526/CH16/EX16.9/EX16_9.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3526/CH16/EX16.9/EX16_9.sce b/3526/CH16/EX16.9/EX16_9.sce new file mode 100644 index 000000000..fe9c18f29 --- /dev/null +++ b/3526/CH16/EX16.9/EX16_9.sce @@ -0,0 +1,13 @@ +clc;funcprot(0);//EXAMPLE 16.7
+//page 500
+//INITIALISATION OF VAREIABLES
+sig1=980;...............//Initial Stress of POlyisoprene in psi
+sig2=1000;.............//Fnal Stress of POlyisoprene in psi
+sig3=1500;.............// Stress of POlyisoprene after one year in psi
+t1=6;................//time in weeks
+t2=52;.............//time in weeks
+//CALCULATIONS
+Rt=-t1/(log(sig1/sig2));.....//Relaxation time in weeks
+sig=sig3/(%e^(-t2/Rt));........//Initial Stress to be placed in psi
+disp(round(Rt),"Relaxation time in weeks:")
+disp(round (sig),"Initial Stress to be placed in psi:")
|