summaryrefslogtreecommitdiff
path: root/1586/CH5/EX5.2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1586/CH5/EX5.2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1586/CH5/EX5.2')
-rw-r--r--1586/CH5/EX5.2/EXP5_2.jpgbin0 -> 132345 bytes
-rw-r--r--1586/CH5/EX5.2/EXP5_2.sce10
2 files changed, 10 insertions, 0 deletions
diff --git a/1586/CH5/EX5.2/EXP5_2.jpg b/1586/CH5/EX5.2/EXP5_2.jpg
new file mode 100644
index 000000000..f61fb8692
--- /dev/null
+++ b/1586/CH5/EX5.2/EXP5_2.jpg
Binary files differ
diff --git a/1586/CH5/EX5.2/EXP5_2.sce b/1586/CH5/EX5.2/EXP5_2.sce
new file mode 100644
index 000000000..9038f81cd
--- /dev/null
+++ b/1586/CH5/EX5.2/EXP5_2.sce
@@ -0,0 +1,10 @@
+clc;funcprot(0);//EXAMPLE 5.2
+// Initialisation of Variables
+R1=5*10^8;.........//The rate of moement of interstitial atoms in jumps/s 500 degree celsius
+R2=8*10^10;.........//The rate of moement of interstitial atoms in jumps/s 800 degree celsius
+T1=500;..........//Temperature at first jump in Degree celsius
+T2=800;..........//Temperature at second jump in Degree celsius
+R=1.987;..........//Gas constant in cal/mol-K
+//CALCULATIONS
+Q=log(R2/R1)/(exp(1/(R*(T1+273)))-exp(1/(R*(T2+273))));.....//Activation Energy for Interstitial Atoms in cal/mol
+disp(Q,"Activation Energy for Interstitial Atoms in cal/mol:")