diff options
Diffstat (limited to '821/CH5/EX5.3/5_3.sce')
-rwxr-xr-x | 821/CH5/EX5.3/5_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/821/CH5/EX5.3/5_3.sce b/821/CH5/EX5.3/5_3.sce new file mode 100755 index 000000000..0aca07140 --- /dev/null +++ b/821/CH5/EX5.3/5_3.sce @@ -0,0 +1,11 @@ +w=0.454;//weight of TNT in grams//
+T=298;//temperature in kelvin//
+R=2*10^-3;
+dn=5;
+m=w/227;//mol of TNT exploded//
+printf('mol of TNT exploded=%fmol',m);
+H=1.64;//Heat liberated in kcal//
+dU=-H/m;
+printf('\ndU=%fKcal per mol',dU);
+dH=dU+(R*T*dn);
+printf('\ndH=%fKcal per mol',dH);
|