Engines and fuels

Otto cycle

Idealized cycle

otto cycle

Net work

Note that $u_2=u_3$ since process 2$$3 is adiabatic and constant volume. The “heat added” step is really sensible energy generated by combustion. But the internal energy of the mixture remains fixed.

Adiabatic compression and expansion.

$$du = dW = -PdV$$ $$\frac{dT}{T} = -\frac{R}{c_v}\frac{dV}{V}$$ $$\frac{dT}{T} = -(\gamma-1)\frac{dV}{V}$$

* Assume $\gamma$ is constant. Then integrate to

$$\ln\frac{T_2}{T_1} = -(\gamma-1)\ln\frac{V_2}{V_1}$$

* Rewrite as

$$\frac{T_2}{T_1} = \left(\frac{V_1}{V_2}\right)^{\gamma-1}$$

Example

from streams import streams

strm = streams({"O2":1,"N2":3.76}, {"CH4":1}, 300, 300, 101325, "gri30.yaml")
CR = 10

#----------- state 1: cold, atmospheric reactants
strm.set_gas_mixing_state(strm.ξst)
P1 = strm.gas.P
T1 = strm.gas.T
u1 = strm.gas.int_energy_mass

#----------- state 2: compress reactants
strm.set_gas_state_adiabatic_compression_expansion(1/CR)
P2 = strm.gas.P
T2 = strm.gas.T
u2 = strm.gas.int_energy_mass

#----------- state 3: burnt products
strm.gas.equilibrate("UV")
P3 = strm.gas.P
T3 = strm.gas.T
u3 = strm.gas.int_energy_mass

print(f'NO = {strm.gas.Y[strm.gas.species_index("NO")]*1000000:0f}')

#----------- state 4: expanded products
strm.set_gas_state_adiabatic_compression_expansion(CR)
P4 = strm.gas.P
T4 = strm.gas.T
u4 = strm.gas.int_energy_mass
print(T4, P4)

strm.gas.equilibrate("UV")
print(strm.gas.T, strm.gas.P)
print(f'NO = {strm.gas.Y[strm.gas.species_index("NO")]*1000000:.1f}')

#----------- work and efficiency

W   = (u3-u4) - (u2-u1)   # J/kg mixture
LHV = strm.get_LHV_pCC()  # J/kg fuel

η = W/strm.ξst/LHV        # efficiency; ξst is used to convert W from J/kg mix to J/kg fuel

print(f"η  = {η:.2f}")

print(f'P1 = {P1/101325:.2f} atm,  T1 = {T1:.0f} K')
print(f'P2 = {P2/101325:.2f} atm, T2 = {T2:.0f} K')
print(f'P3 = {P3/101325:.2f} atm, T3 = {T3:.0f} K')
print(f'P4 = {P4/101325:.2f} atm,  T4 = {T4:.0f} K')
NO = 7249.681704
1581.0497304280193 541668.9741244206
1834.455938236 619897.2037123361
NO = 193.1
η  = 0.43
P1 = 1.00 atm,  T1 = 300 K
P2 = 23.02 atm, T2 = 691 K
P3 = 96.24 atm, T3 = 2846 K
P4 = 5.35 atm,  T4 = 1581 K

Octane rating

Review article on impact of fuel molecular structure on auto-ignition

Diesel cycle

diesel cycle https://en.wikipedia.org/wiki/Diesel_cycle#/media/File:DieselCycle_PV.svg

Other cycles

Fuels

Exhaust gas recirculation (EGR)

Recuperation/Regeneration

glass furnace https://www.glassonweb.com/news/nsg-cold-repair-float-glass-furnace-us
1-(T1/T2)*(T4/T1-1)/(T3/T2-1)

$\displaystyle 0.405768344464695$