Application Center - Maplesoft

App Preview:

Spontaneity of the Reaction of Nitrogen and Oxygen to form Nitrogen Monoxide

You can switch back to the summary page by clicking here.

Learn about Maple
Download Application




Spontaneity of the Reaction of Nitrogen and Oxygen to form Nitrogen Monoxide

Introduction

 

Nitrogen reacts with oxygen as follows.

 

N2 (g) + O2 (g) → 2 NO (g)

 

This application will calculate the temperature at which this reaction becomes spontaneous.

 

Using the empirical data in the ThermophysicalData:-Chemicals  package, the application first defines a function that describes the Gibbs Energy of the reaction at an arbitrary temperature.

 

This function is then numerically solved for the temperature at which the Gibbs Energy is zero. The reaction is spontaneous at or above this temperature.

 

Physical Properties

 

with(ThermophysicalData:-Chemicals):

 

Enthalpies

h_NO := Property("Hmolar", "NO", "temperature" = T):
h_N2 := Property("Hmolar", "N2", "temperature" = T):
h_O2 := Property("Hmolar", "O2", "temperature" = T):

 

Entropies

s_NO := Property("Smolar", "NO", temperature = T):
s_N2 := Property("Smolar", "N2", temperature = T):
s_O2 := Property("Smolar", "O2", temperature = T):

 

Gibbs Energy of Reaction

 

Gibbs := proc(temp)

   local DeltaS, DeltaH, DeltaG:
   uses Units:-Simple:

   # Change in entropy
   DeltaS := 2 * s_NO - (s_N2 + s_O2):

   # Change in enthalpy
   DeltaH := 2 * h_NO - (h_N2 + h_O2):

   # Gibbs free energy
   DeltaG := 0.5 * eval(DeltaH - temp * DeltaS, T = temp):

   return DeltaG:

end proc:

 

At 298 K, the Gibbs Energy per mole of NO   is

Gibbs(298 * Unit(K))

87585.53545*Units:-Unit(m^2*kg/(s^2*mol))

(3.1)

The reaction is spontaneous when the Gibbs Energy is zero or negative. Hence the reaction is spontaneous at a temperature of

fsolve(Gibbs(T) = 0, T = 300 * Unit(K))

7571.230267*Units:-Unit(K)

(3.2)

plot(Gibbs, 298 * Unit(K) .. 10000 * Unit(K), numpoints = 5, title = "Gibbs Free Energy of the Reaction of Nitrogen and Oxygen to Form Nitrogen Monoxide", labels = ["Temperature (K)", "Gibbs Free Energy (J/mol/K)"], labeldirections = [horizontal, vertical], size = [800,400])

 

 

Legal Notice: © Maplesoft, a division of Waterloo Maple Inc. 2018. Maplesoft and Maple are trademarks of Waterloo Maple Inc. This application may contain errors and Maplesoft is not liable for any damages resulting from the use of this material. This application is intended for non-commercial, non-profit use only. Contact Maplesoft for permission if you wish to use this application in for-profit activities.