mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
97 lines
2.9 KiB
Python
Executable File
97 lines
2.9 KiB
Python
Executable File
#
|
|
# FLAME2 - A burner-stabilized, premixed methane/air flat flame
|
|
# with multicomponent transport properties
|
|
#
|
|
from Cantera import *
|
|
from Cantera.OneD import *
|
|
|
|
################################################################
|
|
#
|
|
# parameter values
|
|
#
|
|
p = OneAtm # pressure
|
|
tburner = 373.7 # burner temperature
|
|
mdot = 0.04 # kg/m^2/s
|
|
|
|
comp = 'CH4:0.65, O2:1, N2:3.76' # premixed gas composition
|
|
|
|
# The solution domain is chosen to be 1 cm, and a point very near the
|
|
# downstream boundary is added to help with the zero-gradient boundary
|
|
# condition at this boundary.
|
|
initial_grid = [0.0, 0.0025, 0.005, 0.0075, 0.0099, 0.01] # m
|
|
|
|
tol_ss = [1.0e-5, 1.0e-9] # [rtol atol] for steady-state
|
|
# problem
|
|
tol_ts = [1.0e-5, 1.0e-4] # [rtol atol] for time stepping
|
|
|
|
loglevel = 1 # amount of diagnostic output (0
|
|
# to 5)
|
|
|
|
refine_grid = 1 # 1 to enable refinement, 0 to
|
|
# disable
|
|
|
|
|
|
################ create the gas object ########################
|
|
#
|
|
# This object will be used to evaluate all thermodynamic, kinetic, and
|
|
# transport properties. It is created with two transport managers, to
|
|
# enable switching from mixture-averaged to multicomponent transport
|
|
# on the last solution.
|
|
gas = GRI30('Mix')
|
|
gas.addTransportModel('Multi')
|
|
|
|
# set its state to that of the unburned gas at the burner
|
|
gas.setState_TPX(tburner, p, comp)
|
|
|
|
f = BurnerFlame(gas = gas, grid = initial_grid)
|
|
|
|
# set the properties at the burner
|
|
f.burner.set(massflux = mdot, mole_fractions = comp, temperature = tburner)
|
|
|
|
f.set(tol = tol_ss, tol_time = tol_ts)
|
|
f.showSolution()
|
|
|
|
f.set(energy = 'off')
|
|
f.setRefineCriteria(ratio = 10.0, slope = 1, curve = 1)
|
|
f.setMaxJacAge(50, 50)
|
|
f.setTimeStep(1.0e-5, [1, 2, 5, 10, 20])
|
|
|
|
f.solve(loglevel, refine_grid)
|
|
f.save('ch4_flame1.xml','no_energy',
|
|
'solution with the energy equation disabled')
|
|
|
|
f.set(energy = 'on')
|
|
f.setRefineCriteria(ratio = 3.0, slope = 0.1, curve = 0.2)
|
|
f.solve(loglevel, refine_grid)
|
|
f.save('ch4_flame1.xml','energy',
|
|
'solution with the energy equation enabled')
|
|
|
|
gas.switchTransportModel('Multi')
|
|
f.flame.setTransportModel(gas)
|
|
f.solve(loglevel, refine_grid)
|
|
f.save('ch4_flame1.xml','energy_multi',
|
|
'solution with the energy equation enabled and multicomponent transport')
|
|
|
|
# write the velocity, temperature, density, and mole fractions to a CSV file
|
|
z = f.flame.grid()
|
|
T = f.T()
|
|
u = f.u()
|
|
V = f.V()
|
|
fcsv = open('flame2.csv','w')
|
|
writeCSV(fcsv, ['z (m)', 'u (m/s)', 'V (1/s)', 'T (K)', 'rho (kg/m3)']
|
|
+ list(gas.speciesNames()))
|
|
for n in range(f.flame.nPoints()):
|
|
f.setGasState(n)
|
|
writeCSV(fcsv, [z[n], u[n], V[n], T[n], gas.density()]
|
|
+list(gas.moleFractions()))
|
|
fcsv.close()
|
|
|
|
print 'solution saved to flame2.csv'
|
|
|
|
f.showStats()
|
|
|
|
|
|
|
|
|
|
|