summaryrefslogtreecommitdiff
path: root/249/CH2
diff options
context:
space:
mode:
Diffstat (limited to '249/CH2')
-rwxr-xr-x249/CH2/EX2.1/2_01.sce4
-rwxr-xr-x249/CH2/EX2.2/2_02.sce4
-rwxr-xr-x249/CH2/EX2.3/2_03.sce12
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