diff options
Diffstat (limited to '3856/CH4/EX4.6/Ex4_6.sce')
-rw-r--r-- | 3856/CH4/EX4.6/Ex4_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3856/CH4/EX4.6/Ex4_6.sce b/3856/CH4/EX4.6/Ex4_6.sce new file mode 100644 index 000000000..5d17e1375 --- /dev/null +++ b/3856/CH4/EX4.6/Ex4_6.sce @@ -0,0 +1,18 @@ +//Calculate the Enthalpy Change for heating of 1.46 moles of Oxygen
+
+//Example 4.6
+
+clc;
+
+clear;
+
+
+n=1.46; //Number of moles of Oxygen
+
+function x=Cp(T) ,x=(25.7+0.0130*T), endfunction //Molar Heat Capacity of Oxygen at Constant Pressure in J K^-1 mol^-1
+
+function y=f(T),y=n*Cp(T),endfunction
+
+delH=intg(298,367,f); //Enthalpy Change in J
+
+printf("Enthalpy Change = %.2f*10^3 J",delH*10^-3)
|