├── .gitignore ├── .travis.yml ├── LICENSE ├── diffusionCorrectedReactingFoam ├── EEqn.H ├── Make │ ├── files │ └── options ├── UEqn.H ├── YEqn.H ├── createFieldRefs.H ├── createFields.H ├── diffusionCorrectedReactingFoam.C ├── pEqn.H ├── pcEqn.H ├── setRDeltaT.H └── testCases │ ├── diffusionCorrectedReactingFoam_convection │ ├── 0.orig │ │ ├── CO2 │ │ ├── H2O │ │ ├── N2 │ │ ├── T │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── test.foam │ └── diffusionCorrectedReactingFoam_diffusion │ ├── 0.orig │ ├── H2O │ ├── N2 │ ├── T │ ├── U │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── chemistryProperties │ ├── combustionProperties │ ├── reactions │ ├── thermo.compressibleGas.hConst │ ├── thermo.compressibleGas.janaf │ ├── thermophysicalProperties │ └── turbulenceProperties │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict │ └── test.foam ├── diffusionFvOptions ├── Make │ ├── files │ └── options ├── diffusionSource.C ├── diffusionSource.H ├── diffusionSourceTemplates.C └── testCases │ ├── notebooks │ └── read_postProcessing.ipynb │ ├── reactingFoam_convection │ ├── 0.orig │ │ ├── CO2 │ │ ├── H2O │ │ ├── N2 │ │ ├── T │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ └── fvSolution │ └── test.foam │ ├── reactingFoam_diffusion_hConst │ ├── 0.orig │ │ ├── H2O │ │ ├── N2 │ │ ├── T │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── test.foam │ ├── reactingFoam_diffusion_janaf │ ├── 0.orig │ │ ├── H2O │ │ ├── N2 │ │ ├── T │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas.janaf │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── test.foam │ ├── reactingFoam_mixing │ ├── 0 │ │ ├── CH4 │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── g │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ └── fvSolution │ └── test.foam │ ├── rhoReactingFoam_convection │ ├── 0.orig │ │ ├── CO2 │ │ ├── H2O │ │ ├── N2 │ │ ├── T │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ └── fvSolution │ └── test.foam │ ├── rhoReactingFoam_diffusion_hConst │ ├── 0.orig │ │ ├── H2O │ │ ├── N2 │ │ ├── T │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── test.foam │ └── rhoReactingFoam_diffusion_janaf │ ├── 0.orig │ ├── H2O │ ├── N2 │ ├── T │ ├── U │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── chemistryProperties │ ├── combustionProperties │ ├── reactions │ ├── thermo.compressibleGas.janaf │ ├── thermophysicalProperties │ └── turbulenceProperties │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvOptions │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict │ └── test.foam ├── multiSpeciesMassTransportLibrary ├── Allwmake ├── Doc │ └── doxygen.config ├── README.txt ├── diffusivityModels │ ├── ChapmanEnskog │ │ ├── ChapmanEnskog.C │ │ └── ChapmanEnskog.H │ ├── Fuller │ │ ├── .directory │ │ ├── Fuller.C │ │ └── Fuller.H │ ├── Knudsen │ │ ├── Knudsen.C │ │ └── Knudsen.H │ ├── KnudsenDiffusivityModel │ │ ├── KnudsenDiffusivityModel.C │ │ └── KnudsenDiffusivityModel.H │ ├── Make │ │ ├── files │ │ └── options │ ├── Wilke │ │ ├── Wilke.C │ │ └── Wilke.H │ ├── binaryDiffusivityModel │ │ ├── binaryDiffusivityModel.C │ │ └── binaryDiffusivityModel.H │ ├── constant │ │ ├── constant.C │ │ └── constant.H │ ├── diffusivityModel │ │ ├── diffusivityModel.C │ │ └── diffusivityModel.H │ └── molecularWeights │ │ ├── molecularWeights.C │ │ └── molecularWeights.H ├── modifiedReactingFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── YEqn.H │ ├── chemistry.H │ ├── createFields.H │ ├── hsEqn.H │ ├── modifiedReactingFoam.C │ ├── pEqn.H │ └── readChemistryProperties.H ├── multiSpeciesTransportModels │ ├── .directory │ ├── Bosanquet │ │ ├── Bosanquet.C │ │ └── Bosanquet.H │ ├── Fick │ │ ├── Fick.C │ │ └── Fick.H │ ├── FickDilutedMixture │ │ ├── FickDilutedMixture.C │ │ └── FickDilutedMixture.H │ ├── LewisNumber │ │ ├── LewisNumber.C │ │ └── LewisNumber.H │ ├── Make │ │ ├── files │ │ └── options │ ├── MaxwellStefan │ │ ├── MaxwellStefan.C │ │ └── MaxwellStefan.H │ ├── SchmidtNumber │ │ ├── SchmidtNumber.C │ │ └── SchmidtNumber.H │ ├── multiSpeciesFvOptions │ │ ├── multiSpeciesSources.C │ │ └── multiSpeciesSources.H │ └── multiSpeciesTransportModel │ │ ├── makeMultiSpeciesTransportModel.H │ │ ├── multiSpeciesTransportModel.C │ │ ├── multiSpeciesTransportModel.H │ │ ├── multiSpeciesTransportModelI.H │ │ ├── multiSpeciesTransportModels.C │ │ └── newMultiSpeciesTransportModel.C └── testCases │ ├── modifiedReactingFoam_mixing │ ├── 0 │ │ ├── CH4 │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ └── p │ ├── Allclean │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── g │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── test.foam │ ├── modifiedReactingFoam_mixing_maxwell │ ├── 0 │ │ ├── CH4 │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ └── p │ ├── Allclean │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── g │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── test.foam │ └── modifiedReactingFoam_pure_diff │ ├── 0.orig │ ├── H2O │ ├── N2.bak │ ├── T │ ├── U │ ├── Ydefault │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── chemistryProperties │ ├── combustionProperties │ ├── g │ ├── reactions │ ├── thermo.compressibleGas │ ├── thermophysicalProperties │ ├── transportProperties │ └── turbulenceProperties │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict │ └── test.foam └── wallCondensationCoupled ├── Make ├── files └── options ├── README.md ├── doc └── tutorial-boundary-condition.pdf ├── testCases ├── check_mass_conservation.ipynb ├── conan │ ├── 0 │ │ ├── AIR │ │ ├── H2O │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allpre │ ├── Allpre.parallel │ ├── Allrun │ ├── Allrun.parallel │ ├── constant │ │ ├── regionProperties │ │ ├── topAir │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── reactions │ │ │ ├── thermo.compressibleGas │ │ │ ├── thermophysicalProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── wall │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ ├── system │ │ ├── README │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── extrudeMeshDict │ │ ├── fluxes │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── masses │ │ ├── probes │ │ ├── refineMeshDict │ │ ├── surfaces │ │ ├── topAir │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvOptions │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ ├── topoSetDict │ │ ├── wall │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── yPlus │ └── test.foam └── simple │ ├── 0 │ ├── air │ │ ├── G │ │ ├── IDefault │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── p │ │ ├── p_rgh │ │ └── qr │ ├── leftSolid │ │ ├── T │ │ └── p │ └── rightSolid │ │ ├── T │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── air │ │ ├── g │ │ ├── radiationProperties │ │ ├── thermophysicalProperties │ │ ├── turbulenceProperties │ │ └── viewFactorsDict │ ├── leftSolid │ │ ├── radiationProperties │ │ └── thermophysicalProperties │ ├── regionProperties │ └── rightSolid │ │ ├── radiationProperties │ │ └── thermophysicalProperties │ └── system │ ├── air │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── leftSolid │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ ├── rightSolid │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ └── topoSetDict ├── wallCondensationCoupledMixedFvPatchScalarField.C ├── wallCondensationCoupledMixedFvPatchScalarField.H ├── wallCondensationSource.C └── wallCondensationSource.H /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/LICENSE -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/EEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/EEqn.H -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/Make/files -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/Make/options -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/UEqn.H -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/YEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/YEqn.H -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/createFieldRefs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/createFieldRefs.H -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/createFields.H -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/diffusionCorrectedReactingFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/diffusionCorrectedReactingFoam.C -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/pEqn.H -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/pcEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/pcEqn.H -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/setRDeltaT.H -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/CO2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/CO2 -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/H2O -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/N2 -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/T -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/U -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/0.orig/p -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/Allclean -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/Allrun -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/reactions -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/system/controlDict -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/system/fvSchemes -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/system/fvSolution -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_convection/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/H2O -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/N2 -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/T -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/U -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/0.orig/p -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/Allclean -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/Allrun -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/reactions -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/thermo.compressibleGas.hConst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/thermo.compressibleGas.hConst -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/thermo.compressibleGas.janaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/thermo.compressibleGas.janaf -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/controlDict -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/fvSchemes -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/fvSolution -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/system/setFieldsDict -------------------------------------------------------------------------------- /diffusionCorrectedReactingFoam/testCases/diffusionCorrectedReactingFoam_diffusion/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffusionFvOptions/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/Make/files -------------------------------------------------------------------------------- /diffusionFvOptions/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/Make/options -------------------------------------------------------------------------------- /diffusionFvOptions/diffusionSource.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/diffusionSource.C -------------------------------------------------------------------------------- /diffusionFvOptions/diffusionSource.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/diffusionSource.H -------------------------------------------------------------------------------- /diffusionFvOptions/diffusionSourceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/diffusionSourceTemplates.C -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/notebooks/read_postProcessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/notebooks/read_postProcessing.ipynb -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/0.orig/CO2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/0.orig/CO2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/0.orig/H2O -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/0.orig/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/0.orig/N2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/0.orig/T -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/0.orig/U -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/0.orig/p -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/Allclean -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/Allrun -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/constant/reactions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/system/controlDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/system/fvOptions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/system/fvSchemes -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_convection/system/fvSolution -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_convection/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/H2O -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/N2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/T -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/U -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/0.orig/p -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/Allclean -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/Allrun -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/reactions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/controlDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/fvOptions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/fvSchemes -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/fvSolution -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/system/setFieldsDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_hConst/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/H2O -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/N2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/T -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/U -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/0.orig/p -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/Allclean -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/Allrun -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/reactions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/thermo.compressibleGas.janaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/thermo.compressibleGas.janaf -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/controlDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/fvOptions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/fvSchemes -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/fvSolution -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/system/setFieldsDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_diffusion_janaf/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/0/CH4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/0/CH4 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/0/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/0/N2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/0/O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/0/O2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/0/T -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/0/U -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/0/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/0/Ydefault -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/0/p -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/Allclean -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/Allrun -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/constant/g -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/constant/reactions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/constant/transportProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/system/controlDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/system/fvOptions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/system/fvSchemes -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/reactingFoam_mixing/system/fvSolution -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/reactingFoam_mixing/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/CO2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/CO2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/H2O -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/N2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/T -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/U -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/0.orig/p -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/Allclean -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/Allrun -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/reactions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/system/controlDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/system/fvOptions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/system/fvSchemes -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_convection/system/fvSolution -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_convection/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/H2O -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/N2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/T -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/U -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/0.orig/p -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/Allclean -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/Allrun -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/reactions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/controlDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/fvOptions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/fvSchemes -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/fvSolution -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/system/setFieldsDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_hConst/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/H2O -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/N2 -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/T -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/U -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/0.orig/p -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/Allclean -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/Allrun -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/chemistryProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/combustionProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/reactions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/thermo.compressibleGas.janaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/thermo.compressibleGas.janaf -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/thermophysicalProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/constant/turbulenceProperties -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/blockMeshDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/controlDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/fvOptions -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/fvSchemes -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/fvSolution -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/system/setFieldsDict -------------------------------------------------------------------------------- /diffusionFvOptions/testCases/rhoReactingFoam_diffusion_janaf/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/Allwmake -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/Doc/doxygen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/Doc/doxygen.config -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/README.txt -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/ChapmanEnskog/ChapmanEnskog.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/ChapmanEnskog/ChapmanEnskog.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/ChapmanEnskog/ChapmanEnskog.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/ChapmanEnskog/ChapmanEnskog.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Fuller/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfo=35 3 | SortOrder=1 4 | Timestamp=2010,4,15,14,39,10 5 | ViewMode=1 6 | -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Fuller/Fuller.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/Fuller/Fuller.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Fuller/Fuller.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/Fuller/Fuller.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Knudsen/Knudsen.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/Knudsen/Knudsen.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Knudsen/Knudsen.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/Knudsen/Knudsen.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/KnudsenDiffusivityModel/KnudsenDiffusivityModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/KnudsenDiffusivityModel/KnudsenDiffusivityModel.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/KnudsenDiffusivityModel/KnudsenDiffusivityModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/KnudsenDiffusivityModel/KnudsenDiffusivityModel.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/Make/files -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/Make/options -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Wilke/Wilke.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/Wilke/Wilke.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/Wilke/Wilke.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/Wilke/Wilke.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/binaryDiffusivityModel/binaryDiffusivityModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/binaryDiffusivityModel/binaryDiffusivityModel.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/binaryDiffusivityModel/binaryDiffusivityModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/binaryDiffusivityModel/binaryDiffusivityModel.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/constant/constant.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/constant/constant.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/constant/constant.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/constant/constant.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/diffusivityModel/diffusivityModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/diffusivityModel/diffusivityModel.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/diffusivityModel/diffusivityModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/diffusivityModel/diffusivityModel.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/molecularWeights/molecularWeights.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/molecularWeights/molecularWeights.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/diffusivityModels/molecularWeights/molecularWeights.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/diffusivityModels/molecularWeights/molecularWeights.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/Make/files -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/Make/options -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/UEqn.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/YEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/YEqn.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/chemistry.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/chemistry.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/createFields.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/hsEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/hsEqn.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/modifiedReactingFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/modifiedReactingFoam.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/pEqn.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/modifiedReactingFoam/readChemistryProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/modifiedReactingFoam/readChemistryProperties.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfo=35 3 | Timestamp=2010,6,29,9,53,44 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Bosanquet/Bosanquet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Bosanquet/Bosanquet.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Bosanquet/Bosanquet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Bosanquet/Bosanquet.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Fick/Fick.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Fick/Fick.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Fick/Fick.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Fick/Fick.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/FickDilutedMixture/FickDilutedMixture.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/FickDilutedMixture/FickDilutedMixture.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/FickDilutedMixture/FickDilutedMixture.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/FickDilutedMixture/FickDilutedMixture.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/LewisNumber/LewisNumber.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/LewisNumber/LewisNumber.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/LewisNumber/LewisNumber.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/LewisNumber/LewisNumber.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Make/files -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/Make/options -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/MaxwellStefan/MaxwellStefan.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/MaxwellStefan/MaxwellStefan.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/MaxwellStefan/MaxwellStefan.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/MaxwellStefan/MaxwellStefan.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/SchmidtNumber/SchmidtNumber.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/SchmidtNumber/SchmidtNumber.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/SchmidtNumber/SchmidtNumber.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/SchmidtNumber/SchmidtNumber.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesFvOptions/multiSpeciesSources.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesFvOptions/multiSpeciesSources.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesFvOptions/multiSpeciesSources.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesFvOptions/multiSpeciesSources.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/makeMultiSpeciesTransportModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/makeMultiSpeciesTransportModel.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/multiSpeciesTransportModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/multiSpeciesTransportModel.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/multiSpeciesTransportModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/multiSpeciesTransportModel.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/multiSpeciesTransportModelI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/multiSpeciesTransportModelI.H -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/multiSpeciesTransportModels.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/multiSpeciesTransportModels.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/newMultiSpeciesTransportModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/multiSpeciesTransportModels/multiSpeciesTransportModel/newMultiSpeciesTransportModel.C -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/CH4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/CH4 -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/N2 -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/O2 -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/T -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/U -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/Ydefault -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/0/p -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/Allclean -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/chemistryProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/combustionProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/g -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/reactions -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/thermophysicalProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/transportProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/constant/turbulenceProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/system/blockMeshDict -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/system/controlDict -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/system/fvSchemes -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/system/fvSolution -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/CH4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/CH4 -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/N2 -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/O2 -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/T -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/U -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/Ydefault -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/0/p -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/Allclean -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/chemistryProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/combustionProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/g -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/reactions -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/thermophysicalProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/transportProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/constant/turbulenceProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/system/blockMeshDict -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/system/controlDict -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/system/fvSchemes -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/system/fvSolution -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_mixing_maxwell/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/H2O -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/N2.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/N2.bak -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/T -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/U -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/Ydefault -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/0.orig/p -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/Allclean -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/Allrun -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/chemistryProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/combustionProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/g -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/reactions -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/thermo.compressibleGas -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/thermophysicalProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/transportProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/constant/turbulenceProperties -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/blockMeshDict -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/controlDict -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/fvSchemes -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/fvSolution -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/system/setFieldsDict -------------------------------------------------------------------------------- /multiSpeciesMassTransportLibrary/testCases/modifiedReactingFoam_pure_diff/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallCondensationCoupled/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/Make/files -------------------------------------------------------------------------------- /wallCondensationCoupled/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/Make/options -------------------------------------------------------------------------------- /wallCondensationCoupled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/README.md -------------------------------------------------------------------------------- /wallCondensationCoupled/doc/tutorial-boundary-condition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/doc/tutorial-boundary-condition.pdf -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/check_mass_conservation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/check_mass_conservation.ipynb -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/AIR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/AIR -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/H2O -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/T -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/U -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/Ydefault -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/alphat -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/k -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/nut -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/omega -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/p -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/0/p_rgh -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/Allclean -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/Allpre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/Allpre -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/Allpre.parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/Allpre.parallel -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/Allrun -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/Allrun.parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/Allrun.parallel -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/regionProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/chemistryProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/combustionProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/g -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/radiationProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/reactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/reactions -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/thermo.compressibleGas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/thermo.compressibleGas -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/thermophysicalProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/transportProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/topAir/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/topAir/turbulenceProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/wall/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/wall/radiationProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/constant/wall/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/constant/wall/thermophysicalProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/README -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/blockMeshDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/controlDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/decomposeParDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/extrudeMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/extrudeMeshDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/fluxes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/fluxes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/fvSchemes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/fvSolution -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/masses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/masses -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/probes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/probes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/refineMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/refineMeshDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/surfaces -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/topAir/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/topAir/changeDictionaryDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/topAir/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/topAir/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/topAir/fvOptions -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/topAir/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/topAir/fvSchemes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/topAir/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/topAir/fvSolution -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/topAir/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/topAir/topoSetDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/topoSetDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/wall/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/wall/changeDictionaryDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/wall/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/wall/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/wall/fvSchemes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/wall/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/wall/fvSolution -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/system/yPlus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/conan/system/yPlus -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/conan/test.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/G: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/G -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/IDefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/IDefault -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/T -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/U -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/alphat -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/epsilon -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/k -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/p -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/p_rgh -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/air/qr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/air/qr -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/leftSolid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/leftSolid/T -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/leftSolid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/leftSolid/p -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/rightSolid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/rightSolid/T -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/0/rightSolid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/0/rightSolid/p -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/Allclean -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/Allrun -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/air/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/constant/air/g -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/air/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/constant/air/radiationProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/air/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/constant/air/thermophysicalProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/air/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/constant/air/turbulenceProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/air/viewFactorsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/constant/air/viewFactorsDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/leftSolid/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/constant/leftSolid/radiationProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/leftSolid/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/constant/leftSolid/thermophysicalProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/constant/regionProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/rightSolid/radiationProperties: -------------------------------------------------------------------------------- 1 | ../leftSolid/radiationProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/constant/rightSolid/thermophysicalProperties: -------------------------------------------------------------------------------- 1 | ../leftSolid/thermophysicalProperties -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/air/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/air/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/air/fvSchemes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/air/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/air/fvSolution -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/blockMeshDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/controlDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/decomposeParDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/fvSchemes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/fvSolution -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/leftSolid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/leftSolid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/leftSolid/fvSchemes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/leftSolid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/leftSolid/fvSolution -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/rightSolid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/rightSolid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/rightSolid/fvSchemes -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/rightSolid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/rightSolid/fvSolution -------------------------------------------------------------------------------- /wallCondensationCoupled/testCases/simple/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/testCases/simple/system/topoSetDict -------------------------------------------------------------------------------- /wallCondensationCoupled/wallCondensationCoupledMixedFvPatchScalarField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/wallCondensationCoupledMixedFvPatchScalarField.C -------------------------------------------------------------------------------- /wallCondensationCoupled/wallCondensationCoupledMixedFvPatchScalarField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/wallCondensationCoupledMixedFvPatchScalarField.H -------------------------------------------------------------------------------- /wallCondensationCoupled/wallCondensationSource.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/wallCondensationSource.C -------------------------------------------------------------------------------- /wallCondensationCoupled/wallCondensationSource.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmozmoz/OFdevelopments/HEAD/wallCondensationCoupled/wallCondensationSource.H --------------------------------------------------------------------------------