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 /249/CH2 | |
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 '249/CH2')
-rwxr-xr-x | 249/CH2/EX2.1/2_01.sce | 4 | ||||
-rwxr-xr-x | 249/CH2/EX2.2/2_02.sce | 4 | ||||
-rwxr-xr-x | 249/CH2/EX2.3/2_03.sce | 12 |
3 files changed, 20 insertions, 0 deletions
diff --git a/249/CH2/EX2.1/2_01.sce b/249/CH2/EX2.1/2_01.sce new file mode 100755 index 000000000..fdcfcc0a3 --- /dev/null +++ b/249/CH2/EX2.1/2_01.sce @@ -0,0 +1,4 @@ +clear +clc +//Theorotical Questions +printf("Its a theorotical Question")
\ No newline at end of file diff --git a/249/CH2/EX2.2/2_02.sce b/249/CH2/EX2.2/2_02.sce new file mode 100755 index 000000000..1551ebddb --- /dev/null +++ b/249/CH2/EX2.2/2_02.sce @@ -0,0 +1,4 @@ +clear
+clc
+//Theorotical Questions
+printf("Its a theorotical Question")
\ No newline at end of file diff --git a/249/CH2/EX2.3/2_03.sce b/249/CH2/EX2.3/2_03.sce new file mode 100755 index 000000000..cfeea23a0 --- /dev/null +++ b/249/CH2/EX2.3/2_03.sce @@ -0,0 +1,12 @@ +clear
+clc
+// Given
+//t1=30 min ;T1=336 k;
+//t2=15 sec ;T2=347 k;
+// Converting t2 in min
+t1=30;T1=336;t2=0.25;T2=347
+R=8.314;
+//log(t1/t2)=E(1/T1-1/T2)/R
+E=(log(t1/t2)*R)/(1/T1-1/T2);
+printf("\nRESULT\n")
+printf("E(J/mol) is %f",E)
\ No newline at end of file |