├── .gitattributes ├── .gitignore ├── README.md ├── SLComparisonWithCantera.pdf ├── SLComparisonWithChemkin.pdf ├── formatConvert ├── original_form │ ├── binaryDiff │ ├── speciesLambda │ ├── speciesMu │ └── thermoDiff ├── tran.out └── writetofoam.py ├── reactingDNS_equation.pdf ├── solvers └── reactingDNS │ ├── Make │ ├── files │ └── options │ ├── UEqn.H │ ├── Y-hEqn.H │ ├── Y-hEqn_DD.H │ ├── createFieldRefs.H │ ├── createFields.H │ ├── pEqn.H │ ├── reactingDNS.C │ ├── setRDeltaT.H │ └── transport │ ├── createDiffFields.H │ ├── createLambdaFields.H │ ├── createMuFields.H │ ├── createTDiffFields.H │ ├── getElementData.H │ ├── readBinaryDiff.H │ ├── readChemistryProperties.H │ ├── readSpeciesLambda.H │ ├── readSpeciesMu.H │ ├── readThermalDiff.H │ ├── readTranData.H │ └── updateTransProperties.H ├── tuts ├── 1D_H2_premixed_inletoutlet │ ├── 0 │ │ ├── H │ │ ├── H2 │ │ ├── H2O │ │ ├── H2O2 │ │ ├── HO2 │ │ ├── N2 │ │ ├── O │ │ ├── O2 │ │ ├── OH │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── Allrun_parallel │ ├── chemkin │ │ ├── chem.inp │ │ ├── senk.inp │ │ ├── senk.out │ │ ├── therm.dat │ │ └── transportProperties │ ├── constant │ │ ├── binaryDiff │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── g │ │ ├── momentumTransport │ │ ├── reactions │ │ ├── speciesLambda │ │ ├── speciesMu │ │ ├── thermo.compressibleGas │ │ ├── thermoDiff │ │ ├── thermophysicalProperties │ │ └── trandat │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── sampleDict │ │ ├── setFieldsDict │ │ └── topoSetDict └── 2D_syngas_premixed │ ├── 0.org │ ├── CO │ ├── H2 │ ├── N2 │ ├── O2 │ ├── T │ ├── U │ ├── Ydefault │ └── p │ ├── 1DFlame.dat │ ├── Allclean │ ├── Allrun │ ├── Allrun_parallel │ ├── chemkin │ ├── chem.inp │ ├── reactions │ ├── therm.dat │ ├── thermo.compressibleGas │ ├── trans.dat │ └── transportProperties │ ├── constant │ ├── CCMProperties │ ├── binaryDiff │ ├── chemistryProperties │ ├── combustionProperties │ ├── g │ ├── initialFlameProperties │ ├── momentumTransport │ ├── reactions │ ├── speciesLambda │ ├── speciesMu │ ├── thermo.compressibleGas │ ├── thermoDiff │ ├── thermophysicalProperties │ └── trandat │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── refineMeshDict │ ├── sampleDict │ ├── setFieldsDict │ └── topoSetDict └── utilities ├── .gitattributes:Zone.Identifier ├── .gitignore:Zone.Identifier ├── 1DFlameSin2Foam.C ├── 1DFlameSin2Foam.C:Zone.Identifier ├── 2D_syngas_premixed ├── 0.org │ ├── CO │ ├── CO:Zone.Identifier │ ├── H2 │ ├── H2:Zone.Identifier │ ├── N2 │ ├── N2:Zone.Identifier │ ├── O2 │ ├── O2:Zone.Identifier │ ├── T │ ├── T:Zone.Identifier │ ├── U │ ├── U:Zone.Identifier │ ├── Ydefault │ ├── Ydefault:Zone.Identifier │ ├── p │ └── p:Zone.Identifier ├── Allclean ├── Allclean:Zone.Identifier ├── chemkin │ ├── chem.inp │ ├── chem.inp:Zone.Identifier │ ├── reactions │ ├── reactions:Zone.Identifier │ ├── therm.dat │ ├── therm.dat:Zone.Identifier │ ├── thermo.compressibleGas │ ├── thermo.compressibleGas:Zone.Identifier │ ├── trans.dat │ ├── trans.dat:Zone.Identifier │ ├── transportProperties │ └── transportProperties:Zone.Identifier ├── circle-flameFront.PNG ├── circle-flameFront.PNG:Zone.Identifier ├── constant │ ├── 1DFlame.dat │ ├── 1DFlame.dat:Zone.Identifier │ ├── chemistryProperties │ ├── chemistryProperties:Zone.Identifier │ ├── combustionProperties │ ├── combustionProperties:Zone.Identifier │ ├── initialFlameProperties │ ├── initialFlameProperties:Zone.Identifier │ ├── momentumTransport │ ├── momentumTransport:Zone.Identifier │ ├── reactions │ ├── reactions:Zone.Identifier │ ├── thermo.compressibleGas │ ├── thermo.compressibleGas:Zone.Identifier │ ├── thermophysicalProperties │ └── thermophysicalProperties:Zone.Identifier ├── flameFront-withFluctuation.PNG ├── flameFront-withFluctuation.PNG:Zone.Identifier ├── system │ ├── blockMeshDict │ ├── blockMeshDict:Zone.Identifier │ ├── controlDict │ ├── controlDict:Zone.Identifier │ ├── decomposeParDict │ ├── decomposeParDict:Zone.Identifier │ ├── fvSchemes │ ├── fvSchemes:Zone.Identifier │ ├── fvSolution │ ├── fvSolution:Zone.Identifier │ ├── refineMeshDict │ ├── refineMeshDict:Zone.Identifier │ ├── sampleDict │ ├── sampleDict:Zone.Identifier │ ├── setFieldsDict │ ├── setFieldsDict:Zone.Identifier │ ├── topoSetDict │ └── topoSetDict:Zone.Identifier ├── twim-flameFront-reverse.PNG ├── twim-flameFront-reverse.PNG:Zone.Identifier ├── twim-flameFront.PNG └── twim-flameFront.PNG:Zone.Identifier ├── Allrun ├── Allrun:Zone.Identifier ├── Make ├── files ├── files:Zone.Identifier ├── options └── options:Zone.Identifier ├── README.md └── README.md:Zone.Identifier /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/README.md -------------------------------------------------------------------------------- /SLComparisonWithCantera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/SLComparisonWithCantera.pdf -------------------------------------------------------------------------------- /SLComparisonWithChemkin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/SLComparisonWithChemkin.pdf -------------------------------------------------------------------------------- /formatConvert/original_form/binaryDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/formatConvert/original_form/binaryDiff -------------------------------------------------------------------------------- /formatConvert/original_form/speciesLambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/formatConvert/original_form/speciesLambda -------------------------------------------------------------------------------- /formatConvert/original_form/speciesMu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/formatConvert/original_form/speciesMu -------------------------------------------------------------------------------- /formatConvert/original_form/thermoDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/formatConvert/original_form/thermoDiff -------------------------------------------------------------------------------- /formatConvert/tran.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/formatConvert/tran.out -------------------------------------------------------------------------------- /formatConvert/writetofoam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/formatConvert/writetofoam.py -------------------------------------------------------------------------------- /reactingDNS_equation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/reactingDNS_equation.pdf -------------------------------------------------------------------------------- /solvers/reactingDNS/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/Make/files -------------------------------------------------------------------------------- /solvers/reactingDNS/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/Make/options -------------------------------------------------------------------------------- /solvers/reactingDNS/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/UEqn.H -------------------------------------------------------------------------------- /solvers/reactingDNS/Y-hEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/Y-hEqn.H -------------------------------------------------------------------------------- /solvers/reactingDNS/Y-hEqn_DD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/Y-hEqn_DD.H -------------------------------------------------------------------------------- /solvers/reactingDNS/createFieldRefs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/createFieldRefs.H -------------------------------------------------------------------------------- /solvers/reactingDNS/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/createFields.H -------------------------------------------------------------------------------- /solvers/reactingDNS/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/pEqn.H -------------------------------------------------------------------------------- /solvers/reactingDNS/reactingDNS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/reactingDNS.C -------------------------------------------------------------------------------- /solvers/reactingDNS/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/setRDeltaT.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/createDiffFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/createDiffFields.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/createLambdaFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/createLambdaFields.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/createMuFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/createMuFields.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/createTDiffFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/createTDiffFields.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/getElementData.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/getElementData.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/readBinaryDiff.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/readBinaryDiff.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/readChemistryProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/readChemistryProperties.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/readSpeciesLambda.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/readSpeciesLambda.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/readSpeciesMu.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/readSpeciesMu.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/readThermalDiff.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/readThermalDiff.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/readTranData.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/readTranData.H -------------------------------------------------------------------------------- /solvers/reactingDNS/transport/updateTransProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/solvers/reactingDNS/transport/updateTransProperties.H -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/H -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/H2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/H2 -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/H2O -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/H2O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/H2O2 -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/HO2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/HO2 -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/N2 -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/O -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/O2 -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/OH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/OH -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/T -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/U -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/Ydefault -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/0/p -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/Allclean -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/Allrun -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/Allrun_parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/Allrun_parallel -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/chemkin/chem.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/chemkin/chem.inp -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/chemkin/senk.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/chemkin/senk.inp -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/chemkin/senk.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/chemkin/senk.out -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/chemkin/therm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/chemkin/therm.dat -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/chemkin/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/chemkin/transportProperties -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/binaryDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/binaryDiff -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/chemistryProperties -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/combustionProperties -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/g -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/momentumTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/momentumTransport -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/reactions -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/speciesLambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/speciesLambda -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/speciesMu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/speciesMu -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/thermoDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/thermoDiff -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/constant/trandat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/constant/trandat -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/system/blockMeshDict -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/system/controlDict -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/system/decomposeParDict -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/system/fvSchemes -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/system/fvSolution -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/system/sampleDict -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/system/setFieldsDict -------------------------------------------------------------------------------- /tuts/1D_H2_premixed_inletoutlet/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/1D_H2_premixed_inletoutlet/system/topoSetDict -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/0.org/CO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/0.org/CO -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/0.org/H2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/0.org/H2 -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/0.org/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/0.org/N2 -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/0.org/O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/0.org/O2 -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/0.org/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/0.org/T -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/0.org/U -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/0.org/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/0.org/Ydefault -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/0.org/p -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/1DFlame.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/1DFlame.dat -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/Allclean -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/Allrun -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/Allrun_parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/Allrun_parallel -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/chemkin/chem.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/chemkin/chem.inp -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/chemkin/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/chemkin/reactions -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/chemkin/therm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/chemkin/therm.dat -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/chemkin/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/chemkin/thermo.compressibleGas -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/chemkin/trans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/chemkin/trans.dat -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/chemkin/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/chemkin/transportProperties -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/CCMProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/CCMProperties -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/binaryDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/binaryDiff -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/chemistryProperties -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/combustionProperties -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/g -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/initialFlameProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/initialFlameProperties -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/momentumTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/momentumTransport -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/reactions -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/speciesLambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/speciesLambda -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/speciesMu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/speciesMu -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/thermoDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/thermoDiff -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/constant/trandat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/constant/trandat -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/blockMeshDict -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/controlDict -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/decomposeParDict -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/fvSchemes -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/fvSolution -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/refineMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/refineMeshDict -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/sampleDict -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/setFieldsDict -------------------------------------------------------------------------------- /tuts/2D_syngas_premixed/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/tuts/2D_syngas_premixed/system/topoSetDict -------------------------------------------------------------------------------- /utilities/.gitattributes:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/.gitattributes:Zone.Identifier -------------------------------------------------------------------------------- /utilities/.gitignore:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/.gitignore:Zone.Identifier -------------------------------------------------------------------------------- /utilities/1DFlameSin2Foam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/1DFlameSin2Foam.C -------------------------------------------------------------------------------- /utilities/1DFlameSin2Foam.C:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/1DFlameSin2Foam.C:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/CO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/CO -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/CO:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/CO:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/H2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/H2 -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/H2:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/H2:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/N2 -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/N2:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/N2:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/O2 -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/O2:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/O2:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/T -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/T:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/T:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/U -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/U:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/U:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/Ydefault -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/Ydefault:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/Ydefault:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/p -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/0.org/p:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/0.org/p:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/Allclean -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/Allclean:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/Allclean:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/chem.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/chem.inp -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/chem.inp:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/chem.inp:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/reactions -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/reactions:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/reactions:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/therm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/therm.dat -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/therm.dat:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/therm.dat:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/thermo.compressibleGas -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/thermo.compressibleGas:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/thermo.compressibleGas:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/trans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/trans.dat -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/trans.dat:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/trans.dat:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/transportProperties -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/chemkin/transportProperties:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/chemkin/transportProperties:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/circle-flameFront.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/circle-flameFront.PNG -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/circle-flameFront.PNG:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/circle-flameFront.PNG:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/1DFlame.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/1DFlame.dat -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/1DFlame.dat:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/1DFlame.dat:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/chemistryProperties -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/chemistryProperties:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/chemistryProperties:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/combustionProperties -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/combustionProperties:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/combustionProperties:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/initialFlameProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/initialFlameProperties -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/initialFlameProperties:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/initialFlameProperties:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/momentumTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/momentumTransport -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/momentumTransport:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/momentumTransport:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/reactions -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/reactions:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/reactions:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/thermo.compressibleGas:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/thermo.compressibleGas:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/thermophysicalProperties -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/constant/thermophysicalProperties:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/constant/thermophysicalProperties:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/flameFront-withFluctuation.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/flameFront-withFluctuation.PNG -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/flameFront-withFluctuation.PNG:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/flameFront-withFluctuation.PNG:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/blockMeshDict -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/blockMeshDict:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/blockMeshDict:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/controlDict -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/controlDict:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/controlDict:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/decomposeParDict -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/decomposeParDict:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/decomposeParDict:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/fvSchemes -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/fvSchemes:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/fvSchemes:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/fvSolution -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/fvSolution:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/fvSolution:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/refineMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/refineMeshDict -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/refineMeshDict:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/refineMeshDict:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/sampleDict -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/sampleDict:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/sampleDict:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/setFieldsDict -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/setFieldsDict:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/setFieldsDict:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/topoSetDict -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/system/topoSetDict:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/system/topoSetDict:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/twim-flameFront-reverse.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/twim-flameFront-reverse.PNG -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/twim-flameFront-reverse.PNG:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/twim-flameFront-reverse.PNG:Zone.Identifier -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/twim-flameFront.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/twim-flameFront.PNG -------------------------------------------------------------------------------- /utilities/2D_syngas_premixed/twim-flameFront.PNG:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/2D_syngas_premixed/twim-flameFront.PNG:Zone.Identifier -------------------------------------------------------------------------------- /utilities/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/Allrun -------------------------------------------------------------------------------- /utilities/Allrun:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/Allrun:Zone.Identifier -------------------------------------------------------------------------------- /utilities/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/Make/files -------------------------------------------------------------------------------- /utilities/Make/files:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/Make/files:Zone.Identifier -------------------------------------------------------------------------------- /utilities/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/Make/options -------------------------------------------------------------------------------- /utilities/Make/options:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/Make/options:Zone.Identifier -------------------------------------------------------------------------------- /utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/README.md -------------------------------------------------------------------------------- /utilities/README.md:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSHtju/reactingDNS_OpenFOAM/HEAD/utilities/README.md:Zone.Identifier --------------------------------------------------------------------------------