summaryrefslogtreecommitdiff
path: root/1085/CH7/EX7.4/ex7_4.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1085/CH7/EX7.4/ex7_4.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1085/CH7/EX7.4/ex7_4.sce')
-rwxr-xr-x1085/CH7/EX7.4/ex7_4.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1085/CH7/EX7.4/ex7_4.sce b/1085/CH7/EX7.4/ex7_4.sce
new file mode 100755
index 000000000..e748f2287
--- /dev/null
+++ b/1085/CH7/EX7.4/ex7_4.sce
@@ -0,0 +1,10 @@
+//Exam:7.4
+clc;
+clear;
+close;
+D_500=4.8*10^(-14);//Diffusion coefficient for copper in aluminimum at 500*C(in m^2/s)
+D_600=5.3*10^(-13);//Diffusion coefficient for copper in aluminimum at 600*C(in m^2/s)
+t_600=10;//time of diffussion at 600*C(in Hours)
+//D_500*t_500=D_600*t_600
+t_500=D_600*t_600/D_500;//time of diffussion at 500*C
+disp(t_500,'Time at 500*C that will produce the same diffusion as in 600*C(in Hours)='); \ No newline at end of file