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/CH5/EX5.3/Example_5_3.sce | |
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/CH5/EX5.3/Example_5_3.sce')
-rwxr-xr-x | 539/CH5/EX5.3/Example_5_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/539/CH5/EX5.3/Example_5_3.sce b/539/CH5/EX5.3/Example_5_3.sce new file mode 100755 index 000000000..51fc97cb6 --- /dev/null +++ b/539/CH5/EX5.3/Example_5_3.sce @@ -0,0 +1,17 @@ +//Nonsteady-State Diffusion Time Computation II
+
+clear;
+clc;
+
+printf("\tExample 5.3\n");
+
+D500=4.8*10^-14; //Diffusion coefficient at 500 C
+
+D600=5.3*10^-13; //Diffusion coefficient at 600 C
+t600=10; //Time in hours to diffuse
+
+t500=D600*t600/D500;
+
+printf("\nTime to diffuse at 500 C is %.1f h\n",t500);
+
+//End
\ No newline at end of file |