diff options
Diffstat (limited to '1019/CH3/EX3.23')
-rw-r--r-- | 1019/CH3/EX3.23/Example_3_23.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1019/CH3/EX3.23/Example_3_23.sce b/1019/CH3/EX3.23/Example_3_23.sce new file mode 100644 index 000000000..1b8b9e4a5 --- /dev/null +++ b/1019/CH3/EX3.23/Example_3_23.sce @@ -0,0 +1,15 @@ +//Example 3.23
+clear;
+clc;
+
+//Given
+delHfH2O=-286;//enthalpy of formation of liquid water in kJ mol^-1
+delHfCO2=-394;//enthalpy of formation of carbon dioxide in kJ mol^-1
+delHfC6H12O6=-1260;//enthalpy of formation of glucose in water in kJ mol^-1
+
+//To determine power output of the brain
+delH=(6*delHfH2O)+(6*delHfCO2)-(delHfC6H12O6);//heat of combustion in kJ
+q=delH/18;//heat supplied by 10 g glucose in kJ
+p=-(1000*q)/3600;//power in Watt
+mprintf('Power output of the brain = %f W',p);
+//end
\ No newline at end of file |