Added flame1 test in its own directory.
This commit is contained in:
parent
460ad83e0a
commit
64e7a7bea2
6 changed files with 895 additions and 0 deletions
11
test_problems/python/flame1/.cvsignore
Normal file
11
test_problems/python/flame1/.cvsignore
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
csvCode.txt
|
||||
ct2ctml.log
|
||||
diff_test.out
|
||||
gri30.xml
|
||||
output.txt
|
||||
diff_csv.txt
|
||||
diff_out.txt
|
||||
flame1.csv
|
||||
flame1.xml
|
||||
h2o2.xml
|
||||
transport_log.xml
|
||||
2
test_problems/python/flame1/cleanup
Executable file
2
test_problems/python/flame1/cleanup
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
/bin/rm -f csvCode.txt ct2ctml.log diff_test.out output.txt gri30.xml
|
||||
89
test_problems/python/flame1/flame1.py
Executable file
89
test_problems/python/flame1/flame1.py
Executable file
|
|
@ -0,0 +1,89 @@
|
|||
#
|
||||
# FLAME1 - A burner-stabilized flat flame
|
||||
#
|
||||
# This script simulates a burner-stablized lean hydrogen-oxygen flame
|
||||
# at low pressure.
|
||||
#
|
||||
from Cantera import *
|
||||
from Cantera.OneD import *
|
||||
from Cantera.OneD.BurnerFlame import BurnerFlame
|
||||
|
||||
################################################################
|
||||
#
|
||||
# parameter values
|
||||
#
|
||||
p = 0.05*OneAtm # pressure
|
||||
tburner = 373.0 # burner temperature
|
||||
mdot = 0.06 # kg/m^2/s
|
||||
|
||||
rxnmech = 'h2o2.cti' # reaction mechanism file
|
||||
mix = 'ohmech' # gas mixture model
|
||||
comp = 'H2:1.8, O2:1, AR:7' # premixed gas composition
|
||||
|
||||
# The solution domain is chosen to be 50 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.02, 0.04, 0.06, 0.08, 0.1,
|
||||
0.15, 0.2, 0.4, 0.49, 0.5] # m
|
||||
|
||||
tol_ss = [1.0e-5, 1.0e-13] # [rtol atol] for steady-state
|
||||
# problem
|
||||
tol_ts = [1.0e-4, 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
|
||||
|
||||
|
||||
################ 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 = tburner, P = p, X = 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.setMaxJacAge(5, 10)
|
||||
f.set(energy = 'off')
|
||||
f.init()
|
||||
f.showSolution()
|
||||
|
||||
f.solve(loglevel, refine_grid)
|
||||
|
||||
f.setRefineCriteria(ratio = 200.0, slope = 0.05, curve = 0.1)
|
||||
f.set(energy = 'on')
|
||||
f.solve(loglevel,refine_grid)
|
||||
|
||||
f.save('flame1.xml')
|
||||
f.showSolution()
|
||||
|
||||
|
||||
# write the velocity, temperature, and mole fractions to a CSV file
|
||||
z = f.flame.grid()
|
||||
T = f.T()
|
||||
u = f.u()
|
||||
V = f.V()
|
||||
fcsv = open('flame1.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 flame1.csv'
|
||||
|
||||
# Disabled, because timings cause text differences
|
||||
# f.showStats()
|
||||
|
||||
105
test_problems/python/flame1/flame1_blessed.csv
Normal file
105
test_problems/python/flame1/flame1_blessed.csv
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
z (m), u (m/s), V (1/s), T (K), rho (kg/m3), H2, H, O, O2, OH, H2O, HO2, H2O2, AR,
|
||||
0.0, 1.1276044904999798, 0.0, 373.0, 0.053209534629258787, 0.16784771708440033, 0.0029539722061166845, 2.474738475652815e-05, 0.1018739705817777, 0.00045481583298836634, 0.0033278218756301685, 1.7264746051940081e-05, 9.5107872772645258e-06, 0.72349017950100103,
|
||||
1.953125e-05, 1.132484245012177, 0.0, 374.64337094220645, 0.052980574927617298, 0.16770833181084391, 0.0029698958719036185, 2.5253037054111573e-05, 0.10183215107069311, 0.00046429927892751026, 0.0034204661474816446, 1.783155107344579e-05, 9.8254488794044311e-06, 0.7235519457831433,
|
||||
3.9062500000000001e-05, 1.1373497048000623, 0.0, 376.2823080837079, 0.052754233350077513, 0.16756831254714888, 0.0029865014504129282, 2.5740405093490938e-05, 0.10179066852543066, 0.00047312891128255339, 0.0035137491324424624, 1.8167780782675351e-05, 1.0127552514012901e-05, 0.72361360369489225,
|
||||
7.8125000000000002e-05, 1.1470360188277577, 0.0, 379.54620032914175, 0.052309316320745938, 0.16728699939045624, 0.0030216622663690219, 2.6656644668045723e-05, 0.10170877221211166, 0.00048876423956532649, 0.00370171708102835, 1.837044857024125e-05, 1.0691867725072298e-05, 0.72373636584950596,
|
||||
0.0001171875, 1.1566606351286717, 0.0, 382.7908923338166, 0.051874585541684261, 0.16700323968269964, 0.0030594385997517316, 2.7498399229944557e-05, 0.10162782282246001, 0.00050187583058919967, 0.0038918265695282394, 1.8280892576423374e-05, 1.1203621207678526e-05, 0.72385881358195714,
|
||||
0.00015625, 1.1662238938235288, 0.0, 386.01649840426393, 0.051449706476743504, 0.16671708356628878, 0.003099736688877391, 2.8268802116460872e-05, 0.1015476503299011, 0.0005126635842989854, 0.0040838861274907871, 1.8057931692858738e-05, 1.1662065659097904e-05, 0.72398099090367463,
|
||||
0.00019531250000000001, 1.1757272801681726, 0.0, 389.223500915241, 0.051034309470013257, 0.16642858052674844, 0.003142459550858818, 2.8972438777958479e-05, 0.10146812241393417, 0.00052135722375428253, 0.0042777305476678108, 1.7779047243151604e-05, 1.2067316788463361e-05, 0.72410293093422695,
|
||||
0.00023437499999999999, 1.1851727786446025, 0.0, 392.41254366398971, 0.050628020340744616, 0.16613777747623384, 0.0031875129847038692, 2.961453449448607e-05, 0.10138913159298418, 0.00052818515113292944, 0.0044732153725878954, 1.7481690718938108e-05, 1.2420183669455216e-05, 0.72422466101347438,
|
||||
0.00031250000000000001, 1.2038992786162972, 0.0, 398.73919482658516, 0.049841303280912325, 0.16555177424389977, 0.0032839379248382622, 3.0726392901483094e-05, 0.10123312087266233, 0.00053686382606693941, 0.004867118931125191, 1.6887806716853081e-05, 1.2971024677771408e-05, 0.72446659897711141,
|
||||
0.00039062500000000002, 1.2224243241712924, 0.0, 405.00380050875043, 0.049086690271511337, 0.16495716704337288, 0.0033886208370028175, 3.1660540190227109e-05, 0.10107836793991991, 0.00054052047264971164, 0.0052659646867416693, 1.633124562036546e-05, 1.3339685499661406e-05, 0.72470802754900265,
|
||||
0.00046874999999999998, 1.2407642268096326, 0.0, 411.21168054386567, 0.048361749214466877, 0.16435421249351456, 0.0035010259227106952, 3.2455428692111025e-05, 0.10092446750523192, 0.00054029840958689525, 0.0056690880455332986, 1.5815649980806736e-05, 1.3544834408674909e-05, 0.72494909171034105,
|
||||
0.00054687500000000005, 1.258933736325843, 0.0, 417.36765791107484, 0.047664312913968741, 0.16374312172811917, 0.0036206989577952614, 3.3145244200265392e-05, 0.10077111360234348, 0.00053709683283486133, 0.006075958744266999, 1.5336699375133497e-05, 1.3606163037254971e-05, 0.72518992202802757,
|
||||
0.00062500000000000001, 1.2769460907992323, 0.0, 423.47607213378348, 0.046992447622158498, 0.16312406561486259, 0.0037472543999606716, 3.3759974206045858e-05, 0.10061807375172088, 0.00053162241711840323, 0.0064861556733624651, 1.4888911157691591e-05, 1.354308964398584e-05, 0.72543063616796721,
|
||||
0.00078125000000000004, 1.3125459338195327, 0.0, 435.56344462893441, 0.045718671866449921, 0.16187145197802874, 0.0040180086806930766, 3.4835934443987331e-05, 0.10031457704746426, 0.00051566597209820575, 0.0073096160535459304, 1.4074286290723768e-05, 1.310360550864112e-05, 0.72590866644192642,
|
||||
0.000859375, 1.3301600700315575, 0.0, 441.55325027339433, 0.04511358842031693, 0.1612295317808021, 0.0041633303474005352, 3.5367911922658557e-05, 0.10016179258865415, 0.00050627190115010601, 0.0077275719413229162, 1.369802853957798e-05, 1.2777878019583549e-05, 0.7261496576221883,
|
||||
0.00093749999999999997, 1.3476586298763882, 0.0, 447.50920554947777, 0.044528103860317809, 0.16058001783515163, 0.0043144806291037638, 3.5911671552815312e-05, 0.10000882389458592, 0.00049621898804429112, 0.0081479142174230457, 1.3341184943717511e-05, 1.2392811876346931e-05, 0.72639089876731844,
|
||||
0.001015625, 1.3650493948962066, 0.0, 453.43388923585621, 0.043961068443440249, 0.15992293900160642, 0.0044712843249521137, 3.6483975258437209e-05, 0.099855595979851455, 0.00048572771858213393, 0.0085705537395078905, 1.3001478953683446e-05, 1.1960644850440131e-05, 0.72663245313643743,
|
||||
0.0010937500000000001, 1.3823393990140835, 0.0, 459.32963636689448, 0.04341143520581172, 0.15925830413926717, 0.0046335914749647995, 3.7100562313207608e-05, 0.099702042095845614, 0.00047497325024009184, 0.0089954445626930831, 1.2677316258083204e-05, 1.149214905023403e-05, 0.72687437444936764,
|
||||
0.0011718750000000002, 1.3995350229656047, 0.0, 465.19856833794012, 0.042878247530032401, 0.15858610420801286, 0.0048012737378258456, 3.7776586711198538e-05, 0.099548099722972877, 0.00046409478411346802, 0.0094225795414607134, 1.2367445267483261e-05, 1.0996752248107309e-05, 0.72711670722138755,
|
||||
0.00125, 1.4166420746576656, 0.0, 471.04261852340238, 0.042360628577046276, 0.15790631413728187, 0.0049742213707813371, 3.8527000320538666e-05, 0.099393707381758567, 0.00045320277620074397, 0.0098519867649430586, 1.2070828304675115e-05, 1.0482665229777392e-05, 0.7273594870751795,
|
||||
0.0013281249999999999, 1.4336658585673447, 0.0, 476.86355443551849, 0.041857772230446115, 0.15721889448782833, 0.0051523406807968348, 3.9366889604201951e-05, 0.09923880209155124, 0.00044238458413726974, 0.010283726647297958, 1.1786579553186084e-05, 9.957006237419755e-06, 0.72760274103299338,
|
||||
0.0014062499999999999, 1.4506112360725667, 0.0, 482.66299694922611, 0.041368935301422251, 0.15652379295082319, 0.005335551857284594, 4.0311772144360556e-05, 0.099083317331557563, 0.00043170893681535451, 0.010717889536921878, 1.1513928092831296e-05, 9.4259176648165689e-06, 0.72784648776869543,
|
||||
0.001484375, 1.4674826777135872, 0.0, 488.4424369693852, 0.040893430796371644, 0.15582094569015903, 0.0055237871177442653, 4.1377858292192744e-05, 0.09892718138401034, 0.00042122950176508143, 0.011154593740318826, 1.1252192855050978e-05, 8.8946727476840478e-06, 0.72809073784210765,
|
||||
0.0015625000000000001, 1.4842843086260336, 0.0, 494.20324985799567, 0.040430622082471772, 0.15511027856391418, 0.00571698911349493, 4.2582282434034988e-05, 0.098770315970946793, 0.00041098775309569174, 0.011593983882078133, 1.1000764569683679e-05, 8.3677715823502255e-06, 0.72833549389788421,
|
||||
0.0016406250000000002, 1.5010199478003035, 0.0, 499.94670790278218, 0.039979917815630955, 0.15439170822270706, 0.0059151095521266768, 4.3943307551793389e-05, 0.098612635112157176, 0.0004010152920950728, 0.012036229539671142, 1.0759092372837029e-05, 7.8490267403138161e-06, 0.72858075085457796,
|
||||
0.00171875, 1.5176931422021021, 0.0, 505.6739910777265, 0.039540767515613418, 0.15366514311697743, 0.0061181080028081267, 4.5480506022729759e-05, 0.098454044154101278, 0.0003913357356274655, 0.012481524106214123, 1.0526673716966367e-05, 7.3416392564551077e-06, 0.7288264960652755,
|
||||
0.0017968749999999999, 1.5343071961971915, 0.0, 511.38619631760827, 0.03911265769353011, 0.15293048440666779, 0.0063259508555043985, 4.721491896114277e-05, 0.098294438926958286, 0.00038196625987494738, 0.012930083843059067, 1.0303046680839144e-05, 6.8482660074992533e-06, 0.72907270947628611,
|
||||
0.0018749999999999999, 1.5508651971443099, 0.0, 517.08434550213724, 0.038695108450384159, 0.15218762680255749, 0.0065386104116186483, 4.9169195888070741e-05, 0.098133705002635616, 0.00037291886632970315, 0.013382147092512309, 1.008778404054819e-05, 6.3710795692649017e-06, 0.72931936376484841,
|
||||
0.001953125, 1.5673700374326558, 0.0, 522.76939232126415, 0.038287670480021851, 0.15143645933068853, 0.006756064086006615, 5.1367716098620822e-05, 0.097971717028674951, 0.00036420142119829567, 0.013837973625295511, 9.8804886225647509e-06, 5.9118216130262473e-06, 0.72956642448180176,
|
||||
0.0020312500000000001, 1.5838244336812142, 0.0, 528.44222817229729, 0.037889922418649441, 0.15067686604642674, 0.0069782937050388832, 5.3836692795427557e-05, 0.097808338124536695, 0.00035581850742600859, 0.014297844102881372, 9.6807895137894119e-06, 5.4718508191439131e-06, 0.72981385018056188,
|
||||
0.0021093750000000001, 1.6002309432627095, 0.0, 534.1036872225817, 0.037501468493542196, 0.1499087266888568, 0.0072052848863866266, 5.6604260834481579e-05, 0.097643419326045866, 0.00034777211933028468, 0.014762059637160447, 9.4883384733244462e-06, 5.0521861778353192e-06, 0.73006159255673442,
|
||||
0.0021875000000000002, 1.6165919787755709, 0.0, 539.75455076308594, 0.03712193642875445, 0.14913191729901251, 0.0074370264897204346, 5.9700548812031289e-05, 0.097476799072950621, 0.0003400622235562721, 0.015230941434338624, 9.3028045026567179e-06, 4.6535464323131967e-06, 0.73030959658067451,
|
||||
0.0022656250000000003, 1.6329098206763279, 0.0, 545.39555099718041, 0.036750975571138579, 0.14834631079320179, 0.0076735101268042673, 6.3157736240787227e-05, 0.09730830273409645, 0.00033268720959521929, 0.015704830511893621, 9.1238579116476307e-06, 4.276386309180986e-06, 0.73055780064394704,
|
||||
0.0023437500000000003, 1.649186628983317, 0.0, 551.02737454317594, 0.036388255194337027, 0.14755177750730003, 0.0079147297172880542, 6.7010097078838143e-05, 0.097137742178320413, 0.00032564427512273003, 0.016184087481775244, 8.9511045009435544e-06, 3.920930082837229e-06, 0.73080613670853101,
|
||||
0.0025000000000000001, 1.6816302830866485, 0.0, 562.26574585624519, 0.035686196682165362, 0.14594382651800619, 0.008408794363075154, 7.5959233412481775e-05, 0.096791645860675735, 0.00031260795036227749, 0.017154769520197261, 8.6235513519761395e-06, 3.2783181873256139e-06, 0.73130049468473157,
|
||||
0.0026562499999999998, 1.7139362902800928, 0.0, 573.47580763145925, 0.035013510505857867, 0.14429942537453577, 0.0089214974120157969, 8.6870975950036701e-05, 0.096435598169037101, 0.00030085326287301954, 0.018149960839773709, 8.3178275255642849e-06, 2.7169954423700837e-06, 0.73179475914284664,
|
||||
0.0028124999999999999, 1.7461190244735298, 0.0, 584.66194658390236, 0.034368126841901096, 0.14261754589934345, 0.009452821713950817, 0.00010006844167654812, 0.096067795624669453, 0.00029037926731443399, 0.019172854571855569, 8.032367339356565e-06, 2.2328500160504652e-06, 0.73228826926383439,
|
||||
0.00296875, 1.7781916424069992, 0.0, 595.82804094322921, 0.033748181396850346, 0.1408971697491517, 0.010002754920281546, 0.00011590017732681164, 0.09568623347943675, 0.00028118467689501446, 0.020226882243347712, 7.7655379864953533e-06, 1.8203493803043482e-06, 0.73278028886619351,
|
||||
0.0031250000000000002, 1.810166140262403, 0.0, 606.97747116410756, 0.033151990858033054, 0.13913730647082775, 0.010571280144398253, 0.00013473777271174304, 0.095288705195393078, 0.00027327198812300362, 0.021315695067491439, 7.5157124005475288e-06, 1.4730767618284236e-06, 0.73327001457189234,
|
||||
0.0034375, 1.8738818736999685, 0.0, 629.23653092793597, 0.032024603866416854, 0.1355300022428553, 0.011752834438078853, 0.00018210864654953621, 0.09444675346868131, 0.00026140723190610262, 0.023587315401289135, 7.0610986814822902e-06, 9.5748068164682237e-07, 0.73423155999127676,
|
||||
0.0037499999999999999, 1.9373314943149011, 0.0, 651.46361640803002, 0.030975597013851518, 0.13176122279648544, 0.013006103315731519, 0.00024509997900544716, 0.093521332129548815, 0.00025491285770891939, 0.026027020077482688, 6.6594760539051316e-06, 6.0938941147233137e-07, 0.73517703997857187,
|
||||
0.0040625000000000001, 2.0005783555370971, 0.0, 673.67272912191231, 0.029996148815042183, 0.12782654491960591, 0.014329829237344988, 0.00032645973010444671, 0.092493568028194556, 0.00025430264482690447, 0.028662642432624504, 6.3030897808461694e-06, 3.8359899980217317e-07, 0.73609996631851804,
|
||||
0.0043750000000000004, 2.0636667749571465, 0.0, 695.87013659085244, 0.029078953647048329, 0.12372400405283979, 0.015721863090425274, 0.0004286695134815173, 0.091344099199118012, 0.00026018442896084704, 0.031521103969217354, 5.9850361651694236e-06, 2.4272412675207323e-07, 0.73699384798566525,
|
||||
0.0046875000000000007, 2.1266185593389437, 0.0, 718.05338750870067, 0.028217978668169177, 0.11945489258631654, 0.017178862130221254, 0.00055378240059798117, 0.090054128006074888, 0.00027325546858366208, 0.034626665545726486, 5.6992591132743252e-06, 1.581936898356276e-07, 0.73785255640967606,
|
||||
0.0050000000000000001, 2.1894293763393011, 0.0, 740.2103738128842, 0.027408268743315808, 0.11502454323744889, 0.018696005195040659, 0.00070328562248294366, 0.088606642019538134, 0.00029426267561980738, 0.037999025394684853, 5.4403613536733492e-06, 1.0958400287052758e-07, 0.73867068590982832,
|
||||
0.0053124999999999995, 2.2520654297803713, 0.0, 762.31858005490119, 0.02664578318941992, 0.1104430343204082, 0.020266748231417109, 0.00087799660158058117, 0.08698772485928942, 0.00032394439659706118, 0.041651386050612804, 5.2034845185692741e-06, 8.312900625001195e-08, 0.73944387892657004,
|
||||
0.0056249999999999998, 2.3144610002355437, 0.0, 784.34468843500224, 0.02592725216762683, 0.10572573817857504, 0.021882651057774656, 0.0010779947159006184, 0.085187856467049863, 0.00036296184225401802, 0.045588658308231847, 4.9842528934373925e-06, 7.0023022296738834e-08, 0.74016908515429825,
|
||||
0.0059375000000000001, 2.3765174196556749, 0.0, 806.24469975107024, 0.025250044620134825, 0.10089362956620179, 0.023533307866998726, 0.0013025877825176032, 0.083203084169083938, 0.00041182576857203316, 0.0498059944894646, 4.778768268723098e-06, 6.4883975453926574e-08, 0.74084472670491719,
|
||||
0.0062500000000000003, 2.4381039401860471, 0.0, 827.96469137862289, 0.024612043385895867, 0.095973277504531926, 0.025206409185342702, 0.0015503116598862407, 0.081035937235312758, 0.0004708245510941593, 0.054287841594799699, 4.5836407068225585e-06, 6.4538688237375213e-08, 0.74147075008963759,
|
||||
0.0065625000000000006, 2.4990607952114243, 0.0, 849.44226818159473, 0.024011526247864061, 0.090996465100632459, 0.026887952654855728, 0.0018189625911497532, 0.078695964232987442, 0.00053996137624467554, 0.059007674088577725, 4.3960375414082949e-06, 6.7153590356037133e-08, 0.74204855676442039,
|
||||
0.006875, 2.5592044822324955, 0.0, 870.60867978835586, 0.023447054094758519, 0.085999414162341012, 0.028562604612444024, 0.0021056632269278387, 0.076199798018951173, 0.00061890940626147721, 0.0639285053954778, 4.2137318113574372e-06, 7.1661463498181152e-08, 0.74258081978432189,
|
||||
0.0071874999999999994, 2.6183350388891853, 0.0, 891.39149037700338, 0.022917368887722476, 0.08102163490437253, 0.03021419658772476, 0.0024069631502666791, 0.07357069865444589, 0.0007069933554502974, 0.069004192782978549, 4.0351326617051671e-06, 7.7410243332051974e-08, 0.74307120802185633,
|
||||
0.0074999999999999997, 2.6762447930599311, 0.0, 911.71760952284274, 0.022421304760803614, 0.076104467258991754, 0.031826322706804154, 0.0027189724573240944, 0.07083758464612494, 0.00080320337768780394, 0.07418145366008827, 3.8592843149298077e-06, 8.3963107859722732e-08, 0.7435240526455561,
|
||||
0.0078125, 2.7327278765667096, 0.0, 931.51643869922214, 0.02195771530893641, 0.071289423478131525, 0.033382989504822387, 0.0030375229374623208, 0.068033628248345301, 0.00090624268876861075, 0.079402420005544191, 3.6858265939761133e-06, 9.0993907292173633e-08, 0.74394399631642438,
|
||||
0.0081250000000000003, 2.7875896600911734, 0.0, 950.72286783165828, 0.021525419180749787, 0.066616471233825136, 0.034869261144200331, 0.003358346856040347, 0.065194547946479608, 0.0010146048343265225, 0.084607488876554005, 3.5149174083348669e-06, 9.8238511780089296e-08, 0.74433566595265388,
|
||||
0.0084375000000000006, 2.8406552912252527, 0.0, 969.27987372734071, 0.021123164678603455, 0.062122407337437353, 0.036271843006176696, 0.0036772598110309963, 0.062356768945710281, 0.0011266713501429568, 0.089738195163302434, 3.3471245469737457e-06, 1.0547636761910983e-07, 0.74470340178528471,
|
||||
0.0087500000000000008, 2.8917766283270305, 0.0, 987.14052346462415, 0.020749612548838517, 0.057839460367184806, 0.037579554629922803, 0.0039903327660426756, 0.059555632582767415, 0.0012408171264082361, 0.094739842986197975, 3.1832990668471412e-06, 1.1252641368881989e-07, 0.7450510637159955,
|
||||
0.0090625000000000011, 2.9408370931846632, 0.0, 1004.269260457385, 0.020403334761148008, 0.053794229419692002, 0.038783657885701379, 0.0042940396419784308, 0.05682381730440763, 0.0013555100295202318, 0.099563680836768712, 3.0244446568036932e-06, 1.1924808205517762e-07, 0.74538192118919278,
|
||||
0.0093750000000000014, 2.9877548719052176, 0.0, 1020.6426482824444, 0.020082821888668174, 0.0500070222457887, 0.039878024348127421, 0.0045853703445360309, 0.054190093175386631, 0.0014693934615056913, 0.10416847900573445, 2.8715953360676582e-06, 1.2554232457989017e-07, 0.74569862028126033,
|
||||
0.0096875000000000017, 3.0324841423536464, 0.0, 1036.2495273330903, 0.019786497903487101, 0.046491606787698397, 0.040859144892451266, 0.0048619030573596577, 0.05167847956286125, 0.0015813436793500131, 0.10852145265848231, 2.7257132216741523e-06, 1.3135039055524564e-07, 0.74600321229818489,
|
||||
0.01, 3.0750115825610838, 0.0, 1051.0896014964551, 0.019512759111402309, 0.043255343040691105, 0.041726001335765817, 0.0051218328521915237, 0.049307822331262859, 0.0016904962575678343, 0.11259855569935508, 2.5876183584249936e-06, 1.3664997819757951e-07, 0.74629722421482925,
|
||||
0.010312499999999999, 3.11535301427014, 0.0, 1065.1721525504715, 0.019260002167972263, 0.040299633507077132, 0.042479828108970608, 0.0053639627326573626, 0.047091754767833567, 0.001796246793218038, 0.11638422550391404, 2.4579424955501609e-06, 1.4144913992524631e-07, 0.74658174919469378,
|
||||
0.010624999999999999, 3.1535489700706965, 0.0, 1078.5144535493087, 0.0190266513148971, 0.0376206092937851, 0.043123798280207605, 0.0055876628713959955, 0.045038978769187187, 0.001898231386839455, 0.11987069667391978, 2.3371090998850183e-06, 1.4577909441035289e-07, 0.74685753983647063,
|
||||
0.010937499999999999, 3.1896596323915083, 0.0, 1091.1400223706735, 0.018811183113064244, 0.035209964601790759, 0.043662667834899423, 0.0057928049615978867, 0.04315378697576723, 0.0019962961804624712, 0.12305701344687302, 2.2253354394904846e-06, 1.4968715272734111e-07, 0.74712509097601709,
|
||||
0.01125, 3.2237594931880125, 0.0, 1103.0768208563923, 0.018612147891077773, 0.033055858956114757, 0.044102407586059433, 0.0059796788274059437, 0.041436742905903844, 0.0020904704866516704, 0.12594786175562775, 2.1226489696346097e-06, 1.5323039844551754e-07, 0.74738470360286846,
|
||||
0.011875, 3.28621920176372, 0.0, 1124.9858881210625, 0.018258301655829839, 0.029489208121829761, 0.044703122821667503, 0.0062990782112699274, 0.038512897896404691, 0.0022669788711759844, 0.1308501298760118, 1.9445363068529897e-06, 1.5936985622281274e-07, 0.74787648029547715,
|
||||
0.012500000000000001, 3.3423250874493977, 0.0, 1144.7191268759357, 0.017951735887798997, 0.026729733049859174, 0.045001167682907885, 0.0065576613551396332, 0.036144381106569069, 0.0024305665832510125, 0.13479778771866932, 1.7968459720418475e-06, 1.6462288631940015e-07, 0.74833674103474557,
|
||||
0.013125000000000001, 3.392890479310831, 0.0, 1162.5586818916361, 0.01768413784818534, 0.024640503690519778, 0.045055454572821577, 0.0067637466812223946, 0.034258093034429664, 0.0025829037141257105, 0.13792915401592698, 1.6756352706447983e-06, 1.692234284146551e-07, 0.74876829943225498,
|
||||
0.01375, 3.4386711709082665, 0.0, 1178.7645429631445, 0.017448655290296523, 0.023089983830755677, 0.04492093618024829, 0.0069264183272975677, 0.032775299758144451, 0.0027255475922418394, 0.14038614310300315, 1.5766468143626216e-06, 1.7332556874546244e-07, 0.74917392123592597,
|
||||
0.014999999999999999, 3.5179638092096526, 0.0, 1206.9789858069985, 0.017055310271066184, 0.021256604583549547, 0.044235697600434915, 0.0071468858431060428, 0.030801160232313291, 0.0029844061057203003, 0.14366475538710355, 1.4325268044194548e-06, 1.8029019136917948e-07, 0.74990887743077661,
|
||||
0.016250000000000001, 3.5865216443571466, 0.0, 1231.493886039251, 0.016729247027261446, 0.02036484772238752, 0.04327377118918381, 0.0072803616286948071, 0.029554629094373321, 0.0032184567784231347, 0.14573667886909827, 1.3303326241899916e-06, 1.8559291747713372e-07, 0.75056973879229749,
|
||||
0.017500000000000002, 3.6470800852660963, 0.0, 1253.2432278638771, 0.016451431886482629, 0.019992936314739244, 0.042200159692162433, 0.0073579572991934209, 0.028742365494778165, 0.0034319249750364507, 0.14709913326412169, 1.2544153473822669e-06, 1.8923073678069309e-07, 0.75117407931388458,
|
||||
0.018750000000000003, 3.7014649995711095, 0.0, 1272.850084961646, 0.016209689668535841, 0.01988838042202961, 0.041108446815950446, 0.0074000801671185463, 0.028180889381473131, 0.0036278344244107638, 0.14805896497045493, 1.1950687549656412e-06, 1.9128190188670375e-07, 0.7517340174679058,
|
||||
0.02, 3.7508682517284484, 0.0, 1290.7215014854382, 0.015996170013038796, 0.019908617048803399, 0.040047105333319427, 0.0074192449901002927, 0.02776181497431883, 0.0038084286050391581, 0.14879565637069539, 1.1465226206518967e-06, 1.919159076992804e-07, 0.75225779423919514,
|
||||
0.022499999999999999, 3.8371057521605501, 0.0, 1322.0543194646259, 0.015636633747582146, 0.020086592596970144, 0.038094098578014435, 0.0074138101950741147, 0.027158289822037964, 0.0041275608237253195, 0.14990977635567571, 1.0707509470126316e-06, 1.8982437590651539e-07, 0.75320861105317938,
|
||||
0.025000000000000001, 3.9126626287866464, 0.0, 1349.6171542052512, 0.01533465596579024, 0.02026344075955579, 0.036358660993062432, 0.0073778879749141994, 0.026669867599468915, 0.0044099557394702464, 0.15085236577623293, 1.0102497049010806e-06, 1.8456784324415256e-07, 0.7540666263397473,
|
||||
0.0275, 3.9798725042410692, 0.0, 1374.2210882607164, 0.015075676712795059, 0.020401594551612705, 0.034814931383469035, 0.0073240294224999102, 0.026245125830692873, 0.0046621993414816655, 0.15170200556272714, 9.6001774807016982e-07, 1.774055417587224e-07, 0.75484897648422689,
|
||||
0.029999999999999999, 4.0403376338592292, 0.0, 1396.4251603667844, 0.014850050945369802, 0.020499706226795804, 0.033432304527360179, 0.0072591270718363318, 0.02586415613810801, 0.0048890378567839291, 0.15248680046137517, 9.17289910094891e-07, 1.692595633611204e-07, 0.75556778116826706,
|
||||
0.032500000000000001, 4.0952231127526098, 0.0, 1416.6373149742453, 0.014651015510334611, 0.020564054854166413, 0.03218454416922327, 0.0071872915812309897, 0.02551738060680343, 0.0050941120328999454, 0.15321933040517363, 8.8032050009584686e-07, 1.6075509842945883e-07, 0.75623224527490374,
|
||||
0.035000000000000003, 4.145400942028739, 0.0, 1435.1638771913692, 0.014473664369745684, 0.020601163908784376, 0.031050728714631722, 0.0071111682497160857, 0.025198988700246647, 0.0052802902357868067, 0.15390701629875483, 8.4791298536602523e-07, 1.5229467388715945e-07, 0.7568496436844202,
|
||||
0.037500000000000006, 4.1915218027759336, 0.0, 1452.2343224600916, 0.014314398132908402, 0.020616289180696471, 0.030014414018098321, 0.0070325237892494173, 0.02490494733673047, 0.0054498035027915224, 0.15455515334318415, 8.1921480465585586e-07, 1.441267847423665e-07, 0.75742590548766031,
|
||||
0.040000000000000001, 4.2340362608262607, 0.0, 1468.0087260135808, 0.014170659492247334, 0.020613337758373498, 0.029062665721958841, 0.0069525305148237845, 0.024632489723221254, 0.005604225847986863, 0.15516781004816585, 7.9362261547137351e-07, 1.3640274536075915e-07, 0.75796601036010924,
|
||||
0.044999999999999998, 4.3089262225017322, 0.0, 1495.9041002166505, 0.013924361084542135, 0.020563690230259269, 0.027387838784122473, 0.0067934284736126567, 0.024150007247615627, 0.0058705786049609871, 0.15628761476131464, 7.5042497796446614e-07, 1.2267717759638943e-07, 0.75894596879595877,
|
||||
0.050000000000000003, 4.3750990174984574, 0.0, 1520.6391899298285, 0.013713749351517975, 0.020477663464660491, 0.025926099663163671, 0.0066364165272009036, 0.023720442058939927, 0.0060989171680867335, 0.15731243104182085, 7.1409070249108177e-07, 1.1078464566411887e-07, 0.75982720520077918,
|
||||
0.055, 4.4342486747641372, 0.0, 1542.8178767805855, 0.013530811707976568, 0.020366513002696977, 0.024635293141860255, 0.0064835708982953957, 0.023333698059271515, 0.0062962256761966958, 0.15825739318840071, 6.8294344110401627e-07, 1.0057781698055748e-07, 0.76062652251202056,
|
||||
0.059999999999999998, 4.487620818725726, 0.0, 1562.8855011832432, 0.013369881998732536, 0.020238015948446434, 0.023484523366654415, 0.006335997357619385, 0.022982331093172197, 0.0064678495809789441, 0.15913395682931977, 6.5583367357684426e-07, 9.1832770531251466e-08, 0.76135657815736468,
|
||||
0.065000000000000002, 4.536136054457435, 0.0, 1581.1721967280828, 0.013226883044647208, 0.020097634972097073, 0.022450756123524988, 0.006194249531091778, 0.022660813821617269, 0.0066178823503887799, 0.15995082858357754, 6.3195378417743255e-07, 8.4326111035432198e-08, 0.76202711833780734,
|
||||
0.070000000000000007, 4.5804167920585144, 0.0, 1597.9027995517524, 0.013099009708497216, 0.019949087522667042, 0.021516794653382736, 0.0060585697136750685, 0.022365338859782209, 0.006749225615690497, 0.16071439409632779, 6.107496558573882e-07, 7.7868334494245088e-08, 0.76264590092048445,
|
||||
0.080000000000000002, 4.6568049407830161, 0.0, 1626.8876671619557, 0.012884133405585385, 0.01963798493645004, 0.019915158801117203, 0.0058086614053305978, 0.021851681441759613, 0.0069608782811772232, 0.16208192630205923, 5.7540737198183208e-07, 6.7625304634564264e-08, 0.76374306579942941,
|
||||
0.089999999999999997, 4.7233266010065815, 0.0, 1652.2177074545993, 0.012702672987886701, 0.019318095908148012, 0.018548336926072599, 0.005578388525347742, 0.021399713334836527, 0.0071289463107919917, 0.16331517530594022, 5.4583682925666041e-07, 5.9651117137481438e-08, 0.76471073820091662,
|
||||
0.10000000000000001, 4.7819879167539012, 0.0, 1674.623528997384, 0.012546843503525813, 0.018997089082973966, 0.017365863121211148, 0.005366225972495811, 0.020997188007227656, 0.0072630639335141186, 0.16443677852987854, 5.2063657361348091e-07, 5.3324726708369539e-08, 0.7655732173913985,
|
||||
0.1125, 4.8458846136798677, 0.0, 1699.113987678483, 0.012381399607317616, 0.018601914725626851, 0.016099331954662337, 0.0051253079881243583, 0.020554444868757502, 0.0073921081479736807, 0.16569922252954525, 4.9407833860270814e-07, 4.7139158425297513e-08, 0.76652712856781302,
|
||||
0.125, 4.9022114999016742, 0.0, 1720.766449899889, 0.012239132615208127, 0.018215733726538209, 0.015006462488091286, 0.0049057986500906803, 0.020160136252165149, 0.0074900540761098202, 0.1668456613543513, 4.7142845077981063e-07, 4.2259673056043645e-08, 0.7673756397645296,
|
||||
0.13750000000000001, 4.952404515209631, 0.0, 1740.1091565942306, 0.012115085014650074, 0.017841463726429942, 0.014052748732641372, 0.0047051672385276825, 0.019805364883523118, 0.0075638310785423402, 0.16789420353151857, 4.5184913838312905e-07, 3.8330942737441967e-08, 0.76813673062873578,
|
||||
0.14999999999999999, 4.997460876929595, 0.0, 1757.5092594829609, 0.01200585459958812, 0.01748124081548354, 0.013213922911446671, 0.0045214690224826583, 0.019483866710156676, 0.0076184600072513554, 0.16885744761808016, 4.3476804113197558e-07, 3.5116573207116287e-08, 0.7688231230304845,
|
||||
0.17499999999999999, 5.072689853350516, 0.0, 1786.6824783499731, 0.011827801163008753, 0.016815461949693578, 0.011837734550161978, 0.0042050208090320378, 0.018941193945063096, 0.0076811658646804681, 0.17052510336016613, 4.0730595558924694e-07, 3.0336901019804597e-08, 0.76999388187834605,
|
||||
0.20000000000000001, 5.1366072508587877, 0.0, 1811.5520287989232, 0.011680618332477178, 0.016194433587030602, 0.010706374696248794, 0.0039301345096499872, 0.018473731265995157, 0.0077055564964089553, 0.17199245214651074, 3.8513845889647155e-07, 2.6808344379280844e-08, 0.77099690535135235,
|
||||
0.22500000000000001, 5.1918143675350601, 0.0, 1833.092185627999, 0.011556409589368197, 0.015616106460172821, 0.0097591337932990893, 0.0036891306279326569, 0.018064934156002632, 0.00770334911853616, 0.17329847863921793, 3.6696170847313683e-07, 2.4112837984919244e-08, 0.77186847613029219,
|
||||
0.25, 5.2400880287066576, 0.0, 1851.9682436321493, 0.011449945045541364, 0.015078815046786417, 0.0089556715758369685, 0.0034764411846958604, 0.017703278210038555, 0.0076825420342551565, 0.17447013812238635, 3.5190485697127262e-07, 2.1999542441071656e-08, 0.77263273992160131,
|
||||
0.30000000000000004, 5.3172743513949126, 0.0, 1882.2691597324165, 0.011283731951344134, 0.01414459176918164, 0.007710862665768905, 0.0031310814890169515, 0.01711738837796644, 0.0076069336859202127, 0.17641392962028557, 3.2968250219848819e-07, 1.9038944739991297e-08, 0.77387486367041336,
|
||||
0.35000000000000003, 5.3806102532663722, 0.0, 1907.2089755693894, 0.011150906367672644, 0.013316403421880681, 0.0067377946354104318, 0.0028462765351921107, 0.016629065097087604, 0.0075044036158326806, 0.1780673622603447, 3.1354365952247319e-07, 1.6966695194166813e-08, 0.77489836392389699,
|
||||
0.40000000000000002, 5.4337306807689174, 0.0, 1928.1498678351143, 0.011041891915105802, 0.012586168282700079, 0.0059635859257583584, 0.0026090823405774681, 0.016213377315892414, 0.0073896403962374043, 0.17949005334423374, 3.0182224367370351e-07, 1.546227961858461e-08, 0.7757477751100772,
|
||||
0.48999999999999999, 5.5066822318678286, 0.0, 1956.5973504190044, 0.010895607723298471, 0.011639955745000787, 0.0050390242609340222, 0.0023094371183325483, 0.01562781235938656, 0.0072158754689705265, 0.18140190450334964, 2.894261077314583e-07, 1.3778889970194704e-08, 0.77676568733902829,
|
||||
0.5, 5.5066822477642656, 0.0, 1956.5973504190044, 0.010895607718282361, 0.011639956227841952, 0.0050390242584723204, 0.0023094371172043249, 0.015627812351751945, 0.0072158754654453733, 0.18140190441472986, 2.8942610759006568e-07, 1.3778889963463338e-08, 0.77676568695955683,
|
||||
|
601
test_problems/python/flame1/output_blessed.txt
Normal file
601
test_problems/python/flame1/output_blessed.txt
Normal file
|
|
@ -0,0 +1,601 @@
|
|||
|
||||
|
||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> burner <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
||||
|
||||
Mass Flux: 0.06 kg/m^2/s
|
||||
Temperature: 373 K
|
||||
Mass Fractions:
|
||||
H2 0.01151
|
||||
O2 0.1015
|
||||
AR 0.887
|
||||
|
||||
|
||||
|
||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> flame <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
||||
|
||||
Pressure: 5066 Pa
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
z u V T lambda H2
|
||||
-------------------------------------------------------------------------------
|
||||
0 1.142 0 373 0 0.01151
|
||||
0.02 2.118 0 728.9 0 0.009281
|
||||
0.04 3.094 0 1085 0 0.007052
|
||||
0.06 4.07 0 1441 0 0.004823
|
||||
0.08 5.046 0 1797 0 0.002594
|
||||
0.1 6.022 0 2153 0 0.000365
|
||||
0.15 6.022 0 2153 0 0.000365
|
||||
0.2 6.022 0 2153 0 0.000365
|
||||
0.4 6.022 0 2153 0 0.000365
|
||||
0.49 6.022 0 2153 0 0.000365
|
||||
0.5 6.022 0 2153 0 0.000365
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
z H O O2 OH H2O
|
||||
-------------------------------------------------------------------------------
|
||||
0 0 0 0.1015 0 0
|
||||
0.02 8.766e-06 9.121e-05 0.08352 0.0005736 0.01954
|
||||
0.04 1.753e-05 0.0001824 0.06553 0.001147 0.03907
|
||||
0.06 2.63e-05 0.0002736 0.04755 0.001721 0.05861
|
||||
0.08 3.506e-05 0.0003648 0.02957 0.002294 0.07815
|
||||
0.1 4.383e-05 0.000456 0.01159 0.002868 0.09769
|
||||
0.15 4.383e-05 0.000456 0.01159 0.002868 0.09769
|
||||
0.2 4.383e-05 0.000456 0.01159 0.002868 0.09769
|
||||
0.4 4.383e-05 0.000456 0.01159 0.002868 0.09769
|
||||
0.49 4.383e-05 0.000456 0.01159 0.002868 0.09769
|
||||
0.5 4.383e-05 0.000456 0.01159 0.002868 0.09769
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
z HO2 H2O2 AR
|
||||
-------------------------------------------------------------------------------
|
||||
0 0 0 0.887
|
||||
0.02 7.552e-08 2.788e-09 0.887
|
||||
0.04 1.51e-07 5.576e-09 0.887
|
||||
0.06 2.266e-07 8.364e-09 0.887
|
||||
0.08 3.021e-07 1.115e-08 0.887
|
||||
0.1 3.776e-07 1.394e-08 0.887
|
||||
0.15 3.776e-07 1.394e-08 0.887
|
||||
0.2 3.776e-07 1.394e-08 0.887
|
||||
0.4 3.776e-07 1.394e-08 0.887
|
||||
0.49 3.776e-07 1.394e-08 0.887
|
||||
0.5 3.776e-07 1.394e-08 0.887
|
||||
|
||||
|
||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> outlet <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
||||
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
z outlet dummy
|
||||
-------------------------------------------------------------------------------
|
||||
0 0
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 1 timesteps 7.5e-06 2.167
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 2 timesteps 8.438e-06 1.881
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 5 timesteps 1.602e-05 1.887
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 10 timesteps 5.773e-05 1.537
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 10 timesteps 0.0004161 0.6354
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [11] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0 1
|
||||
to resolve H HO2
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [13] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0 1
|
||||
to resolve H2O2 HO2
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [15] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0
|
||||
to resolve H2O2 HO2
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [16] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0
|
||||
to resolve HO2
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [17] point grid(s).
|
||||
|
||||
no new points needed in flame
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 1 timesteps 1.5e-05 5.052
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 2 timesteps 3.375e-05 5.046
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 5 timesteps 0.0001281 5.028
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 10 timesteps 0.0009237 4.839
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 10 timesteps 0.001665 4.741
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... failure.
|
||||
|
||||
..............................................................................
|
||||
Take 10 timesteps 0.003999 3.857
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [17] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0 1 2 3 4 5 6 7 8 9 10 11 12 13
|
||||
to resolve H H2 H2O H2O2 HO2 O O2 OH T u
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [31] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 22 23 26 27
|
||||
to resolve H H2 H2O H2O2 HO2 O O2 OH T u
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [54] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 47
|
||||
to resolve H H2 H2O H2O2 HO2 O O2 OH T u
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [74] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0 1 2 3 5 6 7 8 9 10 11 12 13 14 16 17 24 25 26 27 28 29 30 31 32 33
|
||||
to resolve H H2 H2O H2O2 HO2 O O2
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [100] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0 1 2
|
||||
to resolve H2O2 HO2
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [103] point grid(s).
|
||||
|
||||
##############################################################################
|
||||
Refining grid in flame.
|
||||
New points inserted after grid points 0
|
||||
to resolve HO2
|
||||
..............................................................................
|
||||
|
||||
Attempt Newton solution of steady-state problem... success.
|
||||
|
||||
Problem solved on [104] point grid(s).
|
||||
|
||||
no new points needed in flame
|
||||
Solution saved to file flame1.xml as solution solution.
|
||||
|
||||
|
||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> burner <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
||||
|
||||
Mass Flux: 0.06 kg/m^2/s
|
||||
Temperature: 373 K
|
||||
Mass Fractions:
|
||||
H2 0.01151
|
||||
O2 0.1015
|
||||
AR 0.887
|
||||
|
||||
|
||||
|
||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> flame <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
||||
|
||||
Pressure: 5066 Pa
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
z u V T lambda H2
|
||||
-------------------------------------------------------------------------------
|
||||
0 1.128 0 373 0 0.01039
|
||||
1.953e-05 1.132 0 374.6 0 0.01038
|
||||
3.906e-05 1.137 0 376.3 0 0.01037
|
||||
7.813e-05 1.147 0 379.5 0 0.01035
|
||||
0.0001172 1.157 0 382.8 0 0.01033
|
||||
0.0001563 1.166 0 386 0 0.01031
|
||||
0.0001953 1.176 0 389.2 0 0.01029
|
||||
0.0002344 1.185 0 392.4 0 0.01027
|
||||
0.0003125 1.204 0 398.7 0 0.01023
|
||||
0.0003906 1.222 0 405 0 0.01019
|
||||
0.0004687 1.241 0 411.2 0 0.01015
|
||||
0.0005469 1.259 0 417.4 0 0.01011
|
||||
0.000625 1.277 0 423.5 0 0.01007
|
||||
0.0007813 1.313 0 435.6 0 0.009985
|
||||
0.0008594 1.33 0 441.6 0 0.009942
|
||||
0.0009375 1.348 0 447.5 0 0.009899
|
||||
0.001016 1.365 0 453.4 0 0.009855
|
||||
0.001094 1.382 0 459.3 0 0.00981
|
||||
0.001172 1.4 0 465.2 0 0.009766
|
||||
0.00125 1.417 0 471 0 0.009721
|
||||
0.001328 1.434 0 476.9 0 0.009675
|
||||
0.001406 1.451 0 482.7 0 0.009629
|
||||
0.001484 1.467 0 488.4 0 0.009582
|
||||
0.001563 1.484 0 494.2 0 0.009535
|
||||
0.001641 1.501 0 499.9 0 0.009488
|
||||
0.001719 1.518 0 505.7 0 0.00944
|
||||
0.001797 1.534 0 511.4 0 0.009392
|
||||
0.001875 1.551 0 517.1 0 0.009343
|
||||
0.001953 1.567 0 522.8 0 0.009293
|
||||
0.002031 1.584 0 528.4 0 0.009244
|
||||
0.002109 1.6 0 534.1 0 0.009193
|
||||
0.002188 1.617 0 539.8 0 0.009142
|
||||
0.002266 1.633 0 545.4 0 0.009091
|
||||
0.002344 1.649 0 551 0 0.009039
|
||||
0.0025 1.682 0 562.3 0 0.008934
|
||||
0.002656 1.714 0 573.5 0 0.008827
|
||||
0.002812 1.746 0 584.7 0 0.008718
|
||||
0.002969 1.778 0 595.8 0 0.008607
|
||||
0.003125 1.81 0 607 0 0.008493
|
||||
0.003438 1.874 0 629.2 0 0.008261
|
||||
0.00375 1.937 0 651.5 0 0.00802
|
||||
0.004063 2.001 0 673.7 0 0.00777
|
||||
0.004375 2.064 0 695.9 0 0.00751
|
||||
0.004688 2.127 0 718.1 0 0.007242
|
||||
0.005 2.189 0 740.2 0 0.006964
|
||||
0.005312 2.252 0 762.3 0 0.006679
|
||||
0.005625 2.314 0 784.3 0 0.006386
|
||||
0.005938 2.377 0 806.2 0 0.006088
|
||||
0.00625 2.438 0 828 0 0.005785
|
||||
0.006563 2.499 0 849.4 0 0.00548
|
||||
0.006875 2.559 0 870.6 0 0.005175
|
||||
0.007187 2.618 0 891.4 0 0.004872
|
||||
0.0075 2.676 0 911.7 0 0.004573
|
||||
0.007812 2.733 0 931.5 0 0.004281
|
||||
0.008125 2.788 0 950.7 0 0.003998
|
||||
0.008438 2.841 0 969.3 0 0.003727
|
||||
0.00875 2.892 0 987.1 0 0.003469
|
||||
0.009063 2.941 0 1004 0 0.003225
|
||||
0.009375 2.988 0 1021 0 0.002997
|
||||
0.009688 3.032 0 1036 0 0.002785
|
||||
0.01 3.075 0 1051 0 0.002591
|
||||
0.01031 3.115 0 1065 0 0.002413
|
||||
0.01062 3.154 0 1079 0 0.002252
|
||||
0.01094 3.19 0 1091 0 0.002107
|
||||
0.01125 3.224 0 1103 0 0.001978
|
||||
0.01188 3.286 0 1125 0 0.001763
|
||||
0.0125 3.342 0 1145 0 0.001598
|
||||
0.01313 3.393 0 1163 0 0.001472
|
||||
0.01375 3.439 0 1179 0 0.001379
|
||||
0.015 3.518 0 1207 0 0.001268
|
||||
0.01625 3.587 0 1231 0 0.001214
|
||||
0.0175 3.647 0 1253 0 0.001191
|
||||
0.01875 3.701 0 1273 0 0.001184
|
||||
0.02 3.751 0 1291 0 0.001184
|
||||
0.0225 3.837 0 1322 0 0.001194
|
||||
0.025 3.913 0 1350 0 0.001203
|
||||
0.0275 3.98 0 1374 0 0.00121
|
||||
0.03 4.04 0 1396 0 0.001214
|
||||
0.0325 4.095 0 1417 0 0.001217
|
||||
0.035 4.145 0 1435 0 0.001218
|
||||
0.0375 4.192 0 1452 0 0.001218
|
||||
0.04 4.234 0 1468 0 0.001217
|
||||
0.045 4.309 0 1496 0 0.001213
|
||||
0.05 4.375 0 1521 0 0.001206
|
||||
0.055 4.434 0 1543 0 0.001198
|
||||
0.06 4.488 0 1563 0 0.00119
|
||||
0.065 4.536 0 1581 0 0.00118
|
||||
0.07 4.58 0 1598 0 0.001171
|
||||
0.08 4.657 0 1627 0 0.001151
|
||||
0.09 4.723 0 1652 0 0.001131
|
||||
0.1 4.782 0 1675 0 0.001111
|
||||
0.1125 4.846 0 1699 0 0.001086
|
||||
0.125 4.902 0 1721 0 0.001062
|
||||
0.1375 4.952 0 1740 0 0.00104
|
||||
0.15 4.997 0 1758 0 0.001018
|
||||
0.175 5.073 0 1787 0 0.0009774
|
||||
0.2 5.137 0 1812 0 0.0009401
|
||||
0.225 5.192 0 1833 0 0.0009055
|
||||
0.25 5.24 0 1852 0 0.0008735
|
||||
0.3 5.317 0 1882 0 0.000818
|
||||
0.35 5.381 0 1907 0 0.0007691
|
||||
0.4 5.434 0 1928 0 0.0007261
|
||||
0.49 5.507 0 1957 0 0.0006707
|
||||
0.5 5.507 0 1957 0 0.0006707
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
z H O O2 OH H2O
|
||||
-------------------------------------------------------------------------------
|
||||
0 9.141e-05 1.216e-05 0.1001 0.0002375 0.001841
|
||||
1.953e-05 9.19e-05 1.24e-05 0.1 0.0002424 0.001892
|
||||
3.906e-05 9.24e-05 1.264e-05 0.09998 0.000247 0.001943
|
||||
7.813e-05 9.347e-05 1.309e-05 0.09989 0.0002551 0.002047
|
||||
0.0001172 9.463e-05 1.35e-05 0.09979 0.0002619 0.002151
|
||||
0.0001563 9.586e-05 1.388e-05 0.09969 0.0002675 0.002257
|
||||
0.0001953 9.716e-05 1.422e-05 0.0996 0.000272 0.002364
|
||||
0.0002344 9.854e-05 1.453e-05 0.0995 0.0002755 0.002472
|
||||
0.0003125 0.0001015 1.507e-05 0.09932 0.0002799 0.002688
|
||||
0.0003906 0.0001047 1.553e-05 0.09913 0.0002818 0.002908
|
||||
0.0004687 0.0001081 1.591e-05 0.09895 0.0002815 0.003129
|
||||
0.0005469 0.0001118 1.624e-05 0.09877 0.0002798 0.003353
|
||||
0.000625 0.0001156 1.654e-05 0.09858 0.0002768 0.003578
|
||||
0.0007813 0.0001239 1.705e-05 0.09822 0.0002684 0.004029
|
||||
0.0008594 0.0001284 1.731e-05 0.09804 0.0002634 0.004258
|
||||
0.0009375 0.000133 1.757e-05 0.09786 0.0002581 0.004489
|
||||
0.001016 0.0001378 1.784e-05 0.09767 0.0002525 0.00472
|
||||
0.001094 0.0001427 1.814e-05 0.09749 0.0002468 0.004952
|
||||
0.001172 0.0001478 1.846e-05 0.09731 0.0002411 0.005185
|
||||
0.00125 0.0001531 1.882e-05 0.09712 0.0002354 0.00542
|
||||
0.001328 0.0001585 1.923e-05 0.09694 0.0002297 0.005656
|
||||
0.001406 0.0001641 1.968e-05 0.09675 0.0002241 0.005892
|
||||
0.001484 0.0001698 2.02e-05 0.09657 0.0002185 0.00613
|
||||
0.001563 0.0001757 2.078e-05 0.09638 0.0002132 0.00637
|
||||
0.001641 0.0001818 2.143e-05 0.0962 0.0002079 0.00661
|
||||
0.001719 0.0001879 2.218e-05 0.09601 0.0002028 0.006852
|
||||
0.001797 0.0001942 2.301e-05 0.09582 0.0001979 0.007096
|
||||
0.001875 0.0002007 2.396e-05 0.09563 0.0001931 0.007342
|
||||
0.001953 0.0002073 2.502e-05 0.09544 0.0001886 0.007589
|
||||
0.002031 0.000214 2.621e-05 0.09524 0.0001842 0.007839
|
||||
0.002109 0.0002209 2.755e-05 0.09505 0.0001799 0.00809
|
||||
0.002188 0.000228 2.905e-05 0.09485 0.0001759 0.008344
|
||||
0.002266 0.0002351 3.072e-05 0.09466 0.000172 0.008601
|
||||
0.002344 0.0002424 3.258e-05 0.09446 0.0001683 0.00886
|
||||
0.0025 0.0002574 3.691e-05 0.09405 0.0001615 0.009385
|
||||
0.002656 0.0002729 4.218e-05 0.09364 0.0001553 0.009922
|
||||
0.002812 0.0002889 4.855e-05 0.09322 0.0001498 0.01047
|
||||
0.002969 0.0003055 5.619e-05 0.09278 0.0001449 0.01104
|
||||
0.003125 0.0003227 6.528e-05 0.09233 0.0001407 0.01163
|
||||
0.003438 0.0003582 8.81e-05 0.09139 0.0001344 0.01285
|
||||
0.00375 0.0003958 0.0001184 0.09036 0.0001309 0.01416
|
||||
0.004063 0.0004355 0.0001575 0.08924 0.0001304 0.01557
|
||||
0.004375 0.0004772 0.0002065 0.08802 0.0001332 0.0171
|
||||
0.004688 0.0005207 0.0002664 0.08666 0.0001398 0.01876
|
||||
0.005 0.000566 0.0003379 0.08516 0.0001503 0.02056
|
||||
0.005312 0.0006128 0.0004214 0.0835 0.0001653 0.02251
|
||||
0.005625 0.0006609 0.0005168 0.08168 0.000185 0.02461
|
||||
0.005938 0.00071 0.0006238 0.07969 0.0002096 0.02686
|
||||
0.00625 0.0007597 0.0007417 0.07754 0.0002394 0.02924
|
||||
0.006563 0.0008096 0.0008694 0.07523 0.0002743 0.03176
|
||||
0.006875 0.0008594 0.001006 0.07278 0.0003142 0.03438
|
||||
0.007187 0.0009084 0.001149 0.07022 0.0003586 0.03708
|
||||
0.0075 0.0009562 0.001297 0.06757 0.0004072 0.03984
|
||||
0.007812 0.001002 0.001448 0.06485 0.0004592 0.04261
|
||||
0.008125 0.001046 0.0016 0.06211 0.0005138 0.04538
|
||||
0.008438 0.001088 0.001751 0.05938 0.0005703 0.04811
|
||||
0.00875 0.001127 0.001899 0.05669 0.0006278 0.05077
|
||||
0.009063 0.001162 0.002043 0.05407 0.0006856 0.05334
|
||||
0.009375 0.001195 0.002181 0.05155 0.0007429 0.05579
|
||||
0.009688 0.001224 0.002312 0.04914 0.0007992 0.0581
|
||||
0.01 0.001249 0.002435 0.04688 0.0008542 0.06027
|
||||
0.01031 0.001272 0.002549 0.04476 0.0009074 0.06227
|
||||
0.01062 0.001291 0.002655 0.04279 0.0009586 0.06412
|
||||
0.01094 0.001306 0.002751 0.04099 0.001008 0.06581
|
||||
0.01125 0.001319 0.002839 0.03935 0.001055 0.06734
|
||||
0.01188 0.001337 0.00299 0.03656 0.001144 0.06993
|
||||
0.0125 0.001345 0.003111 0.03429 0.001226 0.07201
|
||||
0.01313 0.001346 0.003207 0.03249 0.001302 0.07365
|
||||
0.01375 0.001341 0.003283 0.03107 0.001373 0.07493
|
||||
0.015 0.00132 0.003385 0.02917 0.001502 0.07661
|
||||
0.01625 0.00129 0.003445 0.02797 0.001619 0.07765
|
||||
0.0175 0.001257 0.003479 0.02718 0.001725 0.07832
|
||||
0.01875 0.001224 0.003497 0.02663 0.001822 0.07877
|
||||
0.02 0.001191 0.003503 0.02622 0.001912 0.07911
|
||||
0.0225 0.001132 0.003496 0.02562 0.002069 0.0796
|
||||
0.025 0.001079 0.003475 0.02513 0.002208 0.08001
|
||||
0.0275 0.001032 0.003446 0.0247 0.002332 0.08038
|
||||
0.03 0.0009902 0.003413 0.02432 0.002443 0.08072
|
||||
0.0325 0.0009524 0.003376 0.02397 0.002543 0.08104
|
||||
0.035 0.0009181 0.003337 0.02365 0.002634 0.08133
|
||||
0.0375 0.0008868 0.003298 0.02336 0.002717 0.08161
|
||||
0.04 0.000858 0.003258 0.02309 0.002792 0.08188
|
||||
0.045 0.0008075 0.00318 0.02261 0.002921 0.08236
|
||||
0.05 0.0007636 0.003102 0.02218 0.003031 0.08281
|
||||
0.055 0.0007248 0.003028 0.02179 0.003126 0.08322
|
||||
0.06 0.0006903 0.002956 0.02144 0.003208 0.0836
|
||||
0.065 0.0006593 0.002887 0.02113 0.003279 0.08395
|
||||
0.07 0.0006314 0.002822 0.02083 0.003342 0.08429
|
||||
0.08 0.0005835 0.002702 0.02033 0.003441 0.08488
|
||||
0.09 0.0005428 0.002591 0.01988 0.00352 0.08542
|
||||
0.1 0.0005076 0.00249 0.01948 0.003582 0.08591
|
||||
0.1125 0.00047 0.002375 0.01905 0.003641 0.08646
|
||||
0.125 0.0004376 0.002271 0.01866 0.003686 0.08696
|
||||
0.1375 0.0004094 0.002176 0.01832 0.003718 0.08742
|
||||
0.15 0.0003846 0.002089 0.018 0.003742 0.08785
|
||||
0.175 0.000344 0.00194 0.01748 0.003767 0.08858
|
||||
0.2 0.0003108 0.001811 0.01702 0.003774 0.08922
|
||||
0.225 0.0002829 0.001698 0.01663 0.003768 0.0898
|
||||
0.25 0.0002594 0.001598 0.01628 0.003755 0.09032
|
||||
0.3 0.000223 0.001437 0.01571 0.003712 0.09118
|
||||
0.35 0.0001946 0.001305 0.01525 0.003657 0.09191
|
||||
0.4 0.000172 0.001195 0.01485 0.003597 0.09254
|
||||
0.49 0.0001452 0.001056 0.01429 0.003508 0.09341
|
||||
0.5 0.0001452 0.001056 0.01429 0.003508 0.09341
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
z HO2 H2O2 AR
|
||||
-------------------------------------------------------------------------------
|
||||
0 1.75e-05 9.932e-06 0.8873
|
||||
1.953e-05 1.807e-05 1.026e-05 0.8873
|
||||
3.906e-05 1.841e-05 1.057e-05 0.8873
|
||||
7.813e-05 1.861e-05 1.116e-05 0.8873
|
||||
0.0001172 1.852e-05 1.169e-05 0.8873
|
||||
0.0001563 1.829e-05 1.217e-05 0.8873
|
||||
0.0001953 1.8e-05 1.259e-05 0.8873
|
||||
0.0002344 1.77e-05 1.296e-05 0.8873
|
||||
0.0003125 1.709e-05 1.353e-05 0.8873
|
||||
0.0003906 1.652e-05 1.391e-05 0.8873
|
||||
0.0004687 1.599e-05 1.412e-05 0.8873
|
||||
0.0005469 1.551e-05 1.418e-05 0.8873
|
||||
0.000625 1.505e-05 1.411e-05 0.8873
|
||||
0.0007813 1.421e-05 1.364e-05 0.8873
|
||||
0.0008594 1.383e-05 1.329e-05 0.8873
|
||||
0.0009375 1.347e-05 1.289e-05 0.8873
|
||||
0.001016 1.312e-05 1.244e-05 0.8873
|
||||
0.001094 1.279e-05 1.195e-05 0.8873
|
||||
0.001172 1.247e-05 1.143e-05 0.8873
|
||||
0.00125 1.217e-05 1.089e-05 0.8873
|
||||
0.001328 1.188e-05 1.034e-05 0.8873
|
||||
0.001406 1.16e-05 9.784e-06 0.8873
|
||||
0.001484 1.133e-05 9.23e-06 0.8873
|
||||
0.001563 1.107e-05 8.68e-06 0.8873
|
||||
0.001641 1.083e-05 8.139e-06 0.8873
|
||||
0.001719 1.059e-05 7.61e-06 0.8873
|
||||
0.001797 1.036e-05 7.096e-06 0.8873
|
||||
0.001875 1.014e-05 6.6e-06 0.8873
|
||||
0.001953 9.928e-06 6.122e-06 0.8872
|
||||
0.002031 9.724e-06 5.664e-06 0.8872
|
||||
0.002109 9.527e-06 5.228e-06 0.8872
|
||||
0.002188 9.338e-06 4.814e-06 0.8872
|
||||
0.002266 9.155e-06 4.422e-06 0.8872
|
||||
0.002344 8.978e-06 4.053e-06 0.8872
|
||||
0.0025 8.644e-06 3.386e-06 0.8872
|
||||
0.002656 8.331e-06 2.805e-06 0.8871
|
||||
0.002812 8.04e-06 2.303e-06 0.8871
|
||||
0.002969 7.767e-06 1.876e-06 0.8871
|
||||
0.003125 7.512e-06 1.517e-06 0.887
|
||||
0.003438 7.047e-06 9.848e-07 0.8869
|
||||
0.00375 6.637e-06 6.259e-07 0.8868
|
||||
0.004063 6.273e-06 3.934e-07 0.8867
|
||||
0.004375 5.949e-06 2.486e-07 0.8866
|
||||
0.004688 5.657e-06 1.618e-07 0.8864
|
||||
0.005 5.393e-06 1.12e-07 0.8863
|
||||
0.005312 5.152e-06 8.482e-08 0.8861
|
||||
0.005625 4.929e-06 7.137e-08 0.886
|
||||
0.005938 4.721e-06 6.606e-08 0.8858
|
||||
0.00625 4.524e-06 6.564e-08 0.8857
|
||||
0.006563 4.335e-06 6.824e-08 0.8856
|
||||
0.006875 4.152e-06 7.276e-08 0.8855
|
||||
0.007187 3.973e-06 7.854e-08 0.8854
|
||||
0.0075 3.797e-06 8.513e-08 0.8854
|
||||
0.007812 3.624e-06 9.22e-08 0.8853
|
||||
0.008125 3.454e-06 9.949e-08 0.8853
|
||||
0.008438 3.288e-06 1.068e-07 0.8854
|
||||
0.00875 3.126e-06 1.139e-07 0.8854
|
||||
0.009063 2.969e-06 1.206e-07 0.8855
|
||||
0.009375 2.818e-06 1.269e-07 0.8855
|
||||
0.009688 2.674e-06 1.328e-07 0.8856
|
||||
0.01 2.537e-06 1.381e-07 0.8857
|
||||
0.01031 2.41e-06 1.429e-07 0.8858
|
||||
0.01062 2.291e-06 1.472e-07 0.8859
|
||||
0.01094 2.18e-06 1.511e-07 0.886
|
||||
0.01125 2.079e-06 1.547e-07 0.8861
|
||||
0.01188 1.904e-06 1.608e-07 0.8863
|
||||
0.0125 1.759e-06 1.66e-07 0.8864
|
||||
0.01313 1.639e-06 1.706e-07 0.8865
|
||||
0.01375 1.542e-06 1.747e-07 0.8866
|
||||
0.015 1.4e-06 1.815e-07 0.8867
|
||||
0.01625 1.299e-06 1.867e-07 0.8868
|
||||
0.0175 1.224e-06 1.902e-07 0.8868
|
||||
0.01875 1.165e-06 1.921e-07 0.8869
|
||||
0.02 1.117e-06 1.927e-07 0.8869
|
||||
0.0225 1.042e-06 1.903e-07 0.8869
|
||||
0.025 9.817e-07 1.848e-07 0.8869
|
||||
0.0275 9.32e-07 1.775e-07 0.8869
|
||||
0.03 8.896e-07 1.692e-07 0.8869
|
||||
0.0325 8.53e-07 1.605e-07 0.8869
|
||||
0.035 8.21e-07 1.52e-07 0.8869
|
||||
0.0375 7.926e-07 1.437e-07 0.8869
|
||||
0.04 7.673e-07 1.359e-07 0.8869
|
||||
0.045 7.246e-07 1.221e-07 0.8869
|
||||
0.05 6.887e-07 1.101e-07 0.8869
|
||||
0.055 6.58e-07 9.986e-08 0.8869
|
||||
0.06 6.312e-07 9.109e-08 0.8869
|
||||
0.065 6.077e-07 8.357e-08 0.8869
|
||||
0.07 5.869e-07 7.711e-08 0.8869
|
||||
0.08 5.521e-07 6.687e-08 0.8869
|
||||
0.09 5.231e-07 5.891e-08 0.8869
|
||||
0.1 4.984e-07 5.26e-08 0.8869
|
||||
0.1125 4.723e-07 4.644e-08 0.8869
|
||||
0.125 4.502e-07 4.159e-08 0.8869
|
||||
0.1375 4.311e-07 3.768e-08 0.8869
|
||||
0.15 4.144e-07 3.449e-08 0.8869
|
||||
0.175 3.876e-07 2.975e-08 0.8869
|
||||
0.2 3.661e-07 2.626e-08 0.8869
|
||||
0.225 3.484e-07 2.359e-08 0.8869
|
||||
0.25 3.338e-07 2.15e-08 0.8869
|
||||
0.3 3.122e-07 1.858e-08 0.8869
|
||||
0.35 2.965e-07 1.654e-08 0.8869
|
||||
0.4 2.851e-07 1.505e-08 0.8869
|
||||
0.49 2.73e-07 1.34e-08 0.8869
|
||||
0.5 2.73e-07 1.34e-08 0.8869
|
||||
|
||||
|
||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> outlet <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
||||
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
z outlet dummy
|
||||
-------------------------------------------------------------------------------
|
||||
0 0
|
||||
solution saved to flame1.csv
|
||||
87
test_problems/python/flame1/runtest
Executable file
87
test_problems/python/flame1/runtest
Executable file
|
|
@ -0,0 +1,87 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
#
|
||||
if test "$#" -ge "2" ; then
|
||||
echo "runtest ERROR: program requires one argument."
|
||||
echo " runtest PYTHON_CMD"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
BINDIR=../../../bin
|
||||
|
||||
|
||||
temp_success="1"
|
||||
/bin/rm -f output.txt diff_test.out csvCode.txt ct2ctml.log \
|
||||
flame1.xml h2o2.xml diff_csv.txt diff_out.txt flame1.csv
|
||||
|
||||
testName=flame1
|
||||
#################################################################
|
||||
#
|
||||
#################################################################
|
||||
#
|
||||
# Try to create a default python executable location if no
|
||||
# argument to runtest is supplied.
|
||||
#
|
||||
if test -z "$PYTHON_CMD" ; then
|
||||
if test -z "$PYTHONHOME" ; then
|
||||
PYTHON_CMDA=python
|
||||
else
|
||||
PYTHON_CMDA=$PYTHONHOME/bin/python
|
||||
fi
|
||||
else
|
||||
PYTHON_CMDA=$PYTHON_CMD
|
||||
fi
|
||||
FIRSTARG=$1
|
||||
PYTHON_CMDB=${FIRSTARG:=$PYTHON_CMDA}
|
||||
|
||||
#
|
||||
# Check to see whether the python executable exists in the
|
||||
# current user path
|
||||
#
|
||||
locThere=`which $PYTHON_CMDB 2>&1`
|
||||
isThere=$?
|
||||
if test "$isThere" != "0" ; then
|
||||
echo 'Can not find the python executable: ' $PYTHON_CMDB
|
||||
echo ' '
|
||||
echo $locThere
|
||||
exit 1
|
||||
fi
|
||||
#pVersion=`$PYTHON_CMDB -V 2>&1`
|
||||
|
||||
#################################################################
|
||||
#
|
||||
#################################################################
|
||||
|
||||
echo "Testing \"$PYTHON_CMDB flame1\" ... "
|
||||
$PYTHON_CMDB flame1.py > output.txt
|
||||
retnStat=$?
|
||||
if [ $retnStat != "0" ]
|
||||
then
|
||||
temp_success="0"
|
||||
echo "ERROR: flame1.py returned with bad status, $retnStat, check output"
|
||||
fi
|
||||
|
||||
diff -w output.txt output_blessed.txt > diff_out.txt
|
||||
retnStat_txt=$?
|
||||
|
||||
$BINDIR/csvdiff -a 1.0E-10 flame1_blessed.csv flame1.csv > diff_csv.txt
|
||||
retnStat_csv=$?
|
||||
|
||||
if test $retnStat_csv = "1"
|
||||
then
|
||||
echo " Successful test comparison on "`pwd`
|
||||
if [ $retnStat_txt != "0" ]
|
||||
then
|
||||
echo " But, text output files have differences. See diff_out.txt"
|
||||
fi
|
||||
else
|
||||
echo " Unsuccessful test comparison on "`pwd` " test"
|
||||
if test $retnStat_csv != "1"
|
||||
then
|
||||
echo " csv files are different - see diff_csv.txt"
|
||||
fi
|
||||
if test $retnStat_txt != "0"
|
||||
then
|
||||
echo " And, text output files have differences. See diff_out.txt"
|
||||
fi
|
||||
fi
|
||||
Loading…
Add table
Reference in a new issue