Ejemplo n.º 1
0
tol_ts    = [1.0e-5, 1.0e-9]        # [rtol atol] for time stepping

loglevel  = 1                       # amount of diagnostic output (0
                                    # to 5)
				    
refine_grid = 1                     # 1 to enable refinement, 0 to
                                    # disable 				   


gas = GRI30('Mix')
gas.addTransportModel('Multi')

# set its state to that of the unburned gas
gas.setState_TPX(tin, p, comp)

f = FreeFlame(gas = gas, grid = initial_grid, tfix = 600.0)

# set the upstream properties 
f.inlet.set(mole_fractions = comp, temperature = tin)

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, [2, 5, 10, 20, 50])

f.solve(loglevel, refine_grid)
f.save('ch4_adiabatic.xml','no_energy',
       'solution with the energy equation disabled')
Ejemplo n.º 2
0
				    
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
#
gas = IdealGasMix(rxnmech, mix)

# set its state to that of the unburned gas at the burner
gas.set(T = tin, P = p, X = comp)

f = FreeFlame(gas = gas, grid = initial_grid)

# set the properties at the inlet
f.inlet.set(mole_fractions = comp, temperature = tin)

f.set(tol = tol_ss, tol_time = tol_ts)
f.setMaxJacAge(5, 10)
f.set(energy = 'off')
#f.init()
f.showSolution()

f.solve(loglevel, refine_grid)

f.setRefineCriteria(ratio = 5.0, slope = 0.05, curve = 0.005, prune = 0.0)
f.set(energy = 'on')
f.solve(loglevel,refine_grid)
Ejemplo n.º 3
0
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
#
gas = GRI30('Mix')
gas.addTransportModel('Multi')

# set its state to that of the unburned gas at the burner
gas.set(T = tin, P = p, X = comp)

f = FreeFlame(gas = gas, grid = initial_grid)

# set the properties at the inlet
f.inlet.set(mole_fractions = comp, temperature = tin)

f.set(tol = tol_ss, tol_time = tol_ts)
#f.setMaxJacAge(5, 10)
f.setMaxJacAge(100, 500)
f.setTimeStep(1.0e-6, [0.1, 1, 2, 5, 10, 20])
f.set(energy = 'off')
#f.init()
f.showSolution()

f.solve(loglevel, refine_grid)

#f.setRefineCriteria(ratio = 5.0, slope = 0.05, curve = 0.005, prune = 0.0)
Ejemplo n.º 4
0
tol_ts    = [1.0e-5, 1.0e-9]        # [rtol atol] for time stepping

loglevel  = 1                       # amount of diagnostic output (0
                                    # to 5)

refine_grid = 1                     # 1 to enable refinement, 0 to
                                    # disable


gas = GRI30('Mix')
gas.addTransportModel('Multi')

# set its state to that of the unburned gas
gas.setState_TPX(tin, p, comp)

f = FreeFlame(gas = gas, grid = initial_grid, tfix = 600.0)

# set the upstream properties
f.inlet.set(mole_fractions = comp, temperature = tin)

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, [2, 5, 10, 20, 50])

f.solve(loglevel, refine_grid)
f.save('ch4_adiabatic.xml','no_energy',
       'solution with the energy equation disabled')
Ejemplo n.º 5
0
                                    # problem
tol_ts    = [1.0e-6, 1.0e-8]        # [rtol atol] for time stepping

loglevel  = 1                       # amount of diagnostic output (0
                                    # to 5)

refine_grid = 1                     # 1 to enable refinement, 0 to
                                    # disable

gas = GRI30('Mix')
gas.addTransportModel('Multi')

# set its state to that of the unburned gas
gas.setState_TPX(tin, p, comp)

f = FreeFlame(gas = gas, grid = initial_grid, tfix = 600.0)

# set the upstream properties
f.inlet.set(mole_fractions = comp, temperature = tin)

f.set(tol = tol_ss, tol_time = tol_ts)
#f.showSolution()

f.set(energy = 'on')
f.setRefineCriteria(ratio = 5.0, slope = 0.1, curve = 0.2,prune = 0.05)
f.setMaxJacAge(5, 10)
f.setTimeStep(1.0e-4, [1, 2, 4, 8, 16])

#f.solve(loglevel, refine_grid)
#f.save('ch4_adiabatic.xml','no_energy',
#       'solution with the energy equation disabled')