diff options
Diffstat (limited to '1439/CH3')
-rwxr-xr-x | 1439/CH3/EX3.1/3_1.sce | 10 | ||||
-rwxr-xr-x | 1439/CH3/EX3.4/3_4.sce | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/1439/CH3/EX3.1/3_1.sce b/1439/CH3/EX3.1/3_1.sce new file mode 100755 index 000000000..02a489183 --- /dev/null +++ b/1439/CH3/EX3.1/3_1.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+R= 1.987 //cal mol^-1 K^-1
+T= 0 //C
+V1= 22.4 //lit
+V2= 2.24 //lit
+//CALCULATIONS
+wrev= 2.303*R*(273.1+T)*log10(V1/V2)
+//RESULTS
+printf ('maximum work done= % f cal ',wrev)
diff --git a/1439/CH3/EX3.4/3_4.sce b/1439/CH3/EX3.4/3_4.sce new file mode 100755 index 000000000..bb7221f0b --- /dev/null +++ b/1439/CH3/EX3.4/3_4.sce @@ -0,0 +1,5 @@ +clc
+//initialisation of variables
+Cp= 0.096 //cal deg g^-1
+//RESULTS
+printf ('Cp of zinc at constant pressure a room temperature= % 3f cal deg g^-1',Cp)
|