├── .gitattributes ├── .gitignore ├── Allwmake ├── COPYING ├── README.org ├── applications ├── Allwmake ├── solvers │ ├── DNS │ │ └── dnsFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ ├── dnsFoam.C │ │ │ ├── globalProperties.H │ │ │ ├── readTransportProperties.H │ │ │ └── readTurbulenceProperties.H │ ├── basic │ │ ├── laplacianFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ ├── laplacianFoam.C │ │ │ └── write.H │ │ ├── potentialFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createControls.H │ │ │ ├── createFields.H │ │ │ └── potentialFoam.C │ │ └── scalarTransportFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── scalarTransportFoam.C │ ├── combustion │ │ ├── PDRFoam │ │ │ ├── EaEqn.H │ │ │ ├── EauEqn.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── PDRFoam.C │ │ │ ├── PDRFoamAutoRefine.C │ │ │ ├── PDRModels │ │ │ │ ├── XiEqModels │ │ │ │ │ └── basicXiSubXiEq │ │ │ │ │ │ ├── basicXiSubXiEq.C │ │ │ │ │ │ └── basicXiSubXiEq.H │ │ │ │ ├── XiGModels │ │ │ │ │ └── basicXiSubG │ │ │ │ │ │ ├── basicXiSubG.C │ │ │ │ │ │ └── basicXiSubG.H │ │ │ │ ├── dragModels │ │ │ │ │ ├── PDRDragModel │ │ │ │ │ │ ├── PDRDragModel.C │ │ │ │ │ │ ├── PDRDragModel.H │ │ │ │ │ │ └── PDRDragModelNew.C │ │ │ │ │ └── basic │ │ │ │ │ │ ├── basic.C │ │ │ │ │ │ └── basic.H │ │ │ │ └── turbulence │ │ │ │ │ └── PDRkEpsilon │ │ │ │ │ ├── PDRkEpsilon.C │ │ │ │ │ └── PDRkEpsilon.H │ │ │ ├── StCourantNo.H │ │ │ ├── UEqn.H │ │ │ ├── XiModels │ │ │ │ ├── XiEqModels │ │ │ │ │ ├── Gulder │ │ │ │ │ │ ├── Gulder.C │ │ │ │ │ │ └── Gulder.H │ │ │ │ │ ├── SCOPEBlendXiEq │ │ │ │ │ │ ├── SCOPEBlendXiEq.C │ │ │ │ │ │ └── SCOPEBlendXiEq.H │ │ │ │ │ ├── SCOPEXiEq │ │ │ │ │ │ ├── SCOPEXiEq.C │ │ │ │ │ │ └── SCOPEXiEq.H │ │ │ │ │ ├── XiEqModel │ │ │ │ │ │ ├── XiEqModel.C │ │ │ │ │ │ ├── XiEqModel.H │ │ │ │ │ │ └── XiEqModelNew.C │ │ │ │ │ └── instabilityXiEq │ │ │ │ │ │ ├── instabilityXiEq.C │ │ │ │ │ │ └── instabilityXiEq.H │ │ │ │ ├── XiGModels │ │ │ │ │ ├── KTS │ │ │ │ │ │ ├── KTS.C │ │ │ │ │ │ └── KTS.H │ │ │ │ │ ├── XiGModel │ │ │ │ │ │ ├── XiGModel.C │ │ │ │ │ │ ├── XiGModel.H │ │ │ │ │ │ └── XiGModelNew.C │ │ │ │ │ └── instabilityG │ │ │ │ │ │ ├── instabilityG.C │ │ │ │ │ │ └── instabilityG.H │ │ │ │ ├── XiModel │ │ │ │ │ ├── XiModel.C │ │ │ │ │ ├── XiModel.H │ │ │ │ │ └── XiModelNew.C │ │ │ │ ├── algebraic │ │ │ │ │ ├── algebraic.C │ │ │ │ │ └── algebraic.H │ │ │ │ ├── fixed │ │ │ │ │ ├── fixed.C │ │ │ │ │ └── fixed.H │ │ │ │ └── transport │ │ │ │ │ ├── transport.C │ │ │ │ │ └── transport.H │ │ │ ├── bEqn.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── ftEqn.H │ │ │ ├── laminarFlameSpeed │ │ │ │ └── SCOPE │ │ │ │ │ ├── SCOPELaminarFlameSpeed.C │ │ │ │ │ └── SCOPELaminarFlameSpeed.H │ │ │ ├── pEqn.H │ │ │ ├── readCombustionProperties.H │ │ │ ├── rhoEqn.H │ │ │ └── setDeltaT.H │ │ ├── XiFoam │ │ │ ├── EaEqn.H │ │ │ ├── EauEqn.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── XiEngineFoam │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── UEqn.H │ │ │ │ ├── XiEngineFoam.C │ │ │ │ ├── logSummary.H │ │ │ │ ├── pEqn.H │ │ │ │ └── startSummary.H │ │ │ ├── XiFoam.C │ │ │ ├── bEqn.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── ftEqn.H │ │ │ ├── pEqn.H │ │ │ └── readCombustionProperties.H │ │ ├── chemFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── YEqn.H │ │ │ ├── chemFoam.C │ │ │ ├── createBaseFields.H │ │ │ ├── createControls.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── createSingleCellMesh.H │ │ │ ├── hEqn.H │ │ │ ├── output.H │ │ │ ├── pEqn.H │ │ │ ├── readControls.H │ │ │ ├── readInitialConditions.H │ │ │ ├── setDeltaT.H │ │ │ ├── solveChemistry.H │ │ │ └── thermoTypeFunctions.H │ │ ├── coldEngineFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── coldEngineFoam.C │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── logSummary.H │ │ │ └── startSummary.H │ │ └── reactingFoam │ │ │ ├── EEqn.H │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── YEqn.H │ │ │ ├── buoyantReactingFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── buoyantReactingFoam.C │ │ │ ├── createFieldRefs.H │ │ │ └── createFields.H │ │ │ ├── correctPhi.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── engineFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── engineFoam.C │ │ │ ├── logSummary.H │ │ │ └── startSummary.H │ │ │ ├── reactingFoam.C │ │ │ └── setRDeltaT.H │ ├── compressible │ │ ├── rhoCentralFoam │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── BCs │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── T │ │ │ │ │ ├── smoluchowskiJumpTFvPatchScalarField.C │ │ │ │ │ └── smoluchowskiJumpTFvPatchScalarField.H │ │ │ │ ├── U │ │ │ │ │ ├── maxwellSlipUFvPatchVectorField.C │ │ │ │ │ └── maxwellSlipUFvPatchVectorField.H │ │ │ │ ├── mixedFixedValueSlip │ │ │ │ │ ├── mixedFixedValueSlipFvPatchField.C │ │ │ │ │ ├── mixedFixedValueSlipFvPatchField.H │ │ │ │ │ ├── mixedFixedValueSlipFvPatchFields.C │ │ │ │ │ ├── mixedFixedValueSlipFvPatchFields.H │ │ │ │ │ └── mixedFixedValueSlipFvPatchFieldsFwd.H │ │ │ │ └── rho │ │ │ │ │ ├── fixedRhoFvPatchScalarField.C │ │ │ │ │ └── fixedRhoFvPatchScalarField.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── centralCourantNo.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── directionInterpolate.H │ │ │ ├── readFluxScheme.H │ │ │ ├── rhoCentralFoam.C │ │ │ └── setRDeltaT.H │ │ ├── rhoPimpleFoam │ │ │ ├── EEqn.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── correctPhi.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── pEqn.H │ │ │ ├── rhoPimpleFoam.C │ │ │ └── setRDeltaT.H │ │ └── rhoSimpleFoam │ │ │ ├── EEqn.H │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── pEqn.H │ │ │ ├── rhoPorousSimpleFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── createZones.H │ │ │ ├── pEqn.H │ │ │ └── rhoPorousSimpleFoam.C │ │ │ └── rhoSimpleFoam.C │ ├── discreteMethods │ │ ├── dsmc │ │ │ └── dsmcFoam │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── createFields.H │ │ │ │ └── dsmcFoam.C │ │ └── molecularDynamics │ │ │ ├── mdEquilibrationFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── mdEquilibrationFoam.C │ │ │ └── readmdEquilibrationDict.H │ │ │ └── mdFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── mdFoam.C │ ├── electromagnetics │ │ ├── electrostaticFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── electrostaticFoam.C │ │ ├── magneticFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ ├── magnet.H │ │ │ └── magneticFoam.C │ │ └── mhdFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createControl.H │ │ │ ├── createFields.H │ │ │ ├── createPhiB.H │ │ │ ├── magneticFieldErr.H │ │ │ ├── mhdFoam.C │ │ │ └── readBPISOControls.H │ ├── financial │ │ └── financialFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── financialFoam.C │ ├── heatTransfer │ │ ├── buoyantPimpleFoam │ │ │ ├── EEqn.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── buoyantPimpleFoam.C │ │ │ ├── correctPhi.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ └── pEqn.H │ │ ├── buoyantSimpleFoam │ │ │ ├── EEqn.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── buoyantSimpleFoam.C │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ └── pEqn.H │ │ ├── chtMultiRegionFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── chtMultiRegionFoam.C │ │ │ ├── createFields.H │ │ │ ├── createMeshes.H │ │ │ ├── createMeshesPostProcess.H │ │ │ ├── fluid │ │ │ │ ├── EEqn.H │ │ │ │ ├── UEqn.H │ │ │ │ ├── YEqn.H │ │ │ │ ├── compressibleCourantNo.C │ │ │ │ ├── compressibleCourantNo.H │ │ │ │ ├── compressibleMultiRegionCourantNo.H │ │ │ │ ├── createFluidFields.H │ │ │ │ ├── createFluidMeshes.H │ │ │ │ ├── createFluidPressureControls.H │ │ │ │ ├── initContinuityErrs.H │ │ │ │ ├── setRegionFluidFields.H │ │ │ │ └── solveFluid.H │ │ │ ├── include │ │ │ │ ├── setInitialMultiRegionDeltaT.H │ │ │ │ └── setMultiRegionDeltaT.H │ │ │ └── solid │ │ │ │ ├── createSolidFields.H │ │ │ │ ├── createSolidMeshes.H │ │ │ │ ├── readSolidTimeControls.H │ │ │ │ ├── setRegionSolidFields.H │ │ │ │ ├── solidRegionDiffNo.C │ │ │ │ ├── solidRegionDiffNo.H │ │ │ │ ├── solidRegionDiffusionNo.H │ │ │ │ └── solveSolid.H │ │ └── thermoFoam │ │ │ ├── EEqn.H │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── thermoFoam.C │ ├── incompressible │ │ ├── adjointShapeOptimisationFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── adjointContinuityErrs.H │ │ │ ├── adjointOutletPressure │ │ │ │ ├── adjointOutletPressureFvPatchScalarField.C │ │ │ │ └── adjointOutletPressureFvPatchScalarField.H │ │ │ ├── adjointOutletVelocity │ │ │ │ ├── adjointOutletVelocityFvPatchVectorField.C │ │ │ │ └── adjointOutletVelocityFvPatchVectorField.H │ │ │ ├── adjointShapeOptimisationFoam.C │ │ │ ├── createFields.H │ │ │ ├── createPhia.H │ │ │ └── initAdjointContinuityErrs.H │ │ ├── boundaryFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── boundaryFoam.C │ │ │ ├── createFields.H │ │ │ ├── evaluateNearWall.H │ │ │ ├── interrogateWallPatches.H │ │ │ └── makeGraphs.H │ │ ├── icoFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── icoFoam.C │ │ ├── nonNewtonianIcoFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── nonNewtonianIcoFoam.C │ │ ├── pimpleFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── SRFPimpleFoam │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── SRFPimpleFoam.C │ │ │ │ ├── UrelEqn.H │ │ │ │ ├── createFields.H │ │ │ │ └── pEqn.H │ │ │ ├── UEqn.H │ │ │ ├── correctPhi.H │ │ │ ├── createFields.H │ │ │ ├── pEqn.H │ │ │ ├── pimpleFoam.C │ │ │ └── setRDeltaT.H │ │ ├── pisoFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── createFields.H │ │ │ ├── pEqn.H │ │ │ └── pisoFoam.C │ │ ├── shallowWaterFoam │ │ │ ├── CourantNo.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ ├── createPhi.H │ │ │ ├── readGravitationalAcceleration.H │ │ │ └── shallowWaterFoam.C │ │ └── simpleFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── SRFSimpleFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── SRFSimpleFoam.C │ │ │ ├── UrelEqn.H │ │ │ ├── createFields.H │ │ │ └── pEqn.H │ │ │ ├── UEqn.H │ │ │ ├── createFields.H │ │ │ ├── pEqn.H │ │ │ ├── porousSimpleFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── createPorousZones.H │ │ │ ├── pEqn.H │ │ │ └── porousSimpleFoam.C │ │ │ └── simpleFoam.C │ ├── lagrangian │ │ ├── denseParticleFoam │ │ │ ├── CourantNo.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UcEqn.H │ │ │ ├── continuityErrs.H │ │ │ ├── correctPhic.H │ │ │ ├── createFields.H │ │ │ ├── createUcf.H │ │ │ ├── createUcfIfPresent.H │ │ │ ├── denseParticleFoam.C │ │ │ └── pEqn.H │ │ ├── particleFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ ├── createNonInertialFrameFields.H │ │ │ └── particleFoam.C │ │ └── rhoParticleFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── rhoParticleFoam.C │ ├── multiphase │ │ ├── cavitatingFoam │ │ │ ├── CourantNo.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── alphavPsi.H │ │ │ ├── cavitatingFoam.C │ │ │ ├── continuityErrs.H │ │ │ ├── correctPhi.H │ │ │ ├── createControls.H │ │ │ ├── createFields.H │ │ │ ├── createPcorrTypes.H │ │ │ ├── pEqn.H │ │ │ ├── readControls.H │ │ │ ├── readThermodynamicProperties.H │ │ │ ├── rhoEqn.H │ │ │ ├── setDeltaT.H │ │ │ └── setInitialDeltaT.H │ │ ├── compressibleInterFoam │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── TEqn.H │ │ │ ├── UEqn.H │ │ │ ├── VoFClouds │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── VoFClouds.C │ │ │ │ └── VoFClouds.H │ │ │ ├── VoFSolidificationMeltingSource │ │ │ │ ├── VoFSolidificationMeltingSource.C │ │ │ │ └── VoFSolidificationMeltingSource.H │ │ │ ├── VoFSurfaceFilm │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── VoFPatchTransfer │ │ │ │ │ ├── VoFPatchTransfer.C │ │ │ │ │ └── VoFPatchTransfer.H │ │ │ │ ├── VoFSurfaceFilm.C │ │ │ │ └── VoFSurfaceFilm.H │ │ │ ├── alphaSuSp.H │ │ │ ├── compressibleAlphaEqnSubCycle.H │ │ │ ├── compressibleInterFoam.C │ │ │ ├── compressibleInterPhaseTransportModel │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── compressibleInterPhaseTransportModel.C │ │ │ │ └── compressibleInterPhaseTransportModel.H │ │ │ ├── correctPhi.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── pEqn.H │ │ │ ├── rhofs.H │ │ │ ├── surfaceTensionModels │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── liquidProperties │ │ │ │ │ ├── liquidPropertiesSurfaceTension.C │ │ │ │ │ └── liquidPropertiesSurfaceTension.H │ │ │ ├── twoPhaseChange │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── cavitation │ │ │ │ │ ├── Kunz │ │ │ │ │ │ ├── Kunz.C │ │ │ │ │ │ └── Kunz.H │ │ │ │ │ ├── Merkle │ │ │ │ │ │ ├── Merkle.C │ │ │ │ │ │ └── Merkle.H │ │ │ │ │ ├── SchnerrSauer │ │ │ │ │ │ ├── SchnerrSauer.C │ │ │ │ │ │ └── SchnerrSauer.H │ │ │ │ │ └── cavitationModel │ │ │ │ │ │ ├── cavitationModel.C │ │ │ │ │ │ └── cavitationModel.H │ │ │ │ ├── noPhaseChange │ │ │ │ │ ├── noPhaseChange.C │ │ │ │ │ └── noPhaseChange.H │ │ │ │ └── twoPhaseChangeModel │ │ │ │ │ ├── twoPhaseChangeModel.C │ │ │ │ │ ├── twoPhaseChangeModel.H │ │ │ │ │ └── twoPhaseChangeModelNew.C │ │ │ └── twoPhaseMixtureThermo │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── twoPhaseMixtureThermo.C │ │ │ │ └── twoPhaseMixtureThermo.H │ │ ├── compressibleMultiphaseInterFoam │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── TEqn.H │ │ │ ├── UEqn.H │ │ │ ├── compressibleMultiphaseInterFoam.C │ │ │ ├── createFields.H │ │ │ ├── multiphaseMixtureThermo │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── alphaContactAngle │ │ │ │ │ ├── alphaContactAngleFvPatchScalarField.C │ │ │ │ │ └── alphaContactAngleFvPatchScalarField.H │ │ │ │ ├── multiphaseMixtureThermo.C │ │ │ │ ├── multiphaseMixtureThermo.H │ │ │ │ └── phaseModel │ │ │ │ │ ├── phaseModel.C │ │ │ │ │ └── phaseModel.H │ │ │ └── pEqn.H │ │ ├── driftFluxFoam │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── alphaControls.H │ │ │ ├── alphaEqn.H │ │ │ ├── alphaEqnSubCycle.H │ │ │ ├── createFields.H │ │ │ ├── driftFluxFoam.C │ │ │ ├── incompressibleTwoPhaseInteractingMixture │ │ │ │ ├── incompressibleTwoPhaseInteractingMixture.C │ │ │ │ └── incompressibleTwoPhaseInteractingMixture.H │ │ │ ├── mixtureViscosityModels │ │ │ │ ├── BinghamPlastic │ │ │ │ │ ├── BinghamPlastic.C │ │ │ │ │ └── BinghamPlastic.H │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── mixtureViscosityModel │ │ │ │ │ ├── mixtureViscosityModel.C │ │ │ │ │ ├── mixtureViscosityModel.H │ │ │ │ │ └── mixtureViscosityModelNew.C │ │ │ │ ├── plastic │ │ │ │ │ ├── plastic.C │ │ │ │ │ └── plastic.H │ │ │ │ └── slurry │ │ │ │ │ ├── slurry.C │ │ │ │ │ └── slurry.H │ │ │ ├── pEqn.H │ │ │ └── relativeVelocityModels │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── general │ │ │ │ ├── general.C │ │ │ │ └── general.H │ │ │ │ ├── relativeVelocityModel │ │ │ │ ├── relativeVelocityModel.C │ │ │ │ └── relativeVelocityModel.H │ │ │ │ └── simple │ │ │ │ ├── simple.C │ │ │ │ └── simple.H │ │ ├── interFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── alphaSuSp.H │ │ │ ├── correctPhi.H │ │ │ ├── createFieldRefs.H │ │ │ ├── createFields.H │ │ │ ├── initCorrectPhi.H │ │ │ ├── interFoam.C │ │ │ ├── interMixingFoam │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── UEqn.H │ │ │ │ ├── alphaControls.H │ │ │ │ ├── alphaEqn.H │ │ │ │ ├── alphaEqnSubCycle.H │ │ │ │ ├── correctPhi.H │ │ │ │ ├── createFields.H │ │ │ │ ├── immiscibleIncompressibleThreePhaseMixture │ │ │ │ │ ├── immiscibleIncompressibleThreePhaseMixture.C │ │ │ │ │ └── immiscibleIncompressibleThreePhaseMixture.H │ │ │ │ ├── incompressibleThreePhaseMixture │ │ │ │ │ ├── incompressibleThreePhaseMixture.C │ │ │ │ │ └── incompressibleThreePhaseMixture.H │ │ │ │ ├── initCorrectPhi.H │ │ │ │ ├── interMixingFoam.C │ │ │ │ ├── pEqn.H │ │ │ │ └── threePhaseInterfaceProperties │ │ │ │ │ ├── threePhaseInterfaceProperties.C │ │ │ │ │ └── threePhaseInterfaceProperties.H │ │ │ ├── pEqn.H │ │ │ └── rhofs.H │ │ ├── multiphaseEulerFoam │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── functionObjects │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── phaseForces │ │ │ │ │ ├── phaseForces.C │ │ │ │ │ └── phaseForces.H │ │ │ │ ├── phaseMap │ │ │ │ │ ├── phaseMap.C │ │ │ │ │ └── phaseMap.H │ │ │ │ └── sizeDistribution │ │ │ │ │ ├── sizeDistribution.C │ │ │ │ │ └── sizeDistribution.H │ │ │ ├── include │ │ │ │ ├── createRDeltaTf.H │ │ │ │ └── setRDeltaTf.H │ │ │ ├── interfacialCompositionModels │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── diffusiveMassTransferModels │ │ │ │ │ ├── Frossling │ │ │ │ │ │ ├── Frossling.C │ │ │ │ │ │ └── Frossling.H │ │ │ │ │ ├── diffusiveMassTransferModel │ │ │ │ │ │ ├── diffusiveMassTransferModel.C │ │ │ │ │ │ ├── diffusiveMassTransferModel.H │ │ │ │ │ │ └── diffusiveMassTransferModelNew.C │ │ │ │ │ └── sphericalDiffusiveMassTransfer │ │ │ │ │ │ ├── sphericalDiffusiveMassTransfer.C │ │ │ │ │ │ └── sphericalDiffusiveMassTransfer.H │ │ │ │ ├── interfaceCompositionModels │ │ │ │ │ ├── Henry │ │ │ │ │ │ ├── Henry.C │ │ │ │ │ │ └── Henry.H │ │ │ │ │ ├── Raoult │ │ │ │ │ │ ├── Raoult.C │ │ │ │ │ │ └── Raoult.H │ │ │ │ │ ├── interfaceCompositionModel │ │ │ │ │ │ ├── interfaceCompositionModel.C │ │ │ │ │ │ ├── interfaceCompositionModel.H │ │ │ │ │ │ ├── interfaceCompositionModelI.H │ │ │ │ │ │ └── interfaceCompositionModelNew.C │ │ │ │ │ ├── nonRandomTwoLiquid │ │ │ │ │ │ ├── nonRandomTwoLiquid.C │ │ │ │ │ │ └── nonRandomTwoLiquid.H │ │ │ │ │ └── saturated │ │ │ │ │ │ ├── saturated.C │ │ │ │ │ │ └── saturated.H │ │ │ │ ├── saturationModels │ │ │ │ │ ├── Antoine │ │ │ │ │ │ ├── Antoine.C │ │ │ │ │ │ └── Antoine.H │ │ │ │ │ ├── AntoineExtended │ │ │ │ │ │ ├── AntoineExtended.C │ │ │ │ │ │ └── AntoineExtended.H │ │ │ │ │ ├── ArdenBuck │ │ │ │ │ │ ├── ArdenBuck.C │ │ │ │ │ │ └── ArdenBuck.H │ │ │ │ │ ├── constantSaturationConditions │ │ │ │ │ │ ├── constantSaturationConditions.C │ │ │ │ │ │ └── constantSaturationConditions.H │ │ │ │ │ ├── function1 │ │ │ │ │ │ ├── function1.C │ │ │ │ │ │ └── function1.H │ │ │ │ │ ├── polynomial │ │ │ │ │ │ ├── polynomial.C │ │ │ │ │ │ └── polynomial.H │ │ │ │ │ └── saturationModel │ │ │ │ │ │ ├── saturationModel.C │ │ │ │ │ │ ├── saturationModel.H │ │ │ │ │ │ └── saturationModelNew.C │ │ │ │ └── surfaceTensionModels │ │ │ │ │ ├── constantSurfaceTensionCoefficient │ │ │ │ │ ├── constantSurfaceTensionCoefficient.C │ │ │ │ │ └── constantSurfaceTensionCoefficient.H │ │ │ │ │ └── surfaceTensionModel │ │ │ │ │ ├── surfaceTensionModel.C │ │ │ │ │ ├── surfaceTensionModel.H │ │ │ │ │ └── surfaceTensionModelNew.C │ │ │ ├── interfacialModels │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── aspectRatioModels │ │ │ │ │ ├── TomiyamaAspectRatio │ │ │ │ │ │ ├── TomiyamaAspectRatio.C │ │ │ │ │ │ └── TomiyamaAspectRatio.H │ │ │ │ │ ├── VakhrushevEfremov │ │ │ │ │ │ ├── VakhrushevEfremov.C │ │ │ │ │ │ └── VakhrushevEfremov.H │ │ │ │ │ ├── Wellek │ │ │ │ │ │ ├── Wellek.C │ │ │ │ │ │ └── Wellek.H │ │ │ │ │ ├── aspectRatioModel │ │ │ │ │ │ ├── aspectRatioModel.C │ │ │ │ │ │ ├── aspectRatioModel.H │ │ │ │ │ │ └── aspectRatioModelNew.C │ │ │ │ │ └── constantAspectRatio │ │ │ │ │ │ ├── constantAspectRatio.C │ │ │ │ │ │ └── constantAspectRatio.H │ │ │ │ ├── dragModels │ │ │ │ │ ├── AttouFerschneider │ │ │ │ │ │ ├── AttouFerschneider.C │ │ │ │ │ │ └── AttouFerschneider.H │ │ │ │ │ ├── Beetstra │ │ │ │ │ │ ├── Beetstra.C │ │ │ │ │ │ └── Beetstra.H │ │ │ │ │ ├── Ergun │ │ │ │ │ │ ├── Ergun.C │ │ │ │ │ │ └── Ergun.H │ │ │ │ │ ├── Gibilaro │ │ │ │ │ │ ├── Gibilaro.C │ │ │ │ │ │ └── Gibilaro.H │ │ │ │ │ ├── GidaspowErgunWenYu │ │ │ │ │ │ ├── GidaspowErgunWenYu.C │ │ │ │ │ │ └── GidaspowErgunWenYu.H │ │ │ │ │ ├── GidaspowSchillerNaumann │ │ │ │ │ │ ├── GidaspowSchillerNaumann.C │ │ │ │ │ │ └── GidaspowSchillerNaumann.H │ │ │ │ │ ├── IshiiZuber │ │ │ │ │ │ ├── IshiiZuber.C │ │ │ │ │ │ └── IshiiZuber.H │ │ │ │ │ ├── Lain │ │ │ │ │ │ ├── Lain.C │ │ │ │ │ │ └── Lain.H │ │ │ │ │ ├── SchillerNaumann │ │ │ │ │ │ ├── SchillerNaumann.C │ │ │ │ │ │ └── SchillerNaumann.H │ │ │ │ │ ├── SyamlalOBrien │ │ │ │ │ │ ├── SyamlalOBrien.C │ │ │ │ │ │ └── SyamlalOBrien.H │ │ │ │ │ ├── Tenneti │ │ │ │ │ │ ├── Tenneti.C │ │ │ │ │ │ └── Tenneti.H │ │ │ │ │ ├── TomiyamaAnalytic │ │ │ │ │ │ ├── TomiyamaAnalytic.C │ │ │ │ │ │ └── TomiyamaAnalytic.H │ │ │ │ │ ├── TomiyamaCorrelated │ │ │ │ │ │ ├── TomiyamaCorrelated.C │ │ │ │ │ │ └── TomiyamaCorrelated.H │ │ │ │ │ ├── TomiyamaKataokaZunSakaguchi │ │ │ │ │ │ ├── TomiyamaKataokaZunSakaguchi.C │ │ │ │ │ │ └── TomiyamaKataokaZunSakaguchi.H │ │ │ │ │ ├── WenYu │ │ │ │ │ │ ├── WenYu.C │ │ │ │ │ │ └── WenYu.H │ │ │ │ │ ├── aerosolDrag │ │ │ │ │ │ ├── aerosolDrag.C │ │ │ │ │ │ └── aerosolDrag.H │ │ │ │ │ ├── dragModel │ │ │ │ │ │ ├── dragModel.C │ │ │ │ │ │ ├── dragModel.H │ │ │ │ │ │ └── dragModelNew.C │ │ │ │ │ ├── segregated │ │ │ │ │ │ ├── segregated.C │ │ │ │ │ │ └── segregated.H │ │ │ │ │ └── timeScaleFilteredDrag │ │ │ │ │ │ ├── timeScaleFilteredDrag.C │ │ │ │ │ │ └── timeScaleFilteredDrag.H │ │ │ │ ├── heatTransferModels │ │ │ │ │ ├── Gunn │ │ │ │ │ │ ├── Gunn.C │ │ │ │ │ │ └── Gunn.H │ │ │ │ │ ├── RanzMarshall │ │ │ │ │ │ ├── RanzMarshall.C │ │ │ │ │ │ └── RanzMarshall.H │ │ │ │ │ ├── constantNu │ │ │ │ │ │ ├── constantNuHeatTransfer.C │ │ │ │ │ │ └── constantNuHeatTransfer.H │ │ │ │ │ ├── heatTransferModel │ │ │ │ │ │ ├── heatTransferModel.C │ │ │ │ │ │ ├── heatTransferModel.H │ │ │ │ │ │ └── heatTransferModelNew.C │ │ │ │ │ ├── sphericalHeatTransfer │ │ │ │ │ │ ├── sphericalHeatTransfer.C │ │ │ │ │ │ └── sphericalHeatTransfer.H │ │ │ │ │ └── timeScaleFilteredHeatTransfer │ │ │ │ │ │ ├── timeScaleFilteredHeatTransfer.C │ │ │ │ │ │ └── timeScaleFilteredHeatTransfer.H │ │ │ │ ├── liftModels │ │ │ │ │ ├── LegendreMagnaudet │ │ │ │ │ │ ├── LegendreMagnaudet.C │ │ │ │ │ │ └── LegendreMagnaudet.H │ │ │ │ │ ├── Moraga │ │ │ │ │ │ ├── Moraga.C │ │ │ │ │ │ └── Moraga.H │ │ │ │ │ ├── TomiyamaLift │ │ │ │ │ │ ├── TomiyamaLift.C │ │ │ │ │ │ └── TomiyamaLift.H │ │ │ │ │ ├── constantLiftCoefficient │ │ │ │ │ │ ├── constantLiftCoefficient.C │ │ │ │ │ │ └── constantLiftCoefficient.H │ │ │ │ │ ├── liftModel │ │ │ │ │ │ ├── liftModel.C │ │ │ │ │ │ ├── liftModel.H │ │ │ │ │ │ └── liftModelNew.C │ │ │ │ │ ├── noLift │ │ │ │ │ │ ├── noLift.C │ │ │ │ │ │ └── noLift.H │ │ │ │ │ └── wallDampedLift │ │ │ │ │ │ ├── wallDampedLift.C │ │ │ │ │ │ └── wallDampedLift.H │ │ │ │ ├── phaseTransferModels │ │ │ │ │ ├── deposition │ │ │ │ │ │ ├── deposition.C │ │ │ │ │ │ └── deposition.H │ │ │ │ │ ├── phaseTransferModel │ │ │ │ │ │ ├── phaseTransferModel.C │ │ │ │ │ │ ├── phaseTransferModel.H │ │ │ │ │ │ └── phaseTransferModelNew.C │ │ │ │ │ └── reactionDriven │ │ │ │ │ │ ├── reactionDriven.C │ │ │ │ │ │ └── reactionDriven.H │ │ │ │ ├── swarmCorrections │ │ │ │ │ ├── TomiyamaSwarm │ │ │ │ │ │ ├── TomiyamaSwarm.C │ │ │ │ │ │ └── TomiyamaSwarm.H │ │ │ │ │ ├── noSwarm │ │ │ │ │ │ ├── noSwarm.C │ │ │ │ │ │ └── noSwarm.H │ │ │ │ │ └── swarmCorrection │ │ │ │ │ │ ├── swarmCorrection.C │ │ │ │ │ │ ├── swarmCorrection.H │ │ │ │ │ │ └── swarmCorrectionNew.C │ │ │ │ ├── turbulentDispersionModels │ │ │ │ │ ├── Burns │ │ │ │ │ │ ├── Burns.C │ │ │ │ │ │ └── Burns.H │ │ │ │ │ ├── Gosman │ │ │ │ │ │ ├── Gosman.C │ │ │ │ │ │ └── Gosman.H │ │ │ │ │ ├── LopezDeBertodano │ │ │ │ │ │ ├── LopezDeBertodano.C │ │ │ │ │ │ └── LopezDeBertodano.H │ │ │ │ │ ├── constantTurbulentDispersionCoefficient │ │ │ │ │ │ ├── constantTurbulentDispersionCoefficient.C │ │ │ │ │ │ └── constantTurbulentDispersionCoefficient.H │ │ │ │ │ ├── noTurbulentDispersion │ │ │ │ │ │ ├── noTurbulentDispersion.C │ │ │ │ │ │ └── noTurbulentDispersion.H │ │ │ │ │ └── turbulentDispersionModel │ │ │ │ │ │ ├── turbulentDispersionModel.C │ │ │ │ │ │ ├── turbulentDispersionModel.H │ │ │ │ │ │ └── turbulentDispersionModelNew.C │ │ │ │ ├── virtualMassModels │ │ │ │ │ ├── Lamb │ │ │ │ │ │ ├── Lamb.C │ │ │ │ │ │ └── Lamb.H │ │ │ │ │ ├── constantVirtualMassCoefficient │ │ │ │ │ │ ├── constantVirtualMassCoefficient.C │ │ │ │ │ │ └── constantVirtualMassCoefficient.H │ │ │ │ │ ├── noVirtualMass │ │ │ │ │ │ ├── noVirtualMass.C │ │ │ │ │ │ └── noVirtualMass.H │ │ │ │ │ └── virtualMassModel │ │ │ │ │ │ ├── virtualMassModel.C │ │ │ │ │ │ ├── virtualMassModel.H │ │ │ │ │ │ └── virtualMassModelNew.C │ │ │ │ ├── wallDampingModels │ │ │ │ │ ├── cosine │ │ │ │ │ │ ├── cosineWallDamping.C │ │ │ │ │ │ └── cosineWallDamping.H │ │ │ │ │ ├── linear │ │ │ │ │ │ ├── linearWallDamping.C │ │ │ │ │ │ └── linearWallDamping.H │ │ │ │ │ ├── sine │ │ │ │ │ │ ├── sineWallDamping.C │ │ │ │ │ │ └── sineWallDamping.H │ │ │ │ │ └── wallDampingModel │ │ │ │ │ │ ├── wallDampingModel.C │ │ │ │ │ │ ├── wallDampingModel.H │ │ │ │ │ │ └── wallDampingModelNew.C │ │ │ │ ├── wallDependentModel │ │ │ │ │ ├── wallDependentModel.C │ │ │ │ │ └── wallDependentModel.H │ │ │ │ └── wallLubricationModels │ │ │ │ │ ├── Antal │ │ │ │ │ ├── Antal.C │ │ │ │ │ └── Antal.H │ │ │ │ │ ├── Frank │ │ │ │ │ ├── Frank.C │ │ │ │ │ └── Frank.H │ │ │ │ │ ├── TomiyamaWallLubrication │ │ │ │ │ ├── TomiyamaWallLubrication.C │ │ │ │ │ └── TomiyamaWallLubrication.H │ │ │ │ │ ├── noWallLubrication │ │ │ │ │ ├── noWallLubrication.C │ │ │ │ │ └── noWallLubrication.H │ │ │ │ │ └── wallLubricationModel │ │ │ │ │ ├── wallLubricationModel.C │ │ │ │ │ ├── wallLubricationModel.H │ │ │ │ │ └── wallLubricationModelNew.C │ │ │ ├── multiphaseCompressibleMomentumTransportModels │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── derivedFvPatchFields │ │ │ │ │ ├── JohnsonJacksonParticleSlip │ │ │ │ │ │ ├── JohnsonJacksonParticleSlipFvPatchVectorField.C │ │ │ │ │ │ └── JohnsonJacksonParticleSlipFvPatchVectorField.H │ │ │ │ │ ├── JohnsonJacksonParticleTheta │ │ │ │ │ │ ├── JohnsonJacksonParticleThetaFvPatchScalarField.C │ │ │ │ │ │ └── JohnsonJacksonParticleThetaFvPatchScalarField.H │ │ │ │ │ ├── alphatFixedDmdtfWallBoilingWallFunction │ │ │ │ │ │ ├── alphatFixedDmdtfWallBoilingWallFunctionFvPatchScalarField.C │ │ │ │ │ │ └── alphatFixedDmdtfWallBoilingWallFunctionFvPatchScalarField.H │ │ │ │ │ ├── alphatPhaseChangeWallFunction │ │ │ │ │ │ ├── alphatPhaseChangeWallFunctionFvPatchScalarField.C │ │ │ │ │ │ └── alphatPhaseChangeWallFunctionFvPatchScalarField.H │ │ │ │ │ ├── alphatPhaseJayatillekeWallFunction │ │ │ │ │ │ ├── alphatPhaseJayatillekeWallFunctionFvPatchScalarField.C │ │ │ │ │ │ └── alphatPhaseJayatillekeWallFunctionFvPatchScalarField.H │ │ │ │ │ ├── alphatWallBoilingWallFunction │ │ │ │ │ │ ├── alphatWallBoilingWallFunctionFvPatchScalarField.C │ │ │ │ │ │ └── alphatWallBoilingWallFunctionFvPatchScalarField.H │ │ │ │ │ ├── copiedFixedValue │ │ │ │ │ │ ├── copiedFixedValueFvPatchScalarField.C │ │ │ │ │ │ └── copiedFixedValueFvPatchScalarField.H │ │ │ │ │ ├── fixedMultiPhaseHeatFlux │ │ │ │ │ │ ├── fixedMultiPhaseHeatFluxFvPatchScalarField.C │ │ │ │ │ │ └── fixedMultiPhaseHeatFluxFvPatchScalarField.H │ │ │ │ │ └── wallBoilingSubModels │ │ │ │ │ │ ├── departureDiameterModels │ │ │ │ │ │ ├── KocamustafaogullariIshiiDepartureDiameter │ │ │ │ │ │ │ ├── KocamustafaogullariIshiiDepartureDiameter.C │ │ │ │ │ │ │ └── KocamustafaogullariIshiiDepartureDiameter.H │ │ │ │ │ │ ├── TolubinskiKostanchuk │ │ │ │ │ │ │ ├── TolubinskiKostanchuk.C │ │ │ │ │ │ │ └── TolubinskiKostanchuk.H │ │ │ │ │ │ └── departureDiameterModel │ │ │ │ │ │ │ ├── departureDiameterModel.C │ │ │ │ │ │ │ ├── departureDiameterModel.H │ │ │ │ │ │ │ └── departureDiameterModelNew.C │ │ │ │ │ │ ├── departureFrequencyModels │ │ │ │ │ │ ├── Cole │ │ │ │ │ │ │ ├── Cole.C │ │ │ │ │ │ │ └── Cole.H │ │ │ │ │ │ ├── KocamustafaogullariIshiiDepartureFrequency │ │ │ │ │ │ │ ├── KocamustafaogullariIshiiDepartureFrequency.C │ │ │ │ │ │ │ └── KocamustafaogullariIshiiDepartureFrequency.H │ │ │ │ │ │ └── departureFrequencyModel │ │ │ │ │ │ │ ├── departureFrequencyModel.C │ │ │ │ │ │ │ ├── departureFrequencyModel.H │ │ │ │ │ │ │ └── departureFrequencyModelNew.C │ │ │ │ │ │ ├── nucleationSiteModels │ │ │ │ │ │ ├── KocamustafaogullariIshiiNucleationSite │ │ │ │ │ │ │ ├── KocamustafaogullariIshiiNucleationSite.C │ │ │ │ │ │ │ └── KocamustafaogullariIshiiNucleationSite.H │ │ │ │ │ │ ├── LemmertChawla │ │ │ │ │ │ │ ├── LemmertChawla.C │ │ │ │ │ │ │ └── LemmertChawla.H │ │ │ │ │ │ └── nucleationSiteModel │ │ │ │ │ │ │ ├── nucleationSiteModel.C │ │ │ │ │ │ │ ├── nucleationSiteModel.H │ │ │ │ │ │ │ └── nucleationSiteModelNew.C │ │ │ │ │ │ └── partitioningModels │ │ │ │ │ │ ├── Lavieville │ │ │ │ │ │ ├── Lavieville.C │ │ │ │ │ │ └── Lavieville.H │ │ │ │ │ │ ├── cosine │ │ │ │ │ │ ├── cosine.C │ │ │ │ │ │ └── cosine.H │ │ │ │ │ │ ├── linear │ │ │ │ │ │ ├── linear.C │ │ │ │ │ │ └── linear.H │ │ │ │ │ │ ├── partitioningModel │ │ │ │ │ │ ├── partitioningModel.C │ │ │ │ │ │ ├── partitioningModel.H │ │ │ │ │ │ └── partitioningModelNew.C │ │ │ │ │ │ └── phaseFraction │ │ │ │ │ │ ├── phaseFraction.C │ │ │ │ │ │ └── phaseFraction.H │ │ │ │ ├── kineticTheoryModels │ │ │ │ │ ├── conductivityModel │ │ │ │ │ │ ├── Gidaspow │ │ │ │ │ │ │ ├── GidaspowConductivity.C │ │ │ │ │ │ │ └── GidaspowConductivity.H │ │ │ │ │ │ ├── HrenyaSinclair │ │ │ │ │ │ │ ├── HrenyaSinclairConductivity.C │ │ │ │ │ │ │ └── HrenyaSinclairConductivity.H │ │ │ │ │ │ ├── Syamlal │ │ │ │ │ │ │ ├── SyamlalConductivity.C │ │ │ │ │ │ │ └── SyamlalConductivity.H │ │ │ │ │ │ └── conductivityModel │ │ │ │ │ │ │ ├── conductivityModel.C │ │ │ │ │ │ │ ├── conductivityModel.H │ │ │ │ │ │ │ └── conductivityModelNew.C │ │ │ │ │ ├── frictionalStressModel │ │ │ │ │ │ ├── JohnsonJackson │ │ │ │ │ │ │ ├── JohnsonJacksonFrictionalStress.C │ │ │ │ │ │ │ └── JohnsonJacksonFrictionalStress.H │ │ │ │ │ │ ├── JohnsonJacksonSchaeffer │ │ │ │ │ │ │ ├── JohnsonJacksonSchaefferFrictionalStress.C │ │ │ │ │ │ │ └── JohnsonJacksonSchaefferFrictionalStress.H │ │ │ │ │ │ ├── Schaeffer │ │ │ │ │ │ │ ├── SchaefferFrictionalStress.C │ │ │ │ │ │ │ └── SchaefferFrictionalStress.H │ │ │ │ │ │ └── frictionalStressModel │ │ │ │ │ │ │ ├── frictionalStressModel.C │ │ │ │ │ │ │ ├── frictionalStressModel.H │ │ │ │ │ │ │ └── frictionalStressModelNew.C │ │ │ │ │ ├── granularPressureModel │ │ │ │ │ │ ├── Lun │ │ │ │ │ │ │ ├── LunPressure.C │ │ │ │ │ │ │ └── LunPressure.H │ │ │ │ │ │ ├── SyamlalRogersOBrien │ │ │ │ │ │ │ ├── SyamlalRogersOBrienPressure.C │ │ │ │ │ │ │ └── SyamlalRogersOBrienPressure.H │ │ │ │ │ │ └── granularPressureModel │ │ │ │ │ │ │ ├── granularPressureModel.C │ │ │ │ │ │ │ ├── granularPressureModel.H │ │ │ │ │ │ │ └── granularPressureModelNew.C │ │ │ │ │ ├── kineticTheoryModel │ │ │ │ │ │ ├── kineticTheoryModel.C │ │ │ │ │ │ └── kineticTheoryModel.H │ │ │ │ │ ├── radialModel │ │ │ │ │ │ ├── CarnahanStarling │ │ │ │ │ │ │ ├── CarnahanStarlingRadial.C │ │ │ │ │ │ │ └── CarnahanStarlingRadial.H │ │ │ │ │ │ ├── LunSavage │ │ │ │ │ │ │ ├── LunSavageRadial.C │ │ │ │ │ │ │ └── LunSavageRadial.H │ │ │ │ │ │ ├── SinclairJackson │ │ │ │ │ │ │ ├── SinclairJacksonRadial.C │ │ │ │ │ │ │ └── SinclairJacksonRadial.H │ │ │ │ │ │ └── radialModel │ │ │ │ │ │ │ ├── radialModel.C │ │ │ │ │ │ │ ├── radialModel.H │ │ │ │ │ │ │ └── radialModelNew.C │ │ │ │ │ └── viscosityModel │ │ │ │ │ │ ├── Gidaspow │ │ │ │ │ │ ├── GidaspowViscosity.C │ │ │ │ │ │ └── GidaspowViscosity.H │ │ │ │ │ │ ├── HrenyaSinclair │ │ │ │ │ │ ├── HrenyaSinclairViscosity.C │ │ │ │ │ │ └── HrenyaSinclairViscosity.H │ │ │ │ │ │ ├── Syamlal │ │ │ │ │ │ ├── SyamlalViscosity.C │ │ │ │ │ │ └── SyamlalViscosity.H │ │ │ │ │ │ ├── none │ │ │ │ │ │ ├── noneViscosity.C │ │ │ │ │ │ └── noneViscosity.H │ │ │ │ │ │ └── viscosityModel │ │ │ │ │ │ ├── kineticTheoryViscosityModel.C │ │ │ │ │ │ ├── kineticTheoryViscosityModel.H │ │ │ │ │ │ └── kineticTheoryViscosityModelNew.C │ │ │ │ ├── multiphaseCompressibleMomentumTransportModels.C │ │ │ │ └── phasePressureModel │ │ │ │ │ ├── phasePressureModel.C │ │ │ │ │ └── phasePressureModel.H │ │ │ ├── multiphaseEulerFoam │ │ │ │ ├── Allwclean │ │ │ │ ├── Allwmake │ │ │ │ ├── CourantNo.H │ │ │ │ ├── EEqns.H │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── YEqns.H │ │ │ │ ├── createFieldRefs.H │ │ │ │ ├── createFields.H │ │ │ │ ├── multiphaseEulerFoam.C │ │ │ │ ├── multiphaseSystems │ │ │ │ │ ├── Make │ │ │ │ │ │ ├── files │ │ │ │ │ │ └── options │ │ │ │ │ └── multiphaseSystems.C │ │ │ │ ├── pEqnComps.H │ │ │ │ ├── pU │ │ │ │ │ ├── UEqns.H │ │ │ │ │ └── pEqn.H │ │ │ │ ├── pUf │ │ │ │ │ ├── UEqns.H │ │ │ │ │ └── pEqn.H │ │ │ │ └── setRDeltaT.H │ │ │ ├── multiphaseReactions │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── phaseSurfaceArrheniusReactionRate │ │ │ │ │ ├── makephaseSurfaceArrheniusReactions.C │ │ │ │ │ ├── phaseSurfaceArrheniusReactionRate.H │ │ │ │ │ └── phaseSurfaceArrheniusReactionRateI.H │ │ │ └── phaseSystems │ │ │ │ ├── BlendedInterfacialModel │ │ │ │ ├── BlendedInterfacialModel.C │ │ │ │ ├── BlendedInterfacialModel.H │ │ │ │ └── blendingMethods │ │ │ │ │ ├── blendingMethod │ │ │ │ │ ├── blendingMethod.C │ │ │ │ │ ├── blendingMethod.H │ │ │ │ │ └── blendingMethodNew.C │ │ │ │ │ ├── hyperbolic │ │ │ │ │ ├── hyperbolic.C │ │ │ │ │ └── hyperbolic.H │ │ │ │ │ ├── linear │ │ │ │ │ ├── linear.C │ │ │ │ │ └── linear.H │ │ │ │ │ └── noBlending │ │ │ │ │ ├── noBlending.C │ │ │ │ │ └── noBlending.H │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── PhaseSystems │ │ │ │ ├── HeatTransferPhaseSystem │ │ │ │ │ ├── HeatTransferPhaseSystem.C │ │ │ │ │ ├── HeatTransferPhaseSystem.H │ │ │ │ │ ├── heatTransferPhaseSystem.C │ │ │ │ │ └── heatTransferPhaseSystem.H │ │ │ │ ├── InterfaceCompositionPhaseChangePhaseSystem │ │ │ │ │ ├── InterfaceCompositionPhaseChangePhaseSystem.C │ │ │ │ │ └── InterfaceCompositionPhaseChangePhaseSystem.H │ │ │ │ ├── MomentumTransferPhaseSystem │ │ │ │ │ ├── MomentumTransferPhaseSystem.C │ │ │ │ │ └── MomentumTransferPhaseSystem.H │ │ │ │ ├── OneResistanceHeatTransferPhaseSystem │ │ │ │ │ ├── OneResistanceHeatTransferPhaseSystem.C │ │ │ │ │ └── OneResistanceHeatTransferPhaseSystem.H │ │ │ │ ├── PhaseTransferPhaseSystem │ │ │ │ │ ├── PhaseTransferPhaseSystem.C │ │ │ │ │ └── PhaseTransferPhaseSystem.H │ │ │ │ ├── PopulationBalancePhaseSystem │ │ │ │ │ ├── PopulationBalancePhaseSystem.C │ │ │ │ │ └── PopulationBalancePhaseSystem.H │ │ │ │ ├── ThermalPhaseChangePhaseSystem │ │ │ │ │ ├── ThermalPhaseChangePhaseSystem.C │ │ │ │ │ └── ThermalPhaseChangePhaseSystem.H │ │ │ │ └── TwoResistanceHeatTransferPhaseSystem │ │ │ │ │ ├── TwoResistanceHeatTransferPhaseSystem.C │ │ │ │ │ ├── TwoResistanceHeatTransferPhaseSystem.H │ │ │ │ │ ├── twoResistanceHeatTransferPhaseSystem.C │ │ │ │ │ └── twoResistanceHeatTransferPhaseSystem.H │ │ │ │ ├── alphaContactAngle │ │ │ │ ├── alphaContactAngleFvPatchScalarField.C │ │ │ │ └── alphaContactAngleFvPatchScalarField.H │ │ │ │ ├── diameterModels │ │ │ │ ├── IATE │ │ │ │ │ ├── IATE.C │ │ │ │ │ ├── IATE.H │ │ │ │ │ └── IATEsources │ │ │ │ │ │ ├── IATEsource │ │ │ │ │ │ ├── IATEsource.C │ │ │ │ │ │ └── IATEsource.H │ │ │ │ │ │ ├── dummy │ │ │ │ │ │ ├── dummy.C │ │ │ │ │ │ └── dummy.H │ │ │ │ │ │ ├── phaseChange │ │ │ │ │ │ ├── IATEphaseChange.C │ │ │ │ │ │ └── IATEphaseChange.H │ │ │ │ │ │ ├── randomCoalescence │ │ │ │ │ │ ├── IATErandomCoalescence.C │ │ │ │ │ │ └── IATErandomCoalescence.H │ │ │ │ │ │ ├── turbulentBreakUp │ │ │ │ │ │ ├── IATEturbulentBreakUp.C │ │ │ │ │ │ └── IATEturbulentBreakUp.H │ │ │ │ │ │ ├── wakeEntrainmentCoalescence │ │ │ │ │ │ ├── IATEwakeEntrainmentCoalescence.C │ │ │ │ │ │ └── IATEwakeEntrainmentCoalescence.H │ │ │ │ │ │ └── wallBoiling │ │ │ │ │ │ ├── IATEwallBoiling.C │ │ │ │ │ │ └── IATEwallBoiling.H │ │ │ │ ├── constantDiameter │ │ │ │ │ ├── constantDiameter.C │ │ │ │ │ └── constantDiameter.H │ │ │ │ ├── diameterModel │ │ │ │ │ ├── diameterModel.C │ │ │ │ │ ├── diameterModel.H │ │ │ │ │ └── diameterModelNew.C │ │ │ │ ├── isothermalDiameter │ │ │ │ │ ├── isothermalDiameter.C │ │ │ │ │ └── isothermalDiameter.H │ │ │ │ ├── linearTsubDiameter │ │ │ │ │ ├── linearTsubDiameter.C │ │ │ │ │ └── linearTsubDiameter.H │ │ │ │ ├── sphericalDiameter │ │ │ │ │ ├── sphericalDiameter.C │ │ │ │ │ └── sphericalDiameter.H │ │ │ │ └── velocityGroup │ │ │ │ │ ├── sizeGroup │ │ │ │ │ ├── SecondaryPropertyModel │ │ │ │ │ │ ├── SecondaryPropertyModel.C │ │ │ │ │ │ └── SecondaryPropertyModel.H │ │ │ │ │ ├── shapeModels │ │ │ │ │ │ ├── fractal │ │ │ │ │ │ │ ├── fractal.C │ │ │ │ │ │ │ ├── fractal.H │ │ │ │ │ │ │ └── sinteringModels │ │ │ │ │ │ │ │ ├── KochFriedlander │ │ │ │ │ │ │ │ ├── KochFriedlander.C │ │ │ │ │ │ │ │ └── KochFriedlander.H │ │ │ │ │ │ │ │ ├── noSintering │ │ │ │ │ │ │ │ ├── noSintering.C │ │ │ │ │ │ │ │ └── noSintering.H │ │ │ │ │ │ │ │ └── sinteringModel │ │ │ │ │ │ │ │ ├── sinteringModel.C │ │ │ │ │ │ │ │ └── sinteringModel.H │ │ │ │ │ │ ├── shapeModel │ │ │ │ │ │ │ ├── shapeModel.C │ │ │ │ │ │ │ └── shapeModel.H │ │ │ │ │ │ └── spherical │ │ │ │ │ │ │ ├── spherical.C │ │ │ │ │ │ │ └── spherical.H │ │ │ │ │ ├── sizeGroup.C │ │ │ │ │ ├── sizeGroup.H │ │ │ │ │ └── sizeGroupI.H │ │ │ │ │ ├── velocityGroup.C │ │ │ │ │ ├── velocityGroup.H │ │ │ │ │ └── velocityGroupI.H │ │ │ │ ├── phaseModel │ │ │ │ ├── AnisothermalPhaseModel │ │ │ │ │ ├── AnisothermalPhaseModel.C │ │ │ │ │ └── AnisothermalPhaseModel.H │ │ │ │ ├── InertPhaseModel │ │ │ │ │ ├── InertPhaseModel.C │ │ │ │ │ └── InertPhaseModel.H │ │ │ │ ├── IsothermalPhaseModel │ │ │ │ │ ├── IsothermalPhaseModel.C │ │ │ │ │ └── IsothermalPhaseModel.H │ │ │ │ ├── MovingPhaseModel │ │ │ │ │ ├── MovingPhaseModel.C │ │ │ │ │ └── MovingPhaseModel.H │ │ │ │ ├── MultiComponentPhaseModel │ │ │ │ │ ├── MultiComponentPhaseModel.C │ │ │ │ │ └── MultiComponentPhaseModel.H │ │ │ │ ├── PurePhaseModel │ │ │ │ │ ├── PurePhaseModel.C │ │ │ │ │ └── PurePhaseModel.H │ │ │ │ ├── ReactingPhaseModel │ │ │ │ │ ├── ReactingPhaseModel.C │ │ │ │ │ └── ReactingPhaseModel.H │ │ │ │ ├── StationaryPhaseModel │ │ │ │ │ ├── StationaryPhaseModel.C │ │ │ │ │ └── StationaryPhaseModel.H │ │ │ │ ├── ThermoPhaseModel │ │ │ │ │ ├── ThermoPhaseModel.C │ │ │ │ │ └── ThermoPhaseModel.H │ │ │ │ └── phaseModel │ │ │ │ │ ├── phaseModel.C │ │ │ │ │ ├── phaseModel.H │ │ │ │ │ ├── phaseModelNew.C │ │ │ │ │ └── phaseModels.C │ │ │ │ ├── phasePair │ │ │ │ ├── orderedPhasePair │ │ │ │ │ ├── orderedPhasePair.C │ │ │ │ │ └── orderedPhasePair.H │ │ │ │ ├── phasePair │ │ │ │ │ ├── phasePair.C │ │ │ │ │ ├── phasePair.H │ │ │ │ │ └── phasePairI.H │ │ │ │ └── phasePairKey │ │ │ │ │ ├── phasePairKey.C │ │ │ │ │ └── phasePairKey.H │ │ │ │ ├── phaseSystem │ │ │ │ ├── phaseSystem.C │ │ │ │ ├── phaseSystem.H │ │ │ │ ├── phaseSystemI.H │ │ │ │ ├── phaseSystemNew.C │ │ │ │ ├── phaseSystemSolve.C │ │ │ │ └── phaseSystemTemplates.C │ │ │ │ └── populationBalanceModel │ │ │ │ ├── binaryBreakupModels │ │ │ │ ├── LehrMilliesMewes │ │ │ │ │ ├── LehrMilliesMewes.C │ │ │ │ │ └── LehrMilliesMewes.H │ │ │ │ ├── LuoSvendsen │ │ │ │ │ ├── LuoSvendsen.C │ │ │ │ │ └── LuoSvendsen.H │ │ │ │ ├── binaryBreakupModel │ │ │ │ │ ├── binaryBreakupModel.C │ │ │ │ │ └── binaryBreakupModel.H │ │ │ │ └── powerLawUniformBinary │ │ │ │ │ ├── powerLawUniformBinary.C │ │ │ │ │ └── powerLawUniformBinary.H │ │ │ │ ├── breakupModels │ │ │ │ ├── Laakkonen │ │ │ │ │ ├── Laakkonen.C │ │ │ │ │ └── Laakkonen.H │ │ │ │ ├── breakupModel │ │ │ │ │ ├── breakupModel.C │ │ │ │ │ └── breakupModel.H │ │ │ │ ├── exponential │ │ │ │ │ ├── exponential.C │ │ │ │ │ └── exponential.H │ │ │ │ └── powerLaw │ │ │ │ │ ├── powerLaw.C │ │ │ │ │ └── powerLaw.H │ │ │ │ ├── coalescenceModels │ │ │ │ ├── BrownianCollisions │ │ │ │ │ ├── BrownianCollisions.C │ │ │ │ │ └── BrownianCollisions.H │ │ │ │ ├── CoulaloglouTavlaridesCoalescence │ │ │ │ │ ├── CoulaloglouTavlaridesCoalescence.C │ │ │ │ │ └── CoulaloglouTavlaridesCoalescence.H │ │ │ │ ├── DahnekeInterpolation │ │ │ │ │ ├── DahnekeInterpolation.C │ │ │ │ │ └── DahnekeInterpolation.H │ │ │ │ ├── LehrMilliesMewesCoalescence │ │ │ │ │ ├── LehrMilliesMewesCoalescence.C │ │ │ │ │ └── LehrMilliesMewesCoalescence.H │ │ │ │ ├── Luo │ │ │ │ │ ├── Luo.C │ │ │ │ │ └── Luo.H │ │ │ │ ├── PrinceBlanch │ │ │ │ │ ├── PrinceBlanch.C │ │ │ │ │ └── PrinceBlanch.H │ │ │ │ ├── ballisticCollisions │ │ │ │ │ ├── ballisticCollisions.C │ │ │ │ │ └── ballisticCollisions.H │ │ │ │ ├── coalescenceModel │ │ │ │ │ ├── coalescenceModel.C │ │ │ │ │ └── coalescenceModel.H │ │ │ │ ├── constantCoalescence │ │ │ │ │ ├── constantCoalescence.C │ │ │ │ │ └── constantCoalescence.H │ │ │ │ ├── hydrodynamic │ │ │ │ │ ├── hydrodynamic.C │ │ │ │ │ └── hydrodynamic.H │ │ │ │ └── turbulentShear │ │ │ │ │ ├── turbulentShear.C │ │ │ │ │ └── turbulentShear.H │ │ │ │ ├── daughterSizeDistributionModels │ │ │ │ ├── LaakkonenDaughterSizeDistribution │ │ │ │ │ ├── LaakkonenDaughterSizeDistribution.C │ │ │ │ │ └── LaakkonenDaughterSizeDistribution.H │ │ │ │ ├── daughterSizeDistributionModel │ │ │ │ │ ├── daughterSizeDistributionModel.C │ │ │ │ │ └── daughterSizeDistributionModel.H │ │ │ │ └── uniformBinary │ │ │ │ │ ├── uniformBinary.C │ │ │ │ │ └── uniformBinary.H │ │ │ │ ├── driftModels │ │ │ │ ├── constantDrift │ │ │ │ │ ├── constantDrift.C │ │ │ │ │ └── constantDrift.H │ │ │ │ ├── densityChange │ │ │ │ │ ├── densityChange.C │ │ │ │ │ └── densityChange.H │ │ │ │ ├── driftModel │ │ │ │ │ ├── driftModel.C │ │ │ │ │ └── driftModel.H │ │ │ │ └── phaseChange │ │ │ │ │ ├── phaseChange.C │ │ │ │ │ └── phaseChange.H │ │ │ │ ├── nucleationModels │ │ │ │ ├── nucleationModel │ │ │ │ │ ├── nucleationModel.C │ │ │ │ │ └── nucleationModel.H │ │ │ │ ├── reactionDriven │ │ │ │ │ ├── reactionDriven.C │ │ │ │ │ └── reactionDriven.H │ │ │ │ └── wallBoiling │ │ │ │ │ ├── wallBoiling.C │ │ │ │ │ └── wallBoiling.H │ │ │ │ └── populationBalanceModel │ │ │ │ ├── populationBalanceModel.C │ │ │ │ ├── populationBalanceModel.H │ │ │ │ └── populationBalanceModelI.H │ │ ├── multiphaseInterFoam │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── correctPhi.H │ │ │ ├── createFields.H │ │ │ ├── initCorrectPhi.H │ │ │ ├── multiphaseInterFoam.C │ │ │ ├── multiphaseMixture │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── alphaContactAngle │ │ │ │ │ ├── alphaContactAngleFvPatchScalarField.C │ │ │ │ │ └── alphaContactAngleFvPatchScalarField.H │ │ │ │ ├── multiphaseMixture.C │ │ │ │ ├── multiphaseMixture.H │ │ │ │ └── phase │ │ │ │ │ ├── phase.C │ │ │ │ │ └── phase.H │ │ │ └── pEqn.H │ │ ├── potentialFreeSurfaceFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── correctPhi.H │ │ │ ├── createFields.H │ │ │ ├── initCorrectPhi.H │ │ │ ├── pEqn.H │ │ │ └── potentialFreeSurfaceFoam.C │ │ └── twoLiquidMixingFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── alphaControls.H │ │ │ ├── alphaCourantNo.H │ │ │ ├── alphaDiffusionEqn.H │ │ │ ├── alphaEqn.H │ │ │ ├── alphaEqnSubCycle.H │ │ │ ├── createFields.H │ │ │ ├── pEqn.H │ │ │ └── twoLiquidMixingFoam.C │ └── stressAnalysis │ │ └── solidDisplacementFoam │ │ ├── Allwmake │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── calculateStress.H │ │ ├── createControl.H │ │ ├── createControls.H │ │ ├── createFieldRefs.H │ │ ├── createFields.H │ │ ├── derivedFvPatchFields │ │ ├── hydrostaticDisplacement │ │ │ ├── hydrostaticDisplacementFvPatchVectorField.C │ │ │ └── hydrostaticDisplacementFvPatchVectorField.H │ │ └── tractionDisplacement │ │ │ ├── tractionDisplacementFvPatchVectorField.C │ │ │ ├── tractionDisplacementFvPatchVectorField.H │ │ │ └── tractionDisplacementFvPatchVectorFieldTemplates.C │ │ ├── readSolidDisplacementFoamControls.H │ │ ├── readThermophysicalProperties.H │ │ ├── solidDisplacementFoam.C │ │ ├── solidDisplacementThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── solidDisplacementThermo.C │ │ └── solidDisplacementThermo.H │ │ └── solidEquilibriumDisplacementFoam │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── calculateStress.H │ │ ├── createFields.H │ │ ├── kineticEnergyLimiter.H │ │ ├── readSteadyStressFoamControls.H │ │ ├── solidEquilibriumDisplacementFoam.C │ │ └── tractionDisplacementCorrection │ │ ├── tractionDisplacementCorrectionFvPatchVectorField.C │ │ └── tractionDisplacementCorrectionFvPatchVectorField.H ├── test │ ├── BinSum │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-BinSum.C │ ├── Circulator │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-Circulator.C │ ├── CompactIOList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-CompactIOList.C │ ├── CompactListList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-CompactListList.C │ ├── DLList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-DLList.C │ ├── Dictionary │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-Dictionary.C │ ├── Distribution │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-Distribution.C │ ├── Distribution2 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-Distribution2.C │ │ ├── createGraphs │ │ ├── cumulativeTest_expected │ │ ├── densityTest_expected │ │ └── testDict │ ├── DynamicField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-DynamicField.C │ ├── DynamicList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-DynamicList.C │ ├── FixedList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-FixedList.C │ ├── Function1 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-Function1.C │ │ ├── linearRamp │ │ ├── quadraticRamp │ │ ├── quarterCosineRamp │ │ ├── quarterSineRamp │ │ ├── reverseQuarterSineRamp │ │ ├── scaleHalfCosineRamp │ │ ├── sine │ │ ├── square │ │ └── table │ ├── GAMGAgglomeration │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-GAMGAgglomeration.C │ ├── HashPtrTable │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-hashPtrTable.C │ ├── HashSet │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-hashSet.C │ ├── HashTable │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-hashTable.C │ ├── HashTable2 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-HashTable2.C │ ├── HashTable3 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-HashTable3.C │ ├── Hashing │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-Hashing.C │ │ └── hashingTests │ ├── IOField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-IOField.C │ ├── ISLList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-ISLList.C │ ├── IStringStream │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-IStringStream.C │ ├── IndirectList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-IndirectList.C │ ├── List │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-List.C │ ├── ListHashTable │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-ListHashTable.C │ ├── ListOps │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-ListOps.C │ ├── Map │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-Map.C │ ├── Matrix │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-Matrix.C │ ├── NamedEnum │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-namedEnum.C │ ├── ODE │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-ODE.C │ ├── OStringStream │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-OStringStream.C │ ├── POSIX │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-POSIX.C │ ├── PackedList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PackedList.C │ ├── PackedList1 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PackedList1.C │ ├── PackedList3 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PackedList3.C │ ├── PackedList4 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PackedList4.C │ ├── PatchEdgeFaceWave │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PatchEdgeFaceWave.C │ ├── PatchTools │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PatchTools.C │ ├── PointEdgeWave │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PointEdgeWave.C │ ├── Polynomial │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-Polynomial.C │ ├── PtrList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PtrList.C │ ├── PtrListDictionary │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PtrListDictionary.C │ ├── SLList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-SLList.C │ ├── Tuple2 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-Tuple2.C │ ├── UDictionary │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-UDictionary.C │ ├── UIndirectList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-UIndirectList.C │ ├── UniformField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-UniformField.C │ ├── alloc │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-alloc.C │ │ ├── Test-malloc.C │ │ ├── Test-new.C │ │ └── Test.C │ ├── callback │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-callback.C │ ├── codeStream │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-codeStream.C │ │ └── codeStreamDict1 │ ├── cubicEqn │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-cubicEqn.C │ ├── cyclic │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-cyclic.C │ │ └── createFields.H │ ├── decomposedBlockData │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-decomposedBlockData.C │ ├── delete │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-delete.C │ ├── dictionary │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-dictionary.C │ │ ├── system │ │ │ └── controlDict │ │ ├── testDict │ │ ├── testDict2 │ │ ├── testDictInc │ │ ├── testDictRegex │ │ ├── testDotDict │ │ ├── testSlashDict │ │ ├── testSlashDict2 │ │ └── value │ ├── dimensionedType │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-dimensionedType.C │ ├── dynamicIndexedOctree │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-dynamicIndexedOctree.C │ ├── error │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-error.C │ ├── extendedStencil │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-ExtendedStencil.C │ │ └── Test-ExtendedStencil2.C │ ├── fieldDependency │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-fieldDependency.C │ ├── fieldMapping │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── README.txt │ │ ├── Test-fieldMapping.C │ │ └── pipe1D │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── manualDecomposition │ │ │ ├── polyMesh │ │ │ │ └── boundary │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── fileName │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-fileName.C │ ├── fileNameClean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-fileNameClean.C │ ├── findCell-octree │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-findCell-octree.C │ ├── findSphereFeatureEdges-octree │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-findSphereFeatureEdges-octree.C │ ├── findTimes │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-findTimes.C │ ├── foamVersion │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-foamVersionString.C │ ├── fvSolutionCombine │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-fvSolutionCombine.C │ ├── fvc │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-fvc.C │ ├── globalIndex │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-globalIndex.C │ ├── globalMeshData │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-globalMeshData.C │ ├── graph │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-graph.C │ │ └── graphTest2.C │ ├── graphXi │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-graphXi.C │ │ ├── r.agr │ │ ├── r.dat │ │ ├── r.gplt │ │ ├── r.ps │ │ └── r.xy │ ├── hexRef8 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── README.txt │ │ ├── Test-hexRef8.C │ │ └── block │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── manualDecomposition │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── io │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-io.C │ ├── labelRanges │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-labelRanges.C │ ├── liquid │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-liquid.C │ ├── mappedPatch │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-MappedPatch.C │ ├── memInfo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-memInfo.C │ ├── mesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-mesh.C │ ├── mkdir │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-mkdir.C │ ├── momentOfInertia │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-momentOfInertia.C │ ├── mvBak │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-mvBak.C │ ├── nonUniformTable │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-nonUniformTable.C │ │ └── thermoDict │ ├── nullObject │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-nullObject.C │ ├── pTraits │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-pTraits.C │ ├── parallel-communicators │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-parallel-communicators.C │ ├── parallel-nonBlocking │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-parallel-nonBlocking.C │ ├── parallel │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-parallel.C │ ├── passiveParticle │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-passiveParticle.C │ ├── patchRegion │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── README │ │ ├── Test-patchRegion.C │ │ └── cavity_pinched │ │ │ ├── README.txt │ │ │ ├── constant │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── collapseDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── pointField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PointField.C │ ├── polygonTriangulate │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-polygonTriangulate.C │ ├── prefixOSstream │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-prefixOSstream.C │ ├── primitivePatch │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-PrimitivePatch.C │ ├── quaternion │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-quaternion.C │ ├── reconstruct │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-reconstruct.C │ ├── regex │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-regex.C │ │ └── testRegexps │ ├── rigidBodyDynamics │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-rigidBodyDynamics.C │ │ ├── pendulum │ │ ├── pendulumAndSpring │ │ ├── pendulumAndSpring.gnuplot │ │ ├── sphericalJoint │ │ ├── spring │ │ ├── spring.gnuplot │ │ └── triplePendulum │ ├── router │ │ ├── Gather │ │ │ ├── Gather.C │ │ │ ├── Gather.H │ │ │ ├── GatherBase.C │ │ │ └── GatherBase.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-processorRouter.C │ │ ├── router.C │ │ ├── router.H │ │ └── routerDict │ ├── sha1 │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-SHA1.C │ ├── simpleMatrix │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-simpleMatrix.C │ ├── sizeof │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-sizeof.C │ ├── slicedField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-slicedField.C │ ├── sort │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-sortList.C │ ├── speed │ │ ├── scalarSpeed │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── Test-scalarSpeed.C │ │ └── vectorSpeed │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ └── Test-vectorSpeed.C │ ├── sphericalTensorField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-sphericalTensorField.C │ ├── spline │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-spline.C │ │ └── test-splines │ ├── string │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-string.C │ ├── stringList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-stringList.C │ ├── symmTensorField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-symmTensorField.C │ ├── syncTools │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-syncTools.C │ ├── tensor │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-tensor.C │ ├── tensor2D │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-tensor2D.C │ ├── tetTetOverlap │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-tetTetOverlap.C │ ├── thermoMixture │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Test-thermoMixture.C │ │ └── thermoDict │ ├── tmpField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-tmpField.C │ ├── tokenise │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-tokenise.C │ ├── triTet │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-triTet.C │ ├── vector │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-vector.C │ ├── vectorTools │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-vectorTools.C │ ├── volField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── README.txt │ │ ├── Test-volField.C │ │ └── cavity │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── volPointInterpolation │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-volPointInterpolation.C │ ├── wallDist │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-wallDist.C │ └── wordRe │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── Test-wordRe.C │ │ └── testRegexps └── utilities │ ├── mesh │ ├── advanced │ │ ├── PDRMesh │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── PDRMesh.C │ │ ├── autoRefineMesh │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── autoRefineMesh.C │ │ ├── collapseEdges │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── collapseEdges.C │ │ ├── combinePatchFaces │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── combinePatchFaces.C │ │ ├── modifyMesh │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── cellSplitter.C │ │ │ ├── cellSplitter.H │ │ │ └── modifyMesh.C │ │ ├── refineHexMesh │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── refineHexMesh.C │ │ ├── refineWallLayer │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── refineWallLayer.C │ │ ├── refinementLevel │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── refinementLevel.C │ │ ├── removeFaces │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── removeFaces.C │ │ ├── selectCells │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── edgeStats.C │ │ │ ├── edgeStats.H │ │ │ └── selectCells.C │ │ └── splitCells │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ └── splitCells.C │ ├── conversion │ │ ├── Optional │ │ │ ├── Allwmake │ │ │ └── ccm26ToFoam │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── README │ │ │ │ └── ccm26ToFoam.C │ │ ├── ansysToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── ansysToFoam.C │ │ │ └── ansysToFoam.L │ │ ├── cfx4ToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── cfx4ToFoam.C │ │ │ ├── hexBlock.C │ │ │ └── hexBlock.H │ │ ├── datToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── datToFoam.C │ │ ├── fluent3DMeshToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── fluent3DMeshToFoam.C │ │ │ └── fluent3DMeshToFoam.L │ │ ├── fluentMeshToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── README.txt │ │ │ ├── cellShapeRecognition.H │ │ │ ├── create3DCellShape.C │ │ │ ├── extrudedQuadCellShape.C │ │ │ ├── extrudedTriangleCellShape.C │ │ │ ├── fluentMeshToFoam.C │ │ │ └── fluentMeshToFoam.L │ │ ├── foamMeshToFluent │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── fluentFvMesh.C │ │ │ ├── fluentFvMesh.H │ │ │ └── foamMeshToFluent.C │ │ ├── foamToStarMesh │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── foamToStarMesh.C │ │ │ └── getTimeIndex.H │ │ ├── foamToSurface │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── foamToSurface.C │ │ │ └── getTimeIndex.H │ │ ├── gambitToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── gambitToFoam.C │ │ │ └── gambitToFoam.L │ │ ├── gmshToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── gmsh │ │ │ │ ├── CubeVer1.msh │ │ │ │ ├── mesh-1.geo │ │ │ │ ├── mesh-test-2.3.1-small.msh │ │ │ │ └── mesh-test-2.4.1-small.msh │ │ │ └── gmshToFoam.C │ │ ├── ideasUnvToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── ideasUnvToFoam.C │ │ │ └── unv │ │ │ │ ├── Cylinder_with_Groups.unv │ │ │ │ ├── block_with_inlet_outlet.UNV │ │ │ │ ├── face_groups_Cubit.unv │ │ │ │ ├── iniettore1.unv │ │ │ │ ├── mesh.unv │ │ │ │ ├── test.unv │ │ │ │ ├── test2.unv │ │ │ │ └── threeZonesAll.unv │ │ ├── kivaToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── README │ │ │ ├── checkPatch.H │ │ │ ├── kiva3v-valves.pdf │ │ │ ├── kivaToFoam.C │ │ │ └── readKivaGrid.H │ │ ├── mshToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── mshToFoam.C │ │ │ └── testFiles │ │ │ │ ├── s_mesh_hex1.msh │ │ │ │ └── s_mesh_tet1.msh │ │ ├── netgenNeutralToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── netgenNeutralToFoam.C │ │ ├── plot3dToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── hexBlock.C │ │ │ ├── hexBlock.H │ │ │ └── plot3dToFoam.C │ │ ├── sammToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── calcPointCells.C │ │ │ ├── createBoundaryFaces.C │ │ │ ├── createPolyBoundary.C │ │ │ ├── createPolyCells.C │ │ │ ├── fillSammAddressingTable.C │ │ │ ├── fillSammCellShapeTable.C │ │ │ ├── fixCollapsedEdges.C │ │ │ ├── purgeCellShapes.C │ │ │ ├── readBoundary.C │ │ │ ├── readCells.C │ │ │ ├── readCouples.C │ │ │ ├── readPoints.C │ │ │ ├── sammMesh.C │ │ │ ├── sammMesh.H │ │ │ ├── sammToFoam.C │ │ │ ├── starMesh.H │ │ │ └── writeMesh.C │ │ ├── star3ToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── calcPointCells.C │ │ │ ├── coupledFacePair.C │ │ │ ├── coupledFacePair.H │ │ │ ├── createBoundaryFaces.C │ │ │ ├── createCoupleMatches.C │ │ │ ├── createPolyBoundary.C │ │ │ ├── createPolyCells.C │ │ │ ├── fixCollapsedEdges.C │ │ │ ├── mergeCoupleFacePoints.C │ │ │ ├── purgeCellShapes.C │ │ │ ├── readBoundary.C │ │ │ ├── readCells.C │ │ │ ├── readCouples.C │ │ │ ├── readPoints.C │ │ │ ├── readSeparatedPoints.C │ │ │ ├── star3ToFoam.C │ │ │ ├── starMesh.C │ │ │ ├── starMesh.H │ │ │ └── writeMesh.C │ │ ├── star4ToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── star4ToFoam.C │ │ ├── tetgenToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── beam.1.ele │ │ │ ├── beam.1.face │ │ │ ├── beam.1.node │ │ │ └── tetgenToFoam.C │ │ ├── vtkUnstructuredToFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── vtkUnstructuredToFoam.C │ │ └── writeMeshObj │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ └── writeMeshObj.C │ ├── generation │ │ ├── Allwmake │ │ ├── blockMesh │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── blockMesh.C │ │ │ └── mergePatchPairs.H │ │ ├── extrude │ │ │ ├── extrudeMesh │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── createTimeExtruded.H │ │ │ │ ├── extrudeMesh.C │ │ │ │ └── extrudedMesh │ │ │ │ │ ├── extrudedMesh.C │ │ │ │ │ ├── extrudedMesh.H │ │ │ │ │ └── extrudedMeshTemplates.C │ │ │ └── extrudeToRegionMesh │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ └── extrudeToRegionMesh.C │ │ ├── extrude2DMesh │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── extrude2DMesh.C │ │ │ └── extrude2DMesh │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── extrude2DMesh │ │ │ │ ├── extrude2DMesh.C │ │ │ │ └── extrude2DMesh.H │ │ │ │ └── patchToPoly2DMesh │ │ │ │ ├── patchToPoly2DMesh.C │ │ │ │ └── patchToPoly2DMesh.H │ │ ├── foamyMesh │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── cellSizeAndAlignmentGrid │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── cellSizeAndAlignmentGrid.C │ │ │ ├── conformalVoronoi2DMesh │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── cv2DControls │ │ │ │ │ ├── cv2DControls.C │ │ │ │ │ ├── cv2DControls.H │ │ │ │ │ └── cv2DControlsI.H │ │ │ ├── conformalVoronoiMesh │ │ │ │ ├── DelaunayMesh │ │ │ │ │ ├── DelaunayMesh.C │ │ │ │ │ ├── DelaunayMesh.H │ │ │ │ │ ├── DelaunayMeshI.H │ │ │ │ │ ├── DelaunayMeshIO.C │ │ │ │ │ ├── DistributedDelaunayMesh.C │ │ │ │ │ └── DistributedDelaunayMesh.H │ │ │ │ ├── DelaunayMeshTools │ │ │ │ │ ├── DelaunayMeshTools.C │ │ │ │ │ ├── DelaunayMeshTools.H │ │ │ │ │ └── DelaunayMeshToolsTemplates.C │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── PrintTable │ │ │ │ │ ├── PrintTable.C │ │ │ │ │ ├── PrintTable.H │ │ │ │ │ └── PrintTableI.H │ │ │ │ ├── backgroundMeshDecomposition │ │ │ │ │ ├── backgroundMeshDecomposition.C │ │ │ │ │ ├── backgroundMeshDecomposition.H │ │ │ │ │ ├── backgroundMeshDecompositionI.H │ │ │ │ │ └── backgroundMeshDecompositionTemplates.C │ │ │ │ ├── cellShapeControl │ │ │ │ │ ├── cellAspectRatioControl │ │ │ │ │ │ ├── cellAspectRatioControl.C │ │ │ │ │ │ └── cellAspectRatioControl.H │ │ │ │ │ ├── cellShapeControl │ │ │ │ │ │ ├── cellShapeControl.C │ │ │ │ │ │ ├── cellShapeControl.H │ │ │ │ │ │ └── cellShapeControlI.H │ │ │ │ │ ├── cellShapeControlMesh │ │ │ │ │ │ ├── cellShapeControlMesh.C │ │ │ │ │ │ ├── cellShapeControlMesh.H │ │ │ │ │ │ └── cellShapeControlMeshI.H │ │ │ │ │ ├── cellSizeAndAlignmentControl │ │ │ │ │ │ ├── cellSizeAndAlignmentControl │ │ │ │ │ │ │ ├── cellSizeAndAlignmentControl.C │ │ │ │ │ │ │ └── cellSizeAndAlignmentControl.H │ │ │ │ │ │ ├── cellSizeAndAlignmentControls.C │ │ │ │ │ │ ├── cellSizeAndAlignmentControls.H │ │ │ │ │ │ ├── fileControl │ │ │ │ │ │ │ ├── fileControl.C │ │ │ │ │ │ │ └── fileControl.H │ │ │ │ │ │ └── searchableSurfaceControl │ │ │ │ │ │ │ ├── searchableSurfaceControl.C │ │ │ │ │ │ │ └── searchableSurfaceControl.H │ │ │ │ │ ├── controlMeshRefinement │ │ │ │ │ │ ├── controlMeshRefinement.C │ │ │ │ │ │ └── controlMeshRefinement.H │ │ │ │ │ └── smoothAlignmentSolver │ │ │ │ │ │ ├── smoothAlignmentSolver.C │ │ │ │ │ │ └── smoothAlignmentSolver.H │ │ │ │ ├── cellSizeControlSurfaces │ │ │ │ │ ├── cellSizeFunction │ │ │ │ │ │ ├── cellSizeFunction │ │ │ │ │ │ │ ├── cellSizeFunction.C │ │ │ │ │ │ │ └── cellSizeFunction.H │ │ │ │ │ │ ├── linearDistance │ │ │ │ │ │ │ ├── linearDistance.C │ │ │ │ │ │ │ └── linearDistance.H │ │ │ │ │ │ ├── linearSpatial │ │ │ │ │ │ │ ├── linearSpatial.C │ │ │ │ │ │ │ └── linearSpatial.H │ │ │ │ │ │ ├── surfaceOffsetLinearDistance │ │ │ │ │ │ │ ├── surfaceOffsetLinearDistance.C │ │ │ │ │ │ │ └── surfaceOffsetLinearDistance.H │ │ │ │ │ │ ├── uniform │ │ │ │ │ │ │ ├── uniform.C │ │ │ │ │ │ │ └── uniform.H │ │ │ │ │ │ └── uniformDistance │ │ │ │ │ │ │ ├── uniformDistance.C │ │ │ │ │ │ │ └── uniformDistance.H │ │ │ │ │ └── surfaceCellSizeFunction │ │ │ │ │ │ ├── cellSizeCalculationType │ │ │ │ │ │ ├── automatic │ │ │ │ │ │ │ ├── automatic.C │ │ │ │ │ │ │ └── automatic.H │ │ │ │ │ │ ├── cellSizeCalculationType │ │ │ │ │ │ │ ├── cellSizeCalculationType.C │ │ │ │ │ │ │ └── cellSizeCalculationType.H │ │ │ │ │ │ └── fieldFromFile │ │ │ │ │ │ │ ├── fieldFromFile.C │ │ │ │ │ │ │ └── fieldFromFile.H │ │ │ │ │ │ ├── nonUniformField │ │ │ │ │ │ ├── nonUniformField.C │ │ │ │ │ │ └── nonUniformField.H │ │ │ │ │ │ ├── surfaceCellSizeFunction │ │ │ │ │ │ ├── surfaceCellSizeFunction.C │ │ │ │ │ │ └── surfaceCellSizeFunction.H │ │ │ │ │ │ └── uniformValue │ │ │ │ │ │ ├── uniformValue.C │ │ │ │ │ │ └── uniformValue.H │ │ │ │ ├── conformalVoronoiMesh │ │ │ │ │ ├── CGALTriangulation3DKernel.H │ │ │ │ │ ├── CGALTriangulation3Ddefs.H │ │ │ │ │ ├── conformalVoronoiMesh.C │ │ │ │ │ ├── conformalVoronoiMesh.H │ │ │ │ │ ├── conformalVoronoiMeshCalcDualMesh.C │ │ │ │ │ ├── conformalVoronoiMeshConformToSurface.C │ │ │ │ │ ├── conformalVoronoiMeshFeaturePoints.C │ │ │ │ │ ├── conformalVoronoiMeshI.H │ │ │ │ │ ├── conformalVoronoiMeshIO.C │ │ │ │ │ ├── conformalVoronoiMeshTemplates.C │ │ │ │ │ ├── conformalVoronoiMeshZones.C │ │ │ │ │ ├── featurePointConformer │ │ │ │ │ │ ├── featurePointConformer.C │ │ │ │ │ │ ├── featurePointConformer.H │ │ │ │ │ │ ├── featurePointConformerI.H │ │ │ │ │ │ ├── featurePointConformerSpecialisations.C │ │ │ │ │ │ ├── pointFeatureEdgesTypes.C │ │ │ │ │ │ └── pointFeatureEdgesTypes.H │ │ │ │ │ ├── indexedCell │ │ │ │ │ │ ├── indexedCell.C │ │ │ │ │ │ ├── indexedCell.H │ │ │ │ │ │ ├── indexedCellChecks.C │ │ │ │ │ │ ├── indexedCellChecks.H │ │ │ │ │ │ ├── indexedCellEnum.C │ │ │ │ │ │ ├── indexedCellEnum.H │ │ │ │ │ │ ├── indexedCellI.H │ │ │ │ │ │ ├── indexedCellOps.H │ │ │ │ │ │ └── indexedCellOpsTemplates.C │ │ │ │ │ ├── indexedVertex │ │ │ │ │ │ ├── indexedVertex.C │ │ │ │ │ │ ├── indexedVertex.H │ │ │ │ │ │ ├── indexedVertexEnum.C │ │ │ │ │ │ ├── indexedVertexEnum.H │ │ │ │ │ │ ├── indexedVertexI.H │ │ │ │ │ │ ├── indexedVertexOps.H │ │ │ │ │ │ └── indexedVertexOpsTemplates.C │ │ │ │ │ └── pointConversion.H │ │ │ │ ├── conformationSurfaces │ │ │ │ │ ├── conformationSurfaces.C │ │ │ │ │ ├── conformationSurfaces.H │ │ │ │ │ └── conformationSurfacesI.H │ │ │ │ ├── cvControls │ │ │ │ │ ├── cvControls.C │ │ │ │ │ ├── cvControls.H │ │ │ │ │ └── cvControlsI.H │ │ │ │ ├── faceAreaWeightModel │ │ │ │ │ ├── faceAreaWeightModel │ │ │ │ │ │ ├── faceAreaWeightModel.C │ │ │ │ │ │ └── faceAreaWeightModel.H │ │ │ │ │ └── piecewiseLinearRamp │ │ │ │ │ │ ├── piecewiseLinearRamp.C │ │ │ │ │ │ └── piecewiseLinearRamp.H │ │ │ │ ├── initialPointsMethod │ │ │ │ │ ├── autoDensity │ │ │ │ │ │ ├── autoDensity.C │ │ │ │ │ │ └── autoDensity.H │ │ │ │ │ ├── bodyCentredCubic │ │ │ │ │ │ ├── bodyCentredCubic.C │ │ │ │ │ │ └── bodyCentredCubic.H │ │ │ │ │ ├── faceCentredCubic │ │ │ │ │ │ ├── faceCentredCubic.C │ │ │ │ │ │ └── faceCentredCubic.H │ │ │ │ │ ├── initialPointsMethod │ │ │ │ │ │ ├── initialPointsMethod.C │ │ │ │ │ │ └── initialPointsMethod.H │ │ │ │ │ ├── pointFile │ │ │ │ │ │ ├── pointFile.C │ │ │ │ │ │ └── pointFile.H │ │ │ │ │ ├── rayShooting │ │ │ │ │ │ ├── rayShooting.C │ │ │ │ │ │ └── rayShooting.H │ │ │ │ │ └── uniformGrid │ │ │ │ │ │ ├── uniformGrid.C │ │ │ │ │ │ └── uniformGrid.H │ │ │ │ ├── pointPairs │ │ │ │ │ ├── pointPairs.C │ │ │ │ │ └── pointPairs.H │ │ │ │ ├── relaxationModel │ │ │ │ │ ├── adaptiveLinear │ │ │ │ │ │ ├── adaptiveLinear.C │ │ │ │ │ │ └── adaptiveLinear.H │ │ │ │ │ ├── rampHoldFall │ │ │ │ │ │ ├── rampHoldFall.C │ │ │ │ │ │ └── rampHoldFall.H │ │ │ │ │ └── relaxationModel │ │ │ │ │ │ ├── relaxationModel.C │ │ │ │ │ │ └── relaxationModel.H │ │ │ │ ├── searchableSurfaceFeatures │ │ │ │ │ ├── searchableBoxFeatures.C │ │ │ │ │ ├── searchableBoxFeatures.H │ │ │ │ │ ├── searchablePlateFeatures.C │ │ │ │ │ ├── searchablePlateFeatures.H │ │ │ │ │ ├── searchableSurfaceFeatures.C │ │ │ │ │ ├── searchableSurfaceFeatures.H │ │ │ │ │ ├── triSurfaceMeshFeatures.C │ │ │ │ │ └── triSurfaceMeshFeatures.H │ │ │ │ └── vectorTools │ │ │ │ │ └── vectorTools.H │ │ │ ├── foamyHexMesh │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── foamyHexMesh.C │ │ │ ├── foamyHexMeshBackgroundMesh │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── foamyHexMeshBackgroundMesh.C │ │ │ ├── foamyHexMeshSurfaceSimplify │ │ │ │ ├── Allwmake │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── foamyHexMeshSurfaceSimplify.C │ │ │ │ └── foamyHexMeshSurfaceSimplify_non_octree.C │ │ │ └── foamyQuadMesh │ │ │ │ ├── CGALTriangulation2DKernel.H │ │ │ │ ├── CGALTriangulation2Ddefs.H │ │ │ │ ├── CV2D.C │ │ │ │ ├── CV2D.H │ │ │ │ ├── CV2DI.H │ │ │ │ ├── CV2DIO.C │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── foamyQuadMesh.C │ │ │ │ ├── indexedFace.H │ │ │ │ ├── indexedFaceI.H │ │ │ │ ├── indexedVertex.H │ │ │ │ ├── indexedVertexI.H │ │ │ │ ├── insertBoundaryConformPointPairs.C │ │ │ │ ├── insertFeaturePoints.C │ │ │ │ ├── insertSurfaceNearPointPairs.C │ │ │ │ ├── insertSurfaceNearestPointPairs.C │ │ │ │ ├── shortEdgeFilter2D.C │ │ │ │ └── shortEdgeFilter2D.H │ │ └── snappyHexMesh │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ └── snappyHexMesh.C │ └── manipulation │ │ ├── attachMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── attachMesh.C │ │ ├── autoPatch │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── autoPatch.C │ │ ├── checkMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── checkGeometry.C │ │ ├── checkGeometry.H │ │ ├── checkMesh.C │ │ ├── checkMeshQuality.C │ │ ├── checkMeshQuality.H │ │ ├── checkTools.C │ │ ├── checkTools.H │ │ ├── checkTopology.C │ │ ├── checkTopology.H │ │ ├── printMeshStats.C │ │ └── printMeshStats.H │ │ ├── createBaffles │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createBaffles.C │ │ └── faceSelection │ │ │ ├── faceSelection.C │ │ │ ├── faceSelection.H │ │ │ ├── faceZoneSelection.C │ │ │ ├── faceZoneSelection.H │ │ │ ├── searchableSurfaceSelection.C │ │ │ └── searchableSurfaceSelection.H │ │ ├── createPatch │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── createPatch.C │ │ ├── deformedGeom │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── deformedGeom.C │ │ ├── flattenMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── flattenMesh.C │ │ ├── insideCells │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── insideCells.C │ │ ├── mergeBaffles │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── mergeBaffles.C │ │ ├── mergeMeshes │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createTimes.H │ │ ├── mergeMeshes.C │ │ ├── mergePolyMesh.C │ │ └── mergePolyMesh.H │ │ ├── mirrorMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── mirrorFvMesh.C │ │ ├── mirrorFvMesh.H │ │ ├── mirrorMesh.C │ │ └── readMirrorDict.H │ │ ├── moveDynamicMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── moveDynamicMesh.C │ │ ├── moveEngineMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── moveEngineMesh.C │ │ ├── moveMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── moveMesh.C │ │ ├── objToVTK │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── objToVTK.C │ │ ├── orientFaceZone │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── orientFaceZone.C │ │ ├── polyDualMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── meshDualiser.C │ │ ├── meshDualiser.H │ │ └── polyDualMesh.C │ │ ├── refineMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── refineMesh.C │ │ ├── renumberMesh │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── renumberMesh.C │ │ ├── rotateMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── rotateMesh.C │ │ ├── setSet │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── setSet.C │ │ ├── setsToZones │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── setsToZones.C │ │ ├── singleCellMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── singleCellMesh.C │ │ ├── splitBaffles │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── splitBaffles.C │ │ ├── splitMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── regionSide.C │ │ ├── regionSide.H │ │ └── splitMesh.C │ │ ├── splitMeshRegions │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── splitMeshRegions.C │ │ ├── stitchMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── stitchMesh.C │ │ ├── subsetMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── subsetMesh.C │ │ ├── topoSet │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── topoSet.C │ │ ├── transformPoints │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createTransforms.H │ │ └── transformPoints.C │ │ └── zipUpMesh │ │ ├── Make │ │ ├── files │ │ └── options │ │ └── zipUpMesh.C │ ├── miscellaneous │ ├── foamDictionary │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── foamDictionary.C │ ├── foamFormatConvert │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── foamFormatConvert.C │ │ └── writeMeshObject.H │ ├── foamListTimes │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── foamListTimes.C │ └── patchSummary │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── patchSummary.C │ │ ├── patchSummaryTemplates.C │ │ └── patchSummaryTemplates.H │ ├── parallelProcessing │ ├── decomposePar │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── decomposePar.C │ │ ├── dimFieldDecomposer.C │ │ ├── dimFieldDecomposer.H │ │ ├── dimFieldDecomposerDecomposeFields.C │ │ ├── domainDecomposition.C │ │ ├── domainDecomposition.H │ │ ├── domainDecompositionDistribute.C │ │ ├── domainDecompositionMesh.C │ │ ├── domainDecompositionTemplates.C │ │ ├── lagrangianFieldDecomposer.C │ │ ├── lagrangianFieldDecomposer.H │ │ ├── lagrangianFieldDecomposerDecomposeFields.C │ │ ├── pointFieldDecomposer.C │ │ ├── pointFieldDecomposer.H │ │ ├── pointFieldDecomposerDecomposeFields.C │ │ ├── readFields.C │ │ └── readFields.H │ ├── reconstructPar │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── checkFaceAddressingComp.H │ │ └── reconstructPar.C │ ├── reconstructParMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── reconstructParMesh.C │ └── redistributePar │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── loadOrCreateMesh.C │ │ ├── loadOrCreateMesh.H │ │ └── redistributePar.C │ ├── postProcessing │ ├── dataConversion │ │ ├── foamDataToFluent │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── fluentUnitNumbers.txt │ │ │ ├── foamDataToFluent.C │ │ │ ├── writeFluentFields.H │ │ │ ├── writeFluentScalarField.C │ │ │ └── writeFluentVectorField.C │ │ ├── foamToEnsight │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── cellSets.H │ │ │ ├── checkData.H │ │ │ ├── checkMeshMoving.H │ │ │ ├── ensightAsciiStream.H │ │ │ ├── ensightBinaryStream.H │ │ │ ├── ensightCaseTail.H │ │ │ ├── ensightCloudField.C │ │ │ ├── ensightCloudField.H │ │ │ ├── ensightField.C │ │ │ ├── ensightField.H │ │ │ ├── ensightMesh.C │ │ │ ├── ensightMesh.H │ │ │ ├── ensightParticlePositions.C │ │ │ ├── ensightParticlePositions.H │ │ │ ├── ensightStream.H │ │ │ ├── faceSets.H │ │ │ ├── foamToEnsight.C │ │ │ ├── itoa.C │ │ │ └── itoa.H │ │ ├── foamToEnsightParts │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── checkHasMovingMesh.H │ │ │ ├── ensightOutputCase.H │ │ │ ├── ensightOutputFunctions.C │ │ │ ├── ensightOutputFunctions.H │ │ │ ├── findFields.H │ │ │ ├── foamToEnsightParts.C │ │ │ ├── getTimeIndex.H │ │ │ └── moveMesh.H │ │ ├── foamToGMV │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── foamToGMV.C │ │ │ ├── gmvOutput.H │ │ │ ├── gmvOutputHeader.H │ │ │ ├── gmvOutputLagrangian.H │ │ │ ├── gmvOutputSpray.H │ │ │ ├── gmvOutputTail.H │ │ │ ├── itoa.C │ │ │ ├── itoa.H │ │ │ ├── moveMesh.H │ │ │ └── readConversionProperties.H │ │ ├── foamToTecplot360 │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── foamToTecplot360.C │ │ │ ├── readFields.C │ │ │ ├── readFields.H │ │ │ ├── tecplotWriter.C │ │ │ ├── tecplotWriter.H │ │ │ ├── tecplotWriterTemplates.C │ │ │ ├── vtkMesh.C │ │ │ └── vtkMesh.H │ │ ├── foamToTetDualMesh │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── foamToTetDualMesh.C │ │ ├── foamToVTK │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── foamToVTK.C │ │ │ └── foamToVTK │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── internalWriter.C │ │ │ │ ├── internalWriter.H │ │ │ │ ├── internalWriterTemplates.C │ │ │ │ ├── lagrangianWriter.C │ │ │ │ ├── lagrangianWriter.H │ │ │ │ ├── lagrangianWriterTemplates.C │ │ │ │ ├── patchWriter.C │ │ │ │ ├── patchWriter.H │ │ │ │ ├── patchWriterTemplates.C │ │ │ │ ├── readFields.C │ │ │ │ ├── readFields.H │ │ │ │ ├── surfaceMeshWriter.C │ │ │ │ ├── surfaceMeshWriter.H │ │ │ │ ├── surfaceMeshWriterTemplates.C │ │ │ │ ├── vtkMesh.C │ │ │ │ ├── vtkMesh.H │ │ │ │ ├── vtkTopo.C │ │ │ │ ├── vtkTopo.H │ │ │ │ ├── vtkWriteFieldOps.H │ │ │ │ ├── vtkWriteFieldOpsTemplates.C │ │ │ │ ├── writeFaceSet.C │ │ │ │ ├── writeFaceSet.H │ │ │ │ ├── writePointSet.C │ │ │ │ ├── writePointSet.H │ │ │ │ ├── writeSurfFields.C │ │ │ │ ├── writeSurfFields.H │ │ │ │ └── writeVTK │ │ │ │ ├── writeVTK.C │ │ │ │ ├── writeVTK.H │ │ │ │ └── writeVTKTemplates.C │ │ └── smapToFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ └── smapToFoam.C │ ├── graphics │ │ ├── PVReaders │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── CMakeLists.txt │ │ │ ├── PVFoamReader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PVFoamReader.xml │ │ │ │ ├── PVFoamReader_SM.xml │ │ │ │ ├── paraview.plugin │ │ │ │ └── vtk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── vtk.module │ │ │ │ │ ├── vtkPVFoamReader.cxx │ │ │ │ │ └── vtkPVFoamReader.h │ │ │ ├── PVblockMeshReader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PVblockMeshReader.xml │ │ │ │ ├── PVblockMeshReader_SM.xml │ │ │ │ ├── paraview.plugin │ │ │ │ └── vtk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── vtk.module │ │ │ │ │ ├── vtkPVblockMeshReader.cxx │ │ │ │ │ └── vtkPVblockMeshReader.h │ │ │ ├── vtkPVFoam │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── vtkOpenFOAMPoints.H │ │ │ │ ├── vtkOpenFOAMTupleRemap.H │ │ │ │ ├── vtkPVFoam.C │ │ │ │ ├── vtkPVFoam.H │ │ │ │ ├── vtkPVFoamAddToSelection.H │ │ │ │ ├── vtkPVFoamFields.C │ │ │ │ ├── vtkPVFoamLagrangianFields.H │ │ │ │ ├── vtkPVFoamMesh.C │ │ │ │ ├── vtkPVFoamMeshLagrangian.C │ │ │ │ ├── vtkPVFoamMeshSet.C │ │ │ │ ├── vtkPVFoamMeshVolume.C │ │ │ │ ├── vtkPVFoamMeshZone.C │ │ │ │ ├── vtkPVFoamPatchField.H │ │ │ │ ├── vtkPVFoamPointFields.H │ │ │ │ ├── vtkPVFoamSurfaceField.H │ │ │ │ ├── vtkPVFoamTemplates.C │ │ │ │ ├── vtkPVFoamUpdateInfo.C │ │ │ │ ├── vtkPVFoamUtils.C │ │ │ │ └── vtkPVFoamVolFields.H │ │ │ └── vtkPVblockMesh │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── vtkOpenFOAMPoints.H │ │ │ │ ├── vtkPVblockMesh.C │ │ │ │ ├── vtkPVblockMesh.H │ │ │ │ ├── vtkPVblockMeshConvert.C │ │ │ │ └── vtkPVblockMeshUtils.C │ │ └── ensightFoamReader │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── USERD_API.H │ │ │ ├── USERD_bkup.H │ │ │ ├── USERD_exit_routine.H │ │ │ ├── USERD_get_border_availability.H │ │ │ ├── USERD_get_border_elements_by_type.H │ │ │ ├── USERD_get_changing_geometry_status.H │ │ │ ├── USERD_get_constant_val.H │ │ │ ├── USERD_get_dataset_query_file_info.H │ │ │ ├── USERD_get_descrip_lines.H │ │ │ ├── USERD_get_element_label_status.H │ │ │ ├── USERD_get_geom_timeset_number.H │ │ │ ├── USERD_get_gold_part_build_info.H │ │ │ ├── USERD_get_gold_variable_info.H │ │ │ ├── USERD_get_matf_set_info.H │ │ │ ├── USERD_get_matf_var_info.H │ │ │ ├── USERD_get_maxsize_info.H │ │ │ ├── USERD_get_model_extents.H │ │ │ ├── USERD_get_name_of_reader.H │ │ │ ├── USERD_get_nfaced_conn.H │ │ │ ├── USERD_get_nfaced_nodes_per_face.H │ │ │ ├── USERD_get_node_label_status.H │ │ │ ├── USERD_get_nsided_conn.H │ │ │ ├── USERD_get_num_of_time_steps.H │ │ │ ├── USERD_get_number_of_files_in_dataset.H │ │ │ ├── USERD_get_number_of_material_sets.H │ │ │ ├── USERD_get_number_of_materials.H │ │ │ ├── USERD_get_number_of_model_parts.H │ │ │ ├── USERD_get_number_of_variables.H │ │ │ ├── USERD_get_number_timesets.H │ │ │ ├── USERD_get_part_coords.H │ │ │ ├── USERD_get_part_element_ids_by_type.H │ │ │ ├── USERD_get_part_elements_by_type.H │ │ │ ├── USERD_get_part_node_ids.H │ │ │ ├── USERD_get_reader_release.H │ │ │ ├── USERD_get_reader_version.H │ │ │ ├── USERD_get_sol_times.H │ │ │ ├── USERD_get_timeset_description.H │ │ │ ├── USERD_get_var_by_component.H │ │ │ ├── USERD_get_var_value_at_specific.H │ │ │ ├── USERD_load_matf_data.H │ │ │ ├── USERD_set_filenames.H │ │ │ ├── USERD_set_server_number.H │ │ │ ├── USERD_set_time_set_and_step.H │ │ │ ├── USERD_size_matf_data.H │ │ │ ├── USERD_stop_part_building.H │ │ │ ├── USERD_structured_data.H │ │ │ ├── getFieldScalar.H │ │ │ ├── getFieldTensor.H │ │ │ ├── getFieldVector.H │ │ │ ├── getLagrangianScalar.H │ │ │ ├── getLagrangianVector.H │ │ │ ├── getPatchFieldScalar.H │ │ │ ├── getPatchFieldTensor.H │ │ │ ├── getPatchFieldVector.H │ │ │ ├── globalFoam.H │ │ │ ├── global_extern.h │ │ │ ├── global_extern_proto.h │ │ │ ├── libuserd.C │ │ │ └── tensorConversion.H │ ├── lagrangian │ │ ├── particleTracks │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── particleTracks.C │ │ └── steadyParticleTracks │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ ├── steadyParticleTracks.C │ │ │ ├── steadyParticleTracksTemplates.C │ │ │ └── steadyParticleTracksTemplates.H │ ├── miscellaneous │ │ ├── engineCompRatio │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── engineCompRatio.C │ │ ├── pdfPlot │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── pdfPlot.C │ │ ├── postChannel │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── calculateFields.H │ │ │ ├── channelIndex.C │ │ │ ├── channelIndex.H │ │ │ ├── channelIndexTemplates.C │ │ │ ├── collapse.H │ │ │ ├── postChannel.C │ │ │ ├── readFields.H │ │ │ └── readTransportProperties.H │ │ └── temporalInterpolate │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ └── temporalInterpolate.C │ ├── noise │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ └── noise.C │ └── postProcess │ │ ├── Make │ │ ├── files │ │ └── options │ │ └── postProcess.C │ ├── preProcessing │ ├── applyBoundaryLayer │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── applyBoundaryLayer.C │ │ └── createFields.H │ ├── boxTurb │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── boxTurb.C │ │ ├── createFields.H │ │ └── readBoxTurbDict.H │ ├── changeDictionary │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── changeDictionary.C │ ├── createExternalCoupledPatchGeometry │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createExternalCoupledPatchGeometry.C │ │ ├── createExternalCoupledPatchGeometryTemplates.C │ │ └── createExternalCoupledPatchGeometryTemplates.H │ ├── dsmcInitialise │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── dsmcInitialise.C │ ├── engineSwirl │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ └── engineSwirl.C │ ├── faceAgglomerate │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── faceAgglomerate.C │ ├── foamSetupCHT │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── foamSetupCHT.C │ ├── mapFields │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── MapConsistentVolFields.H │ │ ├── MapLagrangianFields.H │ │ ├── MapMeshes.H │ │ ├── MapVolFields.H │ │ ├── UnMapped.H │ │ ├── createTimes.H │ │ ├── mapFields.C │ │ ├── mapLagrangian.C │ │ ├── mapLagrangian.H │ │ └── setTimeIndex.H │ ├── mapFieldsPar │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── MapLagrangianFields.H │ │ ├── MapMeshes.H │ │ ├── MapVolFields.H │ │ ├── UnMapped.H │ │ ├── createTimes.H │ │ ├── mapFieldsPar.C │ │ ├── mapLagrangian.C │ │ ├── mapLagrangian.H │ │ └── setTimeIndex.H │ ├── mdInitialise │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── mdInitialise.C │ ├── setFields │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── setFields.C │ ├── setWaves │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── setWaves.C │ └── viewFactorsGen │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── searchingEngine.H │ │ ├── shootRays.H │ │ └── viewFactorsGen.C │ ├── surface │ ├── README │ ├── surfaceAdd │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceAdd.C │ ├── surfaceAutoPatch │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceAutoPatch.C │ ├── surfaceBooleanFeatures │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceBooleanFeatures.C │ ├── surfaceCheck │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceCheck.C │ ├── surfaceClean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── collapseBase.C │ │ ├── collapseBase.H │ │ ├── collapseEdge.C │ │ ├── collapseEdge.H │ │ ├── multiCollapse.stl │ │ └── surfaceClean.C │ ├── surfaceCoarsen │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── bunnylod │ │ │ ├── README │ │ │ ├── bunnygut.C │ │ │ ├── bunnylod.dsp │ │ │ ├── bunnylod.dsw │ │ │ ├── font.h │ │ │ ├── list.h │ │ │ ├── progmesh.C │ │ │ ├── progmesh.h │ │ │ ├── vector.C │ │ │ ├── vector.h │ │ │ └── winmain.C │ │ └── surfaceCoarsen.C │ ├── surfaceConvert │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceConvert.C │ ├── surfaceFeatureConvert │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceFeatureConvert.C │ ├── surfaceFeatures │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceFeatures.C │ ├── surfaceFind │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceFind.C │ ├── surfaceHookUp │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceHookUp.C │ ├── surfaceInertia │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceInertia.C │ ├── surfaceLambdaMuSmooth │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceLambdaMuSmooth.C │ ├── surfaceMeshConvert │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── coordinateSystems │ │ └── surfaceMeshConvert.C │ ├── surfaceMeshConvertTesting │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceMeshConvertTesting.C │ ├── surfaceMeshExport │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceMeshExport.C │ ├── surfaceMeshImport │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceMeshImport.C │ ├── surfaceMeshInfo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceMeshInfo.C │ ├── surfaceMeshTriangulate │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceMeshTriangulate.C │ ├── surfaceOrient │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceOrient.C │ ├── surfacePointMerge │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfacePointMerge.C │ ├── surfaceRedistributePar │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceRedistributePar.C │ ├── surfaceRefineRedGreen │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceRefineRedGreen.C │ ├── surfaceSplitByPatch │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceSplitByPatch.C │ ├── surfaceSplitByTopology │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceSplitByTopology.C │ ├── surfaceSplitNonManifolds │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── surfaceSplitNonManifolds.C │ │ └── test │ │ │ └── twoCubesFine.ftr │ ├── surfaceSubset │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceSubset.C │ ├── surfaceToPatch │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── surfaceToPatch.C │ └── surfaceTransformPoints │ │ ├── Make │ │ ├── files │ │ └── options │ │ └── surfaceTransformPoints.C │ └── thermophysical │ ├── adiabaticFlameT │ ├── Hydrogen.log │ ├── Make │ │ ├── files │ │ └── options │ └── adiabaticFlameT.C │ ├── chemkinToFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── chemkinReader │ │ ├── chemkinLexer.L │ │ ├── chemkinReader.C │ │ └── chemkinReader.H │ └── chemkinToFoam.C │ ├── equilibriumCO │ ├── Make │ │ ├── files │ │ └── options │ └── equilibriumCO.C │ ├── equilibriumFlameT │ ├── Hydrogen.log │ ├── Make │ │ ├── files │ │ └── options │ └── equilibriumFlameT.C │ └── mixtureAdiabaticFlameT │ ├── Make │ ├── files │ └── options │ ├── mixture.H │ ├── mixtureAdiabaticFlameT.C │ └── substance.H ├── bin ├── DPMFoam ├── MPPICFoam ├── buoyantReactingParticleFoam ├── coalChemistryFoam ├── compressibleInterFilmFoam ├── fireFoam ├── foamCleanCase ├── foamCleanPath ├── foamCleanTutorials ├── foamCloneCase ├── foamCreateVideo ├── foamEtcFile ├── foamExec ├── foamGet ├── foamInfo ├── foamJob ├── foamLog ├── foamMonitor ├── foamNew ├── foamNewApp ├── foamNewBC ├── foamNewFunctionObject ├── foamNewSource ├── foamNewTemplate ├── foamRunTutorials ├── foamSearch ├── foamSequenceVTKFiles ├── foamTags ├── icoUncoupledKinematicParcelFoam ├── interPhaseChangeFoam ├── mergeOrSplitBaffles ├── mpirunDebug ├── org-html ├── org-latex ├── org-pdflatex ├── paraFoam ├── reactingMultiphaseEulerFoam ├── reactingParcelFoam ├── reactingParticleFoam ├── reactingTwoPhaseEulerFoam ├── rhoReactingBuoyantFoam ├── rhoReactingFoam ├── simpleReactingParcelFoam ├── simpleReactingParticleFoam ├── sprayFoam ├── surfaceFeatureExtract ├── tools │ ├── CleanFunctions │ ├── HookFunctions │ ├── MakefileDirs │ ├── README │ ├── RunFunctions │ ├── doxyFilter │ ├── doxyFilter-ignore.awk │ ├── doxyFilter-table.awk │ ├── doxyFilter-table.sed │ ├── doxyFilter-top.awk │ ├── doxyFilter.awk │ ├── doxyFilter.sed │ ├── foamConfigurePaths │ ├── foamGenerateBashCompletion │ ├── foamListBinDirs │ ├── foamListSourceFiles │ ├── foamListThirdPartyBinDirs │ ├── foamLog.db │ ├── foamVersionCompare │ ├── gtagsrc │ ├── interactive-hook │ ├── org-batch │ ├── pre-commit-hook │ ├── pre-receive-hook │ └── scanpackages ├── twoPhaseEulerFoam └── uncoupledKinematicParcelFoam ├── doc ├── Doxygen │ ├── Allwmake │ ├── CFDFoundation55x55.png │ ├── Doxyfile │ ├── Macros │ │ └── tensorOperator.sty │ ├── README.html │ ├── README.org │ ├── customdoxygen.css │ ├── footer.html │ └── header.html ├── Guides │ ├── OpenFOAMUserGuide-A4.pdf │ └── OpenFOAMUserGuide-USletter.pdf ├── codingStyleGuide.org └── tools │ ├── README │ └── find-trailingspace ├── etc ├── README.org ├── bashrc ├── caseDicts │ ├── annotated │ │ ├── PDRMeshDict │ │ ├── adiabaticFlameTDict │ │ ├── autoRefineMeshDict │ │ ├── changeDictionaryDict │ │ ├── collapseDict │ │ ├── createBafflesDict │ │ ├── createPatchDict │ │ ├── decomposeParDict │ │ ├── equilibriumFlameTDict │ │ ├── extrude2DMeshDict │ │ ├── extrudeMeshDict │ │ ├── extrudeToRegionMeshDict │ │ ├── foamDataToFluentDict │ │ ├── foamyHexMeshDict │ │ ├── foamyQuadMeshDict │ │ ├── mapFieldsDict │ │ ├── mirrorMeshDict │ │ ├── mixtureAdiabaticFlameTDict │ │ ├── modifyMeshDict │ │ ├── particleTrackDict │ │ ├── pdfDict │ │ ├── postChannelDict │ │ ├── refineMeshDict │ │ ├── renumberMeshDict │ │ ├── selectCellsDict │ │ ├── setFieldsDict │ │ ├── setWavesDict │ │ ├── snappyHexMeshDict │ │ ├── surfaceFeaturesDict │ │ ├── surfaceHookUpDict │ │ ├── surfaceSubsetDict │ │ ├── toleranceDict │ │ ├── topoSetDict │ │ ├── viewFactorsDict │ │ └── wallFunctionDict │ ├── general │ │ ├── coordinateSystem │ │ │ ├── cartesianXY │ │ │ ├── cartesianXZ │ │ │ ├── cartesianYZ │ │ │ └── cylindrical │ │ ├── fvConstraints │ │ │ ├── limitPressure │ │ │ └── limitTemperature │ │ ├── fvModels │ │ │ └── porosity │ │ │ │ └── porousZone │ │ ├── fvSolution │ │ │ └── relaxationFactors │ │ │ │ ├── steadyState │ │ │ │ └── transient │ │ └── workflow │ │ │ ├── Allclean │ │ │ ├── Allmesh │ │ │ └── Allrun │ ├── mesh │ │ ├── generation │ │ │ ├── collapseDict │ │ │ ├── extrudeMeshDict │ │ │ ├── foamyHexMeshDict │ │ │ ├── meshQualityDict │ │ │ ├── meshQualityDict.cfg │ │ │ ├── snappyHexMeshDict │ │ │ └── snappyHexMeshDict.cfg │ │ └── manipulation │ │ │ ├── AMI │ │ │ ├── createBafflesDict │ │ │ └── createPatchDict │ │ │ ├── baffles │ │ │ └── createBafflesDict │ │ │ ├── patches │ │ │ └── createPatchDict │ │ │ └── refineRegion │ │ │ ├── refineMeshDict │ │ │ └── topoSetDict │ ├── postProcessing │ │ ├── combustion │ │ │ ├── Qdot │ │ │ └── XiReactionRate │ │ ├── control │ │ │ ├── stopAtClockTime │ │ │ ├── stopAtFile │ │ │ ├── time │ │ │ ├── timeStep │ │ │ └── writeObjects │ │ ├── fields │ │ │ ├── CourantNo │ │ │ ├── Lambda2 │ │ │ ├── MachNo │ │ │ ├── PecletNo │ │ │ ├── Q │ │ │ ├── age │ │ │ ├── components │ │ │ ├── ddt │ │ │ ├── div │ │ │ ├── enstrophy │ │ │ ├── fieldAverage │ │ │ ├── fieldAverage.cfg │ │ │ ├── flowType │ │ │ ├── grad │ │ │ ├── log │ │ │ ├── mag │ │ │ ├── magSqr │ │ │ ├── phaseMap │ │ │ ├── randomise │ │ │ ├── randomise.cfg │ │ │ ├── scale │ │ │ ├── shearStress │ │ │ ├── streamFunction │ │ │ ├── totalEnthalpy │ │ │ ├── turbulenceFields │ │ │ ├── turbulenceIntensity │ │ │ ├── vorticity │ │ │ ├── wallHeatFlux │ │ │ ├── wallHeatTransferCoeff │ │ │ ├── wallShearStress │ │ │ ├── writeCellCentres │ │ │ ├── writeCellVolumes │ │ │ ├── writeVTK │ │ │ └── yPlus │ │ ├── fieldsOperations │ │ │ ├── add │ │ │ ├── divide │ │ │ ├── multiply │ │ │ ├── subtract │ │ │ └── uniform │ │ ├── forces │ │ │ ├── forceCoeffs.cfg │ │ │ ├── forceCoeffsCompressible │ │ │ ├── forceCoeffsIncompressible │ │ │ ├── forceCoeffsIncompressible.cfg │ │ │ ├── forces.cfg │ │ │ ├── forcesCompressible │ │ │ ├── forcesIncompressible │ │ │ ├── forcesIncompressible.cfg │ │ │ └── phaseForces │ │ ├── graphs │ │ │ ├── graph.cfg │ │ │ ├── graphCell │ │ │ ├── graphCell.cfg │ │ │ ├── graphUniform │ │ │ └── graphUniform.cfg │ │ ├── lagrangian │ │ │ └── dsmcFields │ │ ├── minMax │ │ │ ├── cellMax │ │ │ ├── cellMax.cfg │ │ │ ├── cellMaxMag │ │ │ ├── cellMaxMag.cfg │ │ │ ├── cellMin │ │ │ ├── cellMin.cfg │ │ │ ├── cellMinMag │ │ │ ├── cellMinMag.cfg │ │ │ └── cellMinMax.cfg │ │ ├── numerical │ │ │ ├── residuals │ │ │ └── residuals.cfg │ │ ├── pressure │ │ │ ├── pressure.cfg │ │ │ ├── staticPressureIncompressible │ │ │ ├── staticPressureIncompressible.cfg │ │ │ ├── totalPressureCompressible │ │ │ ├── totalPressureCompressible.cfg │ │ │ ├── totalPressureIncompressible │ │ │ └── totalPressureIncompressible.cfg │ │ ├── probes │ │ │ ├── boundaryProbes │ │ │ ├── boundaryProbes.cfg │ │ │ ├── interfaceHeight │ │ │ ├── interfaceHeight.cfg │ │ │ ├── internalProbes │ │ │ ├── internalProbes.cfg │ │ │ ├── probes │ │ │ └── probes.cfg │ │ ├── solvers │ │ │ ├── particles │ │ │ ├── phaseScalarTransport │ │ │ ├── phaseScalarTransport.cfg │ │ │ ├── scalarTransport │ │ │ └── scalarTransport.cfg │ │ ├── streamlines │ │ │ ├── streamlines.cfg │ │ │ ├── streamlinesLine │ │ │ ├── streamlinesLine.cfg │ │ │ ├── streamlinesPatch │ │ │ ├── streamlinesPatch.cfg │ │ │ ├── streamlinesPoints │ │ │ ├── streamlinesPoints.cfg │ │ │ ├── streamlinesSphere │ │ │ └── streamlinesSphere.cfg │ │ ├── surface │ │ │ ├── cutPlaneSurface │ │ │ ├── cutPlaneSurface.cfg │ │ │ ├── isoSurface │ │ │ ├── isoSurface.cfg │ │ │ ├── patchSurface │ │ │ ├── patchSurface.cfg │ │ │ └── surface.cfg │ │ └── surfaceFieldValue │ │ │ ├── faceZoneAverage │ │ │ ├── faceZoneFlowRate │ │ │ ├── faceZoneValue.cfg │ │ │ ├── patchAverage │ │ │ ├── patchDifference │ │ │ ├── patchDifference.cfg │ │ │ ├── patchFlowRate │ │ │ ├── patchIntegrate │ │ │ ├── patchValue.cfg │ │ │ ├── surfaceDifference.cfg │ │ │ ├── surfaceValue.cfg │ │ │ ├── triSurfaceDifference │ │ │ ├── triSurfaceDifference.cfg │ │ │ ├── triSurfaceValue.cfg │ │ │ └── triSurfaceVolumetricFlowRate │ ├── preProcessing │ │ ├── decomposeParDict │ │ ├── mapFieldsDict │ │ └── setFieldsDict │ ├── setConstraintTypes │ ├── solvers │ │ ├── chemistry │ │ │ └── TDAC │ │ │ │ ├── chemistryProperties.cfg │ │ │ │ └── chemistryPropertiesFlame.cfg │ │ ├── lagrangian │ │ │ └── cloudProperties │ │ └── scalarTransport │ │ │ ├── s │ │ │ ├── scalarTransportDict │ │ │ └── scalarTransportDict.cfg │ └── surface │ │ ├── surfaceFeatureExtractDict.cfg │ │ ├── surfaceFeaturesDict │ │ └── surfaceFeaturesDict.cfg ├── cellModels ├── codeTemplates │ ├── BC │ │ ├── BC.C │ │ ├── BC.H │ │ ├── BCs.C │ │ ├── BCs.H │ │ ├── BCsFwd.H │ │ └── Make │ │ │ ├── files │ │ │ └── options │ ├── app │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── app.C │ │ └── createFields.H │ ├── dynamicCode │ │ ├── Function2Template.C │ │ ├── Function2Template.H │ │ ├── basicChemistryModel │ │ ├── basicChemistryModelTemplate.C │ │ ├── codeStreamTemplate.C │ │ ├── codedFixedValueFvPatchFieldTemplate.C │ │ ├── codedFixedValueFvPatchFieldTemplate.H │ │ ├── codedFixedValuePointPatchFieldTemplate.C │ │ ├── codedFixedValuePointPatchFieldTemplate.H │ │ ├── codedFunction1Template.C │ │ ├── codedFunction1Template.H │ │ ├── codedFunctionObjectTemplate.C │ │ ├── codedFunctionObjectTemplate.H │ │ ├── codedFvModelTemplate.C │ │ ├── codedFvModelTemplate.H │ │ ├── codedMixedFvPatchFieldTemplate.C │ │ ├── codedMixedFvPatchFieldTemplate.H │ │ ├── fluidReactionThermo │ │ ├── fluidReactionThermoTemplate.C │ │ ├── fluidThermo │ │ ├── fluidThermoTemplate.C │ │ ├── psiThermo │ │ ├── psiThermoTemplate.C │ │ ├── psiuReactionThermo │ │ ├── psiuReactionThermoTemplate.C │ │ ├── rhoReactionThermo │ │ ├── rhoReactionThermoTemplate.C │ │ ├── rhoThermo │ │ └── rhoThermoTemplate.C │ ├── foamCommentStyles │ ├── foamScript │ ├── functionObject │ │ ├── FUNCTIONOBJECT.C │ │ ├── FUNCTIONOBJECT.H │ │ └── Make │ │ │ ├── files │ │ │ └── options │ ├── source │ │ ├── _Template.C │ │ ├── _Template.H │ │ ├── _TemplateApp.C │ │ ├── _TemplateI.H │ │ ├── _TemplateIO.C │ │ └── foamNewSource │ └── template │ │ ├── _TemplateTemplate.C │ │ ├── _TemplateTemplate.H │ │ ├── _TemplateTemplateI.H │ │ ├── _TemplateTemplateIO.C │ │ └── foamNewTemplate ├── config.csh │ ├── aliases │ ├── ensight │ ├── example │ │ ├── compiler │ │ ├── openmpi │ │ ├── paraview │ │ └── prefs.csh │ ├── mpi │ ├── paraview │ ├── settings │ └── unset ├── config.sh │ ├── CGAL │ ├── aliases │ ├── bash_completion │ ├── compiler │ ├── ensight │ ├── example │ │ ├── compiler │ │ ├── openmpi │ │ ├── paraview │ │ └── prefs.sh │ ├── functions │ ├── gperftools │ ├── metis │ ├── mpi │ ├── paraview │ ├── scotch │ ├── settings │ └── unset ├── controlDict ├── cshrc ├── paraFoam ├── templates │ ├── axisymmetricJet │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── extrudeMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── graph │ ├── closedVolume │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── README │ │ ├── constant │ │ │ ├── g │ │ │ ├── geometry │ │ │ │ └── .keep │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ ├── closedVolumeRotating │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── geometry │ │ │ │ └── .keep │ │ │ ├── momentumTransport │ │ │ ├── rotatingZoneProperties │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict-box │ │ │ ├── controlDict │ │ │ ├── createBafflesDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ ├── compressibleInflowOutflow │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── geometry │ │ │ │ └── .keep │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ ├── inflowOutflow │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── geometry │ │ │ │ └── .keep │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ ├── inflowOutflowRotating │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── geometry │ │ │ │ └── .keep │ │ │ ├── momentumTransport │ │ │ ├── rotatingZoneProperties │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict-box │ │ │ ├── controlDict │ │ │ ├── createBafflesDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ └── singleFluidCHT │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ ├── geometry │ │ │ └── .keep │ │ ├── initialConditions │ │ └── materialProperties │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ ├── snappyHexMeshDict │ │ └── surfaceFeaturesDict │ │ └── templates │ │ ├── 0 │ │ ├── fluid │ │ │ ├── G │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── p_rgh │ │ └── solid │ │ │ └── T │ │ ├── constant │ │ ├── fluid │ │ │ ├── g │ │ │ └── pRef │ │ └── solid │ │ │ └── fvModels │ │ ├── materials │ │ ├── air │ │ │ ├── momentumTransport │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ └── thermophysicalTransport │ │ ├── aluminium │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ │ ├── copper │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ │ └── water │ │ │ ├── momentumTransport │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ └── thermophysicalTransport │ │ └── system │ │ ├── fluid │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── solid │ │ ├── fvSchemes │ │ └── fvSolution └── thermoData │ ├── therm.dat │ └── thermoData ├── src ├── Allwmake ├── MomentumTransportModels │ ├── Allwmake │ ├── compressible │ │ ├── CompressibleMomentumTransportModel │ │ │ ├── CompressibleMomentumTransportModel.C │ │ │ └── CompressibleMomentumTransportModel.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── RAS │ │ │ └── buoyantKEpsilon │ │ │ │ ├── buoyantKEpsilon.C │ │ │ │ └── buoyantKEpsilon.H │ │ ├── compressibleMomentumTransportModel.C │ │ ├── compressibleMomentumTransportModel.H │ │ └── dynamicMomentumTransportModels │ │ │ ├── dynamicMomentumTransportModel.C │ │ │ ├── dynamicMomentumTransportModel.H │ │ │ ├── dynamicMomentumTransportModels.C │ │ │ └── dynamicMomentumTransportModels.H │ ├── incompressible │ │ ├── IncompressibleMomentumTransportModel │ │ │ ├── IncompressibleMomentumTransportModel.C │ │ │ └── IncompressibleMomentumTransportModel.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── incompressibleMomentumTransportModel.C │ │ ├── incompressibleMomentumTransportModel.H │ │ └── kinematicMomentumTransportModels │ │ │ ├── RAS │ │ │ ├── LamBremhorstKE │ │ │ │ ├── LamBremhorstKE.C │ │ │ │ └── LamBremhorstKE.H │ │ │ ├── LienCubicKE │ │ │ │ ├── LienCubicKE.C │ │ │ │ └── LienCubicKE.H │ │ │ ├── LienLeschziner │ │ │ │ ├── LienLeschziner.C │ │ │ │ └── LienLeschziner.H │ │ │ ├── ShihQuadraticKE │ │ │ │ ├── ShihQuadraticKE.C │ │ │ │ └── ShihQuadraticKE.H │ │ │ ├── kkLOmega │ │ │ │ ├── kkLOmega.C │ │ │ │ └── kkLOmega.H │ │ │ └── qZeta │ │ │ │ ├── qZeta.C │ │ │ │ └── qZeta.H │ │ │ ├── kinematicMomentumTransportModel.C │ │ │ ├── kinematicMomentumTransportModel.H │ │ │ ├── kinematicMomentumTransportModels.C │ │ │ └── kinematicMomentumTransportModels.H │ ├── momentumTransportModels │ │ ├── Base │ │ │ └── kOmegaSST │ │ │ │ ├── kOmegaSSTBase.C │ │ │ │ └── kOmegaSSTBase.H │ │ ├── LES │ │ │ ├── DeardorffDiffStress │ │ │ │ ├── DeardorffDiffStress.C │ │ │ │ └── DeardorffDiffStress.H │ │ │ ├── LESModel │ │ │ │ ├── LESModel.C │ │ │ │ └── LESModel.H │ │ │ ├── LESdeltas │ │ │ │ ├── IDDESDelta │ │ │ │ │ ├── IDDESDelta.C │ │ │ │ │ └── IDDESDelta.H │ │ │ │ ├── LESdelta │ │ │ │ │ ├── LESdelta.C │ │ │ │ │ └── LESdelta.H │ │ │ │ ├── PrandtlDelta │ │ │ │ │ ├── PrandtlDelta.C │ │ │ │ │ └── PrandtlDelta.H │ │ │ │ ├── cubeRootVolDelta │ │ │ │ │ ├── cubeRootVolDelta.C │ │ │ │ │ └── cubeRootVolDelta.H │ │ │ │ ├── maxDeltaxyz │ │ │ │ │ ├── maxDeltaxyz.C │ │ │ │ │ └── maxDeltaxyz.H │ │ │ │ ├── smoothDelta │ │ │ │ │ ├── smoothDelta.C │ │ │ │ │ ├── smoothDelta.H │ │ │ │ │ └── smoothDeltaDeltaDataI.H │ │ │ │ └── vanDriestDelta │ │ │ │ │ ├── vanDriestDelta.C │ │ │ │ │ └── vanDriestDelta.H │ │ │ ├── LESeddyViscosity │ │ │ │ ├── LESeddyViscosity.C │ │ │ │ └── LESeddyViscosity.H │ │ │ ├── LESfilters │ │ │ │ ├── LESfilter │ │ │ │ │ ├── LESfilter.C │ │ │ │ │ └── LESfilter.H │ │ │ │ ├── anisotropicFilter │ │ │ │ │ ├── anisotropicFilter.C │ │ │ │ │ └── anisotropicFilter.H │ │ │ │ ├── laplaceFilter │ │ │ │ │ ├── laplaceFilter.C │ │ │ │ │ └── laplaceFilter.H │ │ │ │ └── simpleFilter │ │ │ │ │ ├── simpleFilter.C │ │ │ │ │ └── simpleFilter.H │ │ │ ├── Smagorinsky │ │ │ │ ├── Smagorinsky.C │ │ │ │ └── Smagorinsky.H │ │ │ ├── SpalartAllmarasDDES │ │ │ │ ├── SpalartAllmarasDDES.C │ │ │ │ └── SpalartAllmarasDDES.H │ │ │ ├── SpalartAllmarasDES │ │ │ │ ├── SpalartAllmarasDES.C │ │ │ │ └── SpalartAllmarasDES.H │ │ │ ├── SpalartAllmarasIDDES │ │ │ │ ├── SpalartAllmarasIDDES.C │ │ │ │ └── SpalartAllmarasIDDES.H │ │ │ ├── WALE │ │ │ │ ├── WALE.C │ │ │ │ └── WALE.H │ │ │ ├── dynamicKEqn │ │ │ │ ├── dynamicKEqn.C │ │ │ │ └── dynamicKEqn.H │ │ │ ├── dynamicLagrangian │ │ │ │ ├── dynamicLagrangian.C │ │ │ │ └── dynamicLagrangian.H │ │ │ ├── kEqn │ │ │ │ ├── kEqn.C │ │ │ │ └── kEqn.H │ │ │ └── kOmegaSSTDES │ │ │ │ ├── kOmegaSSTDES.C │ │ │ │ └── kOmegaSSTDES.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── MomentumTransportModel │ │ │ ├── MomentumTransportModel.C │ │ │ └── MomentumTransportModel.H │ │ ├── RAS │ │ │ ├── LRR │ │ │ │ ├── LRR.C │ │ │ │ └── LRR.H │ │ │ ├── LaunderSharmaKE │ │ │ │ ├── LaunderSharmaKE.C │ │ │ │ └── LaunderSharmaKE.H │ │ │ ├── RASModel │ │ │ │ ├── RASModel.C │ │ │ │ └── RASModel.H │ │ │ ├── RNGkEpsilon │ │ │ │ ├── RNGkEpsilon.C │ │ │ │ └── RNGkEpsilon.H │ │ │ ├── SSG │ │ │ │ ├── SSG.C │ │ │ │ └── SSG.H │ │ │ ├── SpalartAllmaras │ │ │ │ ├── SpalartAllmaras.C │ │ │ │ └── SpalartAllmaras.H │ │ │ ├── derivedFvPatchFields │ │ │ │ ├── turbulentMixingLengthDissipationRateInlet │ │ │ │ │ ├── turbulentMixingLengthDissipationRateInletFvPatchScalarField.C │ │ │ │ │ └── turbulentMixingLengthDissipationRateInletFvPatchScalarField.H │ │ │ │ └── turbulentMixingLengthFrequencyInlet │ │ │ │ │ ├── turbulentMixingLengthFrequencyInletFvPatchScalarField.C │ │ │ │ │ └── turbulentMixingLengthFrequencyInletFvPatchScalarField.H │ │ │ ├── kEpsilon │ │ │ │ ├── kEpsilon.C │ │ │ │ └── kEpsilon.H │ │ │ ├── kOmega │ │ │ │ ├── kOmega.C │ │ │ │ └── kOmega.H │ │ │ ├── kOmega2006 │ │ │ │ ├── kOmega2006.C │ │ │ │ └── kOmega2006.H │ │ │ ├── kOmegaSST │ │ │ │ ├── kOmegaSST.C │ │ │ │ └── kOmegaSST.H │ │ │ ├── kOmegaSSTLM │ │ │ │ ├── kOmegaSSTLM.C │ │ │ │ └── kOmegaSSTLM.H │ │ │ ├── kOmegaSSTSAS │ │ │ │ ├── kOmegaSSTSAS.C │ │ │ │ └── kOmegaSSTSAS.H │ │ │ ├── realizableKE │ │ │ │ ├── realizableKE.C │ │ │ │ └── realizableKE.H │ │ │ └── v2f │ │ │ │ ├── v2f.C │ │ │ │ ├── v2f.H │ │ │ │ ├── v2fBase.C │ │ │ │ └── v2fBase.H │ │ ├── ReynoldsStress │ │ │ ├── ReynoldsStress.C │ │ │ └── ReynoldsStress.H │ │ ├── derivedFvPatchFields │ │ │ ├── fixedShearStress │ │ │ │ ├── fixedShearStressFvPatchVectorField.C │ │ │ │ └── fixedShearStressFvPatchVectorField.H │ │ │ ├── porousBafflePressure │ │ │ │ ├── porousBafflePressureFvPatchField.C │ │ │ │ ├── porousBafflePressureFvPatchField.H │ │ │ │ └── porousBafflePressureFvPatchFieldFwd.H │ │ │ └── wallFunctions │ │ │ │ ├── epsilonWallFunctions │ │ │ │ └── epsilonWallFunction │ │ │ │ │ ├── epsilonWallFunctionFvPatchScalarField.C │ │ │ │ │ └── epsilonWallFunctionFvPatchScalarField.H │ │ │ │ ├── fWallFunctions │ │ │ │ └── fWallFunction │ │ │ │ │ ├── fWallFunctionFvPatchScalarField.C │ │ │ │ │ └── fWallFunctionFvPatchScalarField.H │ │ │ │ ├── kqRWallFunctions │ │ │ │ ├── kLowReWallFunction │ │ │ │ │ ├── kLowReWallFunctionFvPatchScalarField.C │ │ │ │ │ └── kLowReWallFunctionFvPatchScalarField.H │ │ │ │ └── kqRWallFunction │ │ │ │ │ ├── kqRWallFunctionFvPatchField.C │ │ │ │ │ ├── kqRWallFunctionFvPatchField.H │ │ │ │ │ ├── kqRWallFunctionFvPatchFields.C │ │ │ │ │ └── kqRWallFunctionFvPatchFields.H │ │ │ │ ├── nutWallFunctions │ │ │ │ ├── nutLowReWallFunction │ │ │ │ │ ├── nutLowReWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutLowReWallFunctionFvPatchScalarField.H │ │ │ │ ├── nutURoughWallFunction │ │ │ │ │ ├── nutURoughWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutURoughWallFunctionFvPatchScalarField.H │ │ │ │ ├── nutUSpaldingWallFunction │ │ │ │ │ ├── nutUSpaldingWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutUSpaldingWallFunctionFvPatchScalarField.H │ │ │ │ ├── nutUWallFunction │ │ │ │ │ ├── nutUWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutUWallFunctionFvPatchScalarField.H │ │ │ │ ├── nutWallFunction │ │ │ │ │ ├── nutWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutWallFunctionFvPatchScalarField.H │ │ │ │ ├── nutkRoughWallFunction │ │ │ │ │ ├── nutkRoughWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutkRoughWallFunctionFvPatchScalarField.H │ │ │ │ └── nutkWallFunction │ │ │ │ │ ├── nutkWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutkWallFunctionFvPatchScalarField.H │ │ │ │ ├── omegaWallFunctions │ │ │ │ └── omegaWallFunction │ │ │ │ │ ├── omegaWallFunctionFvPatchScalarField.C │ │ │ │ │ └── omegaWallFunctionFvPatchScalarField.H │ │ │ │ └── v2WallFunctions │ │ │ │ └── v2WallFunction │ │ │ │ ├── v2WallFunctionFvPatchScalarField.C │ │ │ │ └── v2WallFunctionFvPatchScalarField.H │ │ ├── eddyViscosity │ │ │ ├── eddyViscosity.C │ │ │ └── eddyViscosity.H │ │ ├── laminar │ │ │ ├── Giesekus │ │ │ │ ├── Giesekus.C │ │ │ │ └── Giesekus.H │ │ │ ├── Maxwell │ │ │ │ ├── Maxwell.C │ │ │ │ └── Maxwell.H │ │ │ ├── PTT │ │ │ │ ├── PTT.C │ │ │ │ └── PTT.H │ │ │ ├── Stokes │ │ │ │ ├── Stokes.C │ │ │ │ └── Stokes.H │ │ │ ├── generalisedNewtonian │ │ │ │ ├── generalisedNewtonian.C │ │ │ │ ├── generalisedNewtonian.H │ │ │ │ └── generalisedNewtonianViscosityModels │ │ │ │ │ ├── BirdCarreau │ │ │ │ │ ├── BirdCarreau.C │ │ │ │ │ └── BirdCarreau.H │ │ │ │ │ ├── Casson │ │ │ │ │ ├── Casson.C │ │ │ │ │ └── Casson.H │ │ │ │ │ ├── CrossPowerLaw │ │ │ │ │ ├── CrossPowerLaw.C │ │ │ │ │ └── CrossPowerLaw.H │ │ │ │ │ ├── HerschelBulkley │ │ │ │ │ ├── HerschelBulkley.C │ │ │ │ │ └── HerschelBulkley.H │ │ │ │ │ ├── generalisedNewtonianViscosityModel │ │ │ │ │ ├── generalisedNewtonianViscosityModel.C │ │ │ │ │ ├── generalisedNewtonianViscosityModel.H │ │ │ │ │ └── generalisedNewtonianViscosityModelNew.C │ │ │ │ │ ├── powerLaw │ │ │ │ │ ├── powerLaw.C │ │ │ │ │ └── powerLaw.H │ │ │ │ │ └── strainRateFunction │ │ │ │ │ ├── strainRateFunction.C │ │ │ │ │ └── strainRateFunction.H │ │ │ ├── lambdaThixotropic │ │ │ │ ├── lambdaThixotropic.C │ │ │ │ └── lambdaThixotropic.H │ │ │ └── laminarModel │ │ │ │ ├── laminarModel.C │ │ │ │ └── laminarModel.H │ │ ├── linearViscousStress │ │ │ ├── linearViscousStress.C │ │ │ └── linearViscousStress.H │ │ ├── makeMomentumTransportModel.H │ │ ├── momentumTransportModel.C │ │ ├── momentumTransportModel.H │ │ └── nonlinearEddyViscosity │ │ │ ├── nonlinearEddyViscosity.C │ │ │ └── nonlinearEddyViscosity.H │ ├── phaseCompressible │ │ ├── LES │ │ │ ├── Niceno │ │ │ │ ├── NicenoKEqn.C │ │ │ │ └── NicenoKEqn.H │ │ │ ├── SmagorinskyZhang │ │ │ │ ├── SmagorinskyZhang.C │ │ │ │ └── SmagorinskyZhang.H │ │ │ └── continuousGasKEqn │ │ │ │ ├── continuousGasKEqn.C │ │ │ │ └── continuousGasKEqn.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── PhaseCompressibleMomentumTransportModel │ │ │ ├── PhaseCompressibleMomentumTransportModel.C │ │ │ └── PhaseCompressibleMomentumTransportModel.H │ │ ├── RAS │ │ │ ├── LaheyKEpsilon │ │ │ │ ├── LaheyKEpsilon.C │ │ │ │ └── LaheyKEpsilon.H │ │ │ ├── continuousGasKEpsilon │ │ │ │ ├── continuousGasKEpsilon.C │ │ │ │ └── continuousGasKEpsilon.H │ │ │ ├── kOmegaSSTSato │ │ │ │ ├── kOmegaSSTSato.C │ │ │ │ └── kOmegaSSTSato.H │ │ │ └── mixtureKEpsilon │ │ │ │ ├── mixtureKEpsilon.C │ │ │ │ └── mixtureKEpsilon.H │ │ └── phaseDynamicMomentumTransportModels │ │ │ ├── phaseDynamicMomentumTransportModel.C │ │ │ ├── phaseDynamicMomentumTransportModel.H │ │ │ ├── phaseDynamicMomentumTransportModels.C │ │ │ └── phaseDynamicMomentumTransportModels.H │ └── phaseIncompressible │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── PhaseIncompressibleMomentumTransportModel │ │ ├── PhaseIncompressibleMomentumTransportModel.C │ │ └── PhaseIncompressibleMomentumTransportModel.H │ │ └── phaseKinematicMomentumTransportModels │ │ ├── phaseKinematicMomentumTransportModel.C │ │ ├── phaseKinematicMomentumTransportModel.H │ │ ├── phaseKinematicMomentumTransportModels.C │ │ └── phaseKinematicMomentumTransportModels.H ├── ODE │ ├── Make │ │ ├── files │ │ └── options │ ├── ODESolvers │ │ ├── Euler │ │ │ ├── Euler.C │ │ │ └── Euler.H │ │ ├── EulerSI │ │ │ ├── EulerSI.C │ │ │ └── EulerSI.H │ │ ├── ODESolver │ │ │ ├── ODESolver.C │ │ │ ├── ODESolver.H │ │ │ ├── ODESolverI.H │ │ │ └── ODESolverNew.C │ │ ├── RKCK45 │ │ │ ├── RKCK45.C │ │ │ └── RKCK45.H │ │ ├── RKDP45 │ │ │ ├── RKDP45.C │ │ │ └── RKDP45.H │ │ ├── RKF45 │ │ │ ├── RKF45.C │ │ │ └── RKF45.H │ │ ├── Rosenbrock12 │ │ │ ├── Rosenbrock12.C │ │ │ └── Rosenbrock12.H │ │ ├── Rosenbrock23 │ │ │ ├── Rosenbrock23.C │ │ │ └── Rosenbrock23.H │ │ ├── Rosenbrock34 │ │ │ ├── Rosenbrock34.C │ │ │ └── Rosenbrock34.H │ │ ├── SIBS │ │ │ ├── SIBS.C │ │ │ ├── SIBS.H │ │ │ ├── SIMPR.C │ │ │ └── polyExtrapolate.C │ │ ├── Trapezoid │ │ │ ├── Trapezoid.C │ │ │ └── Trapezoid.H │ │ ├── adaptiveSolver │ │ │ ├── adaptiveSolver.C │ │ │ └── adaptiveSolver.H │ │ ├── rodas23 │ │ │ ├── rodas23.C │ │ │ └── rodas23.H │ │ ├── rodas34 │ │ │ ├── rodas34.C │ │ │ └── rodas34.H │ │ └── seulex │ │ │ ├── seulex.C │ │ │ └── seulex.H │ └── ODESystem │ │ ├── ODESystem.C │ │ └── ODESystem.H ├── OSspecific │ └── POSIX │ │ ├── Allwmake │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── POSIX.C │ │ ├── POSIX.H │ │ ├── clockTime │ │ ├── clockTime.C │ │ └── clockTime.H │ │ ├── cpuTime │ │ ├── cpuTime.C │ │ └── cpuTime.H │ │ ├── dummyPrintStack.C │ │ ├── fileMonitor.C │ │ ├── fileMonitor.H │ │ ├── fileStat.C │ │ ├── fileStat.H │ │ ├── memInfo │ │ ├── memInfo.C │ │ ├── memInfo.H │ │ └── memInfoIO.C │ │ ├── printStack.C │ │ ├── regExp.C │ │ ├── regExp.H │ │ ├── signals │ │ ├── sigFpe.C │ │ ├── sigFpe.H │ │ ├── sigInt.C │ │ ├── sigInt.H │ │ ├── sigQuit.C │ │ ├── sigQuit.H │ │ ├── sigSegv.C │ │ ├── sigSegv.H │ │ ├── sigStopAtWriteNow.C │ │ ├── sigStopAtWriteNow.H │ │ ├── sigWriteNow.C │ │ └── sigWriteNow.H │ │ ├── timer.C │ │ └── timer.H ├── OpenFOAM │ ├── Make │ │ ├── files │ │ └── options │ ├── algorithms │ │ ├── dynamicIndexedOctree │ │ │ ├── dynamicIndexedOctree.C │ │ │ ├── dynamicIndexedOctree.H │ │ │ ├── dynamicIndexedOctreeName.C │ │ │ ├── dynamicTreeDataPoint.C │ │ │ └── dynamicTreeDataPoint.H │ │ ├── indexedOctree │ │ │ ├── indexedOctree.C │ │ │ ├── indexedOctree.H │ │ │ ├── indexedOctreeName.C │ │ │ ├── labelBits.H │ │ │ ├── treeDataCell.C │ │ │ ├── treeDataCell.H │ │ │ ├── volumeType.C │ │ │ └── volumeType.H │ │ ├── polygonTriangulate │ │ │ ├── polygonTriangulate.C │ │ │ ├── polygonTriangulate.H │ │ │ └── polygonTriangulateI.H │ │ └── subCycle │ │ │ └── subCycle.H │ ├── containers │ │ ├── Circulators │ │ │ ├── Circulator │ │ │ │ ├── Circulator.H │ │ │ │ └── CirculatorI.H │ │ │ ├── CirculatorBase │ │ │ │ └── CirculatorBase.H │ │ │ └── ConstCirculator │ │ │ │ ├── ConstCirculator.H │ │ │ │ └── ConstCirculatorI.H │ │ ├── Dictionaries │ │ │ ├── Dictionary │ │ │ │ ├── Dictionary.C │ │ │ │ └── Dictionary.H │ │ │ ├── DictionaryBase │ │ │ │ ├── DictionaryBase.C │ │ │ │ ├── DictionaryBase.H │ │ │ │ └── DictionaryBaseIO.C │ │ │ ├── PtrDictionary │ │ │ │ ├── PtrDictionary.C │ │ │ │ └── PtrDictionary.H │ │ │ ├── PtrListDictionary │ │ │ │ ├── PtrListDictionary.C │ │ │ │ └── PtrListDictionary.H │ │ │ ├── UDictionary │ │ │ │ ├── UDictionary.C │ │ │ │ └── UDictionary.H │ │ │ └── UPtrDictionary │ │ │ │ ├── UPtrDictionary.C │ │ │ │ └── UPtrDictionary.H │ │ ├── HashTables │ │ │ ├── HashPtrTable │ │ │ │ ├── HashPtrTable.C │ │ │ │ ├── HashPtrTable.H │ │ │ │ └── HashPtrTableIO.C │ │ │ ├── HashSet │ │ │ │ ├── HashSet.C │ │ │ │ └── HashSet.H │ │ │ ├── HashTable │ │ │ │ ├── HashTable.C │ │ │ │ ├── HashTable.H │ │ │ │ ├── HashTableCore.C │ │ │ │ ├── HashTableI.H │ │ │ │ └── HashTableIO.C │ │ │ ├── ListHashTable │ │ │ │ ├── ListHashTable.C │ │ │ │ ├── ListHashTable.H │ │ │ │ ├── ListHashTableCore.C │ │ │ │ ├── ListHashTableI.H │ │ │ │ └── ListHashTableIO.C │ │ │ ├── Map │ │ │ │ └── Map.H │ │ │ └── PtrMap │ │ │ │ └── PtrMap.H │ │ ├── Identifiers │ │ │ └── Keyed │ │ │ │ ├── Keyed.H │ │ │ │ └── KeyedI.H │ │ ├── LinkedLists │ │ │ ├── accessTypes │ │ │ │ ├── ILList │ │ │ │ │ ├── ILList.C │ │ │ │ │ ├── ILList.H │ │ │ │ │ └── ILListIO.C │ │ │ │ ├── LList │ │ │ │ │ ├── LList.C │ │ │ │ │ ├── LList.H │ │ │ │ │ └── LListIO.C │ │ │ │ ├── LPtrList │ │ │ │ │ ├── LPtrList.C │ │ │ │ │ ├── LPtrList.H │ │ │ │ │ └── LPtrListIO.C │ │ │ │ └── UILList │ │ │ │ │ ├── UILList.C │ │ │ │ │ ├── UILList.H │ │ │ │ │ └── UILListIO.C │ │ │ ├── linkTypes │ │ │ │ ├── DLListBase │ │ │ │ │ ├── DLListBase.C │ │ │ │ │ ├── DLListBase.H │ │ │ │ │ └── DLListBaseI.H │ │ │ │ └── SLListBase │ │ │ │ │ ├── SLListBase.C │ │ │ │ │ ├── SLListBase.H │ │ │ │ │ └── SLListBaseI.H │ │ │ └── user │ │ │ │ ├── DLList.H │ │ │ │ ├── DLPtrList.H │ │ │ │ ├── FIFOStack.H │ │ │ │ ├── IDLList.H │ │ │ │ ├── ISLList.H │ │ │ │ ├── LIFOStack.H │ │ │ │ ├── SLList.H │ │ │ │ ├── SLPtrList.H │ │ │ │ └── UIDLList.H │ │ ├── Lists │ │ │ ├── BiIndirectList │ │ │ │ ├── BiIndirectList.H │ │ │ │ └── BiIndirectListI.H │ │ │ ├── BinSum │ │ │ │ ├── BinSum.C │ │ │ │ └── BinSum.H │ │ │ ├── CompactListList │ │ │ │ ├── CompactListList.C │ │ │ │ ├── CompactListList.H │ │ │ │ ├── CompactListListI.H │ │ │ │ └── CompactListListIO.C │ │ │ ├── Distribution │ │ │ │ ├── Distribution.C │ │ │ │ ├── Distribution.H │ │ │ │ └── DistributionI.H │ │ │ ├── DynamicList │ │ │ │ ├── DynamicList.C │ │ │ │ ├── DynamicList.H │ │ │ │ └── DynamicListI.H │ │ │ ├── FixedList │ │ │ │ ├── FixedList.C │ │ │ │ ├── FixedList.H │ │ │ │ ├── FixedListI.H │ │ │ │ └── FixedListIO.C │ │ │ ├── Histogram │ │ │ │ ├── Histogram.C │ │ │ │ └── Histogram.H │ │ │ ├── IndirectList │ │ │ │ ├── IndirectList.H │ │ │ │ └── IndirectListI.H │ │ │ ├── List │ │ │ │ ├── List.C │ │ │ │ ├── List.H │ │ │ │ ├── ListI.H │ │ │ │ ├── ListIO.C │ │ │ │ └── ListLoopM.H │ │ │ ├── ListListOps │ │ │ │ ├── ListListOps.C │ │ │ │ └── ListListOps.H │ │ │ ├── ListOps │ │ │ │ ├── ListOps.C │ │ │ │ ├── ListOps.H │ │ │ │ └── ListOpsTemplates.C │ │ │ ├── PackedList │ │ │ │ ├── PackedBoolList.C │ │ │ │ ├── PackedBoolList.H │ │ │ │ ├── PackedBoolListI.H │ │ │ │ ├── PackedList.C │ │ │ │ ├── PackedList.H │ │ │ │ ├── PackedListCore.C │ │ │ │ └── PackedListI.H │ │ │ ├── PtrList │ │ │ │ ├── PtrList.C │ │ │ │ ├── PtrList.H │ │ │ │ ├── PtrListI.H │ │ │ │ └── PtrListIO.C │ │ │ ├── SortableList │ │ │ │ ├── ParSortableList.C │ │ │ │ ├── ParSortableList.H │ │ │ │ ├── ParSortableListName.C │ │ │ │ ├── SortableList.C │ │ │ │ └── SortableList.H │ │ │ ├── SubList │ │ │ │ ├── SubList.H │ │ │ │ └── SubListI.H │ │ │ ├── UIndirectList │ │ │ │ ├── UIndirectList.H │ │ │ │ ├── UIndirectListI.H │ │ │ │ └── UIndirectListIO.C │ │ │ ├── UList │ │ │ │ ├── UList.C │ │ │ │ ├── UList.H │ │ │ │ ├── UListI.H │ │ │ │ └── UListIO.C │ │ │ └── UPtrList │ │ │ │ ├── UPtrList.C │ │ │ │ ├── UPtrList.H │ │ │ │ ├── UPtrListI.H │ │ │ │ └── UPtrListIO.C │ │ └── NamedEnum │ │ │ ├── NamedEnum.C │ │ │ └── NamedEnum.H │ ├── db │ │ ├── Callback │ │ │ ├── Callback.C │ │ │ └── Callback.H │ │ ├── CallbackRegistry │ │ │ ├── CallbackRegistry.C │ │ │ ├── CallbackRegistry.H │ │ │ └── CallbackRegistryName.C │ │ ├── IOobject │ │ │ ├── IOobject.C │ │ │ ├── IOobject.H │ │ │ ├── IOobjectI.H │ │ │ ├── IOobjectIO.C │ │ │ ├── IOobjectReadHeader.C │ │ │ ├── IOobjectTemplates.C │ │ │ └── IOobjectWriteHeader.C │ │ ├── IOobjectList │ │ │ ├── IOobjectList.C │ │ │ └── IOobjectList.H │ │ ├── IOobjects │ │ │ ├── CompactIOField │ │ │ │ ├── CompactIOField.C │ │ │ │ └── CompactIOField.H │ │ │ ├── CompactIOList │ │ │ │ ├── CompactIOList.C │ │ │ │ ├── CompactIOList.H │ │ │ │ ├── ListCompactIO.C │ │ │ │ └── ListCompactIO.H │ │ │ ├── GlobalIOField │ │ │ │ ├── GlobalIOField.C │ │ │ │ ├── GlobalIOField.H │ │ │ │ ├── GlobalIOFields.C │ │ │ │ └── GlobalIOFields.H │ │ │ ├── GlobalIOList │ │ │ │ ├── GlobalIOList.C │ │ │ │ ├── GlobalIOList.H │ │ │ │ ├── GlobalIOLists.C │ │ │ │ └── GlobalIOLists.H │ │ │ ├── IOField │ │ │ │ ├── IOField.C │ │ │ │ └── IOField.H │ │ │ ├── IOList │ │ │ │ ├── IOList.C │ │ │ │ └── IOList.H │ │ │ ├── IOMap │ │ │ │ ├── IOMap.C │ │ │ │ ├── IOMap.H │ │ │ │ └── IOMapName.C │ │ │ ├── IOPtrList │ │ │ │ ├── IOPtrList.C │ │ │ │ └── IOPtrList.H │ │ │ ├── IOdictionary │ │ │ │ ├── IOdictionary.C │ │ │ │ ├── IOdictionary.H │ │ │ │ ├── IOdictionaryIO.C │ │ │ │ ├── localIOdictionary.C │ │ │ │ ├── localIOdictionary.H │ │ │ │ ├── systemDict.C │ │ │ │ └── systemDict.H │ │ │ └── decomposedBlockData │ │ │ │ ├── decomposedBlockData.C │ │ │ │ └── decomposedBlockData.H │ │ ├── IOstreams │ │ │ ├── Fstreams │ │ │ │ ├── IFstream.C │ │ │ │ ├── IFstream.H │ │ │ │ ├── OFstream.C │ │ │ │ ├── OFstream.H │ │ │ │ ├── masterOFstream.C │ │ │ │ └── masterOFstream.H │ │ │ ├── IOstreams.C │ │ │ ├── IOstreams.H │ │ │ ├── IOstreams │ │ │ │ ├── INew.H │ │ │ │ ├── IOmanip.H │ │ │ │ ├── IOstream.C │ │ │ │ ├── IOstream.H │ │ │ │ ├── InfoProxy.H │ │ │ │ ├── Istream.C │ │ │ │ ├── Istream.H │ │ │ │ ├── Ostream.C │ │ │ │ └── Ostream.H │ │ │ ├── Pstreams │ │ │ │ ├── IPstream.C │ │ │ │ ├── IPstream.H │ │ │ │ ├── OPstream.C │ │ │ │ ├── OPstream.H │ │ │ │ ├── Pstream.C │ │ │ │ ├── Pstream.H │ │ │ │ ├── PstreamBuffers.C │ │ │ │ ├── PstreamBuffers.H │ │ │ │ ├── PstreamCombineReduceOps.H │ │ │ │ ├── PstreamReduceOps.H │ │ │ │ ├── UIPstream.C │ │ │ │ ├── UIPstream.H │ │ │ │ ├── UOPstream.C │ │ │ │ ├── UOPstream.H │ │ │ │ ├── UPstream.C │ │ │ │ ├── UPstream.H │ │ │ │ ├── UPstreamCommsStruct.C │ │ │ │ ├── combineGatherScatter.C │ │ │ │ ├── exchange.C │ │ │ │ ├── gatherScatter.C │ │ │ │ └── gatherScatterList.C │ │ │ ├── Sstreams │ │ │ │ ├── ISstream.C │ │ │ │ ├── ISstream.H │ │ │ │ ├── ISstreamI.H │ │ │ │ ├── OSstream.C │ │ │ │ ├── OSstream.H │ │ │ │ ├── OSstreamI.H │ │ │ │ ├── ReadHex.C │ │ │ │ ├── ReadHex.H │ │ │ │ ├── SstreamsPrint.C │ │ │ │ ├── prefixOSstream.C │ │ │ │ ├── prefixOSstream.H │ │ │ │ ├── readHexLabel.C │ │ │ │ └── readHexLabel.H │ │ │ ├── StringStreams │ │ │ │ ├── IStringStream.H │ │ │ │ ├── OStringStream.H │ │ │ │ └── StringStreamsPrint.C │ │ │ ├── Tstreams │ │ │ │ ├── ITstream.C │ │ │ │ └── ITstream.H │ │ │ ├── dummyISstream │ │ │ │ └── dummyISstream.H │ │ │ ├── dummyIstream │ │ │ │ └── dummyIstream.H │ │ │ ├── gzstream │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── gzstream.C │ │ │ │ ├── gzstream.h │ │ │ │ └── version │ │ │ ├── hashes │ │ │ │ └── OSHA1stream.H │ │ │ └── token │ │ │ │ ├── token.C │ │ │ │ ├── token.H │ │ │ │ ├── tokenI.H │ │ │ │ ├── tokenIO.C │ │ │ │ └── tokenList.H │ │ ├── Time │ │ │ ├── Time.C │ │ │ ├── Time.H │ │ │ ├── TimeIO.C │ │ │ ├── TimePaths.C │ │ │ ├── TimePaths.H │ │ │ ├── TimeState.C │ │ │ ├── TimeState.H │ │ │ ├── TimeStateI.H │ │ │ ├── findTimes.C │ │ │ ├── instant │ │ │ │ ├── instant.C │ │ │ │ ├── instant.H │ │ │ │ └── instantList.H │ │ │ ├── subCycleTime.C │ │ │ ├── subCycleTime.H │ │ │ ├── timeSelector.C │ │ │ └── timeSelector.H │ │ ├── dictionary │ │ │ ├── dictionary.C │ │ │ ├── dictionary.H │ │ │ ├── dictionaryEntry │ │ │ │ ├── dictionaryEntry.C │ │ │ │ ├── dictionaryEntry.H │ │ │ │ └── dictionaryEntryIO.C │ │ │ ├── dictionaryIO.C │ │ │ ├── dictionaryListEntry │ │ │ │ ├── dictionaryListEntry.C │ │ │ │ ├── dictionaryListEntry.H │ │ │ │ └── dictionaryListEntryIO.C │ │ │ ├── dictionaryTemplates.C │ │ │ ├── entry │ │ │ │ ├── entry.C │ │ │ │ ├── entry.H │ │ │ │ └── entryIO.C │ │ │ ├── functionEntries │ │ │ │ ├── calcEntry │ │ │ │ │ ├── calcEntry.C │ │ │ │ │ └── calcEntry.H │ │ │ │ ├── codeStream │ │ │ │ │ ├── codeStream.C │ │ │ │ │ └── codeStream.H │ │ │ │ ├── functionEntry │ │ │ │ │ ├── functionEntry.C │ │ │ │ │ └── functionEntry.H │ │ │ │ ├── ifEntry │ │ │ │ │ ├── ifEntry.C │ │ │ │ │ └── ifEntry.H │ │ │ │ ├── ifeqEntry │ │ │ │ │ ├── ifeqEntry.C │ │ │ │ │ └── ifeqEntry.H │ │ │ │ ├── includeEntry │ │ │ │ │ ├── includeEntry.C │ │ │ │ │ └── includeEntry.H │ │ │ │ ├── includeEtcEntry │ │ │ │ │ ├── includeEtcEntry.C │ │ │ │ │ └── includeEtcEntry.H │ │ │ │ ├── includeFuncEntry │ │ │ │ │ ├── includeFuncEntry.C │ │ │ │ │ └── includeFuncEntry.H │ │ │ │ ├── includeIfPresentEntry │ │ │ │ │ ├── includeIfPresentEntry.C │ │ │ │ │ └── includeIfPresentEntry.H │ │ │ │ ├── inputModeEntry │ │ │ │ │ ├── inputModeEntry.C │ │ │ │ │ └── inputModeEntry.H │ │ │ │ ├── inputSyntaxEntry │ │ │ │ │ ├── inputSyntaxEntry.C │ │ │ │ │ └── inputSyntaxEntry.H │ │ │ │ ├── negEntry │ │ │ │ │ ├── negEntry.C │ │ │ │ │ └── negEntry.H │ │ │ │ └── removeEntry │ │ │ │ │ ├── removeEntry.C │ │ │ │ │ └── removeEntry.H │ │ │ ├── keyType │ │ │ │ ├── keyType.C │ │ │ │ ├── keyType.H │ │ │ │ └── keyTypeI.H │ │ │ └── primitiveEntry │ │ │ │ ├── primitiveEntry.C │ │ │ │ ├── primitiveEntry.H │ │ │ │ ├── primitiveEntryIO.C │ │ │ │ └── primitiveEntryTemplates.C │ │ ├── dynamicLibrary │ │ │ ├── codedBase │ │ │ │ ├── codedBase.C │ │ │ │ └── codedBase.H │ │ │ ├── compileTemplate │ │ │ │ ├── compileTemplate.C │ │ │ │ └── compileTemplate.H │ │ │ ├── dlLibraryTable │ │ │ │ ├── dlLibraryTable.C │ │ │ │ ├── dlLibraryTable.H │ │ │ │ └── dlLibraryTableTemplates.C │ │ │ └── dynamicCode │ │ │ │ ├── dynamicCode.C │ │ │ │ ├── dynamicCode.H │ │ │ │ ├── dynamicCodeContext.C │ │ │ │ └── dynamicCodeContext.H │ │ ├── error │ │ │ ├── IOerror.C │ │ │ ├── error.C │ │ │ ├── error.H │ │ │ ├── errorManip.H │ │ │ ├── messageStream.C │ │ │ └── messageStream.H │ │ ├── functionObjects │ │ │ ├── IOOutputFilter │ │ │ │ ├── IOOutputFilter.C │ │ │ │ └── IOOutputFilter.H │ │ │ ├── functionObject │ │ │ │ ├── functionObject.C │ │ │ │ └── functionObject.H │ │ │ ├── functionObjectList │ │ │ │ ├── functionObjectList.C │ │ │ │ ├── functionObjectList.H │ │ │ │ ├── postProcess.H │ │ │ │ ├── wordAndDictionary.C │ │ │ │ └── wordAndDictionary.H │ │ │ ├── logFiles │ │ │ │ ├── logFiles.C │ │ │ │ └── logFiles.H │ │ │ ├── regionFunctionObject │ │ │ │ ├── regionFunctionObject.C │ │ │ │ ├── regionFunctionObject.H │ │ │ │ └── regionFunctionObjectTemplates.C │ │ │ ├── timeControl │ │ │ │ ├── timeControl.C │ │ │ │ ├── timeControl.H │ │ │ │ ├── timeControlFunctionObject.C │ │ │ │ ├── timeControlFunctionObject.H │ │ │ │ ├── timeControlFunctionObjectI.H │ │ │ │ └── timeControlI.H │ │ │ ├── writeFile │ │ │ │ ├── writeFile.C │ │ │ │ ├── writeFile.H │ │ │ │ └── writeFileTemplates.C │ │ │ ├── writeLocalObjects │ │ │ │ ├── writeLocalObjects.C │ │ │ │ └── writeLocalObjects.H │ │ │ └── writeObjectsBase │ │ │ │ ├── writeObjectsBase.C │ │ │ │ └── writeObjectsBase.H │ │ ├── objectRegistry │ │ │ ├── objectRegistry.C │ │ │ ├── objectRegistry.H │ │ │ └── objectRegistryTemplates.C │ │ ├── regIOobject │ │ │ ├── regIOobject.C │ │ │ ├── regIOobject.H │ │ │ ├── regIOobjectI.H │ │ │ ├── regIOobjectRead.C │ │ │ └── regIOobjectWrite.C │ │ ├── runTimeSelection │ │ │ ├── construction │ │ │ │ ├── addToRunTimeSelectionTable.H │ │ │ │ └── runTimeSelectionTables.H │ │ │ └── memberFunctions │ │ │ │ ├── addToMemberFunctionSelectionTable.H │ │ │ │ └── memberFunctionSelectionTables.H │ │ └── typeInfo │ │ │ ├── className.H │ │ │ └── typeInfo.H │ ├── dimensionSet │ │ ├── dimensionSet.C │ │ ├── dimensionSet.H │ │ ├── dimensionSetIO.C │ │ ├── dimensionSets.C │ │ └── dimensionSets.H │ ├── dimensionedTypes │ │ ├── dimensionedScalar │ │ │ ├── dimensionedScalar.C │ │ │ ├── dimensionedScalar.H │ │ │ └── dimensionedScalarFwd.H │ │ ├── dimensionedSphericalTensor │ │ │ ├── dimensionedSphericalTensor.C │ │ │ └── dimensionedSphericalTensor.H │ │ ├── dimensionedSymmTensor │ │ │ ├── dimensionedSymmTensor.C │ │ │ └── dimensionedSymmTensor.H │ │ ├── dimensionedTensor │ │ │ ├── dimensionedTensor.C │ │ │ └── dimensionedTensor.H │ │ ├── dimensionedType │ │ │ ├── dimensionedType.C │ │ │ └── dimensionedType.H │ │ ├── dimensionedTypes.H │ │ └── dimensionedVector │ │ │ └── dimensionedVector.H │ ├── fields │ │ ├── DimensionedFields │ │ │ ├── DimensionedField │ │ │ │ ├── DimensionedField.C │ │ │ │ ├── DimensionedField.H │ │ │ │ ├── DimensionedFieldFunctions.C │ │ │ │ ├── DimensionedFieldFunctions.H │ │ │ │ ├── DimensionedFieldFunctionsM.C │ │ │ │ ├── DimensionedFieldFunctionsM.H │ │ │ │ ├── DimensionedFieldI.H │ │ │ │ ├── DimensionedFieldIO.C │ │ │ │ ├── DimensionedFieldReuseFunctions.H │ │ │ │ ├── DimensionedFields.H │ │ │ │ └── MapDimensionedFields.H │ │ │ ├── DimensionedScalarField │ │ │ │ ├── DimensionedScalarField.C │ │ │ │ └── DimensionedScalarField.H │ │ │ ├── DimensionedSphericalTensorField │ │ │ │ ├── DimensionedSphericalTensorField.C │ │ │ │ └── DimensionedSphericalTensorField.H │ │ │ ├── DimensionedSymmTensorField │ │ │ │ ├── DimensionedSymmTensorField.C │ │ │ │ └── DimensionedSymmTensorField.H │ │ │ └── DimensionedTensorField │ │ │ │ ├── DimensionedTensorField.C │ │ │ │ └── DimensionedTensorField.H │ │ ├── FieldFields │ │ │ ├── FieldField │ │ │ │ ├── FieldField.C │ │ │ │ ├── FieldField.H │ │ │ │ ├── FieldFieldFunctions.C │ │ │ │ ├── FieldFieldFunctions.H │ │ │ │ ├── FieldFieldFunctionsM.C │ │ │ │ ├── FieldFieldFunctionsM.H │ │ │ │ ├── FieldFieldReuseFunctions.H │ │ │ │ └── FieldFields.H │ │ │ ├── UniformFieldField │ │ │ │ ├── UniformFieldField.H │ │ │ │ └── UniformFieldFieldI.H │ │ │ ├── oneFieldField │ │ │ │ ├── oneFieldField.H │ │ │ │ └── oneFieldFieldI.H │ │ │ ├── scalarFieldField │ │ │ │ ├── scalarFieldField.C │ │ │ │ └── scalarFieldField.H │ │ │ ├── sphericalTensorFieldField │ │ │ │ ├── sphericalTensorFieldField.C │ │ │ │ └── sphericalTensorFieldField.H │ │ │ ├── symmTensorFieldField │ │ │ │ ├── symmTensorFieldField.C │ │ │ │ └── symmTensorFieldField.H │ │ │ ├── tensorFieldField │ │ │ │ ├── tensorFieldField.C │ │ │ │ └── tensorFieldField.H │ │ │ ├── transformFieldField │ │ │ │ ├── transformFieldField.C │ │ │ │ └── transformFieldField.H │ │ │ └── zeroFieldField │ │ │ │ ├── zeroFieldField.H │ │ │ │ └── zeroFieldFieldI.H │ │ ├── Fields │ │ │ ├── DynamicField │ │ │ │ ├── DynamicField.C │ │ │ │ ├── DynamicField.H │ │ │ │ └── DynamicFieldI.H │ │ │ ├── Field │ │ │ │ ├── Field.C │ │ │ │ ├── Field.H │ │ │ │ ├── FieldFunctions.C │ │ │ │ ├── FieldFunctions.H │ │ │ │ ├── FieldFunctionsM.C │ │ │ │ ├── FieldFunctionsM.H │ │ │ │ ├── FieldM.H │ │ │ │ ├── FieldReuseFunctions.H │ │ │ │ ├── SubField.H │ │ │ │ ├── SubFieldI.H │ │ │ │ └── undefFieldFunctionsM.H │ │ │ ├── UniformField │ │ │ │ ├── UniformField.H │ │ │ │ └── UniformFieldI.H │ │ │ ├── complexFields │ │ │ │ ├── complexFields.C │ │ │ │ └── complexFields.H │ │ │ ├── diagTensorField │ │ │ │ ├── diagTensorField.C │ │ │ │ ├── diagTensorField.H │ │ │ │ ├── diagTensorFieldIOField.C │ │ │ │ ├── diagTensorFieldIOField.H │ │ │ │ ├── diagTensorIOField.C │ │ │ │ └── diagTensorIOField.H │ │ │ ├── fieldMappers │ │ │ │ ├── directFieldMapper │ │ │ │ │ ├── directFieldMapper.C │ │ │ │ │ ├── directFieldMapper.H │ │ │ │ │ └── directFieldMapperTemplates.C │ │ │ │ ├── fieldMapper │ │ │ │ │ ├── fieldMapper.H │ │ │ │ │ └── fieldMapperTemplates.C │ │ │ │ ├── generalFieldMapper │ │ │ │ │ ├── generalFieldMapper.C │ │ │ │ │ ├── generalFieldMapper.H │ │ │ │ │ └── generalFieldMapperTemplates.C │ │ │ │ └── setSizeFieldMapper │ │ │ │ │ ├── setSizeFieldMapper.C │ │ │ │ │ ├── setSizeFieldMapper.H │ │ │ │ │ └── setSizeFieldMapperTemplates.C │ │ │ ├── fieldTypes.H │ │ │ ├── labelField │ │ │ │ ├── labelField.C │ │ │ │ ├── labelField.H │ │ │ │ ├── labelFieldIOField.C │ │ │ │ ├── labelFieldIOField.H │ │ │ │ ├── labelIOField.C │ │ │ │ └── labelIOField.H │ │ │ ├── oneField │ │ │ │ ├── oneField.H │ │ │ │ └── oneFieldI.H │ │ │ ├── primitiveFields.H │ │ │ ├── primitiveFieldsFwd.H │ │ │ ├── quaternionField │ │ │ │ ├── quaternionField.C │ │ │ │ ├── quaternionField.H │ │ │ │ ├── quaternionIOField.C │ │ │ │ └── quaternionIOField.H │ │ │ ├── scalarField │ │ │ │ ├── scalarField.C │ │ │ │ ├── scalarField.H │ │ │ │ ├── scalarFieldIOField.C │ │ │ │ ├── scalarFieldIOField.H │ │ │ │ ├── scalarIOField.C │ │ │ │ └── scalarIOField.H │ │ │ ├── sphericalTensorField │ │ │ │ ├── sphericalTensorField.C │ │ │ │ ├── sphericalTensorField.H │ │ │ │ ├── sphericalTensorFieldIOField.C │ │ │ │ ├── sphericalTensorFieldIOField.H │ │ │ │ ├── sphericalTensorIOField.C │ │ │ │ └── sphericalTensorIOField.H │ │ │ ├── symmTensorField │ │ │ │ ├── symmTensorField.C │ │ │ │ ├── symmTensorField.H │ │ │ │ ├── symmTensorFieldIOField.C │ │ │ │ ├── symmTensorFieldIOField.H │ │ │ │ ├── symmTensorIOField.C │ │ │ │ └── symmTensorIOField.H │ │ │ ├── symmTransformField │ │ │ │ ├── symmTransformField.C │ │ │ │ └── symmTransformField.H │ │ │ ├── tensorField │ │ │ │ ├── tensorField.C │ │ │ │ ├── tensorField.H │ │ │ │ ├── tensorFieldIOField.C │ │ │ │ ├── tensorFieldIOField.H │ │ │ │ ├── tensorIOField.C │ │ │ │ └── tensorIOField.H │ │ │ ├── transformField │ │ │ │ ├── transformField.C │ │ │ │ ├── transformField.H │ │ │ │ └── transformFieldTemplates.C │ │ │ ├── triadField │ │ │ │ ├── triadField.C │ │ │ │ ├── triadField.H │ │ │ │ ├── triadIOField.C │ │ │ │ └── triadIOField.H │ │ │ ├── vector2DField │ │ │ │ ├── vector2DField.C │ │ │ │ ├── vector2DField.H │ │ │ │ ├── vector2DFieldFwd.H │ │ │ │ ├── vector2DFieldIOField.C │ │ │ │ ├── vector2DFieldIOField.H │ │ │ │ ├── vector2DIOField.C │ │ │ │ └── vector2DIOField.H │ │ │ ├── vectorField │ │ │ │ ├── vectorField.C │ │ │ │ ├── vectorField.H │ │ │ │ ├── vectorFieldIOField.C │ │ │ │ ├── vectorFieldIOField.H │ │ │ │ ├── vectorIOField.C │ │ │ │ └── vectorIOField.H │ │ │ └── zeroField │ │ │ │ ├── zeroField.H │ │ │ │ └── zeroFieldI.H │ │ ├── GeometricFields │ │ │ ├── GeometricField │ │ │ │ ├── GeometricBoundaryField.C │ │ │ │ ├── GeometricField.C │ │ │ │ ├── GeometricField.H │ │ │ │ ├── GeometricFieldFunctions.C │ │ │ │ ├── GeometricFieldFunctions.H │ │ │ │ ├── GeometricFieldFunctionsM.C │ │ │ │ ├── GeometricFieldFunctionsM.H │ │ │ │ ├── GeometricFieldI.H │ │ │ │ ├── GeometricFieldReuseFunctions.H │ │ │ │ ├── GeometricFields.H │ │ │ │ ├── MapGeometricFields.H │ │ │ │ ├── uniformInterpolate.C │ │ │ │ └── uniformInterpolate.H │ │ │ ├── GeometricScalarField │ │ │ │ ├── GeometricScalarField.C │ │ │ │ └── GeometricScalarField.H │ │ │ ├── GeometricSphericalTensorField │ │ │ │ ├── GeometricSphericalTensorField.C │ │ │ │ └── GeometricSphericalTensorField.H │ │ │ ├── GeometricSymmTensorField │ │ │ │ ├── GeometricSymmTensorField.C │ │ │ │ └── GeometricSymmTensorField.H │ │ │ ├── GeometricTensorField │ │ │ │ ├── GeometricTensorField.C │ │ │ │ └── GeometricTensorField.H │ │ │ ├── SlicedGeometricField │ │ │ │ ├── SlicedGeometricField.C │ │ │ │ └── SlicedGeometricField.H │ │ │ ├── geometricOneField │ │ │ │ ├── geometricOneField.H │ │ │ │ └── geometricOneFieldI.H │ │ │ ├── geometricZeroField │ │ │ │ ├── geometricZeroField.H │ │ │ │ └── geometricZeroFieldI.H │ │ │ ├── pointFields │ │ │ │ ├── pointFields.C │ │ │ │ ├── pointFields.H │ │ │ │ └── pointFieldsFwd.H │ │ │ └── transformGeometricField │ │ │ │ ├── transformGeometricField.C │ │ │ │ └── transformGeometricField.H │ │ ├── ReadFields │ │ │ ├── ReadFields.C │ │ │ ├── ReadFields.H │ │ │ ├── readPointFields.H │ │ │ ├── readSurfaceFields.H │ │ │ └── readVolFields.H │ │ ├── UniformDimensionedFields │ │ │ ├── UniformDimensionedField.C │ │ │ ├── UniformDimensionedField.H │ │ │ ├── uniformDimensionedFields.C │ │ │ └── uniformDimensionedFields.H │ │ ├── UniformGeometricFields │ │ │ ├── UniformGeometricField.C │ │ │ ├── UniformGeometricField.H │ │ │ ├── UniformGeometricFieldI.H │ │ │ ├── uniformGeometricFields.C │ │ │ └── uniformGeometricFields.H │ │ ├── cloud │ │ │ ├── cloud.C │ │ │ ├── cloud.H │ │ │ └── mapClouds.H │ │ └── pointPatchFields │ │ │ ├── basic │ │ │ ├── basicSymmetry │ │ │ │ ├── basicSymmetryPointPatchField.C │ │ │ │ └── basicSymmetryPointPatchField.H │ │ │ ├── calculated │ │ │ │ ├── calculatedPointPatchField.C │ │ │ │ ├── calculatedPointPatchField.H │ │ │ │ ├── calculatedPointPatchFields.C │ │ │ │ └── calculatedPointPatchFields.H │ │ │ ├── coupled │ │ │ │ ├── coupledPointPatchField.C │ │ │ │ ├── coupledPointPatchField.H │ │ │ │ ├── coupledPointPatchFields.C │ │ │ │ └── coupledPointPatchFields.H │ │ │ ├── fixedValue │ │ │ │ ├── fixedValuePointPatchField.C │ │ │ │ ├── fixedValuePointPatchField.H │ │ │ │ ├── fixedValuePointPatchFields.C │ │ │ │ └── fixedValuePointPatchFields.H │ │ │ ├── value │ │ │ │ ├── valuePointPatchField.C │ │ │ │ ├── valuePointPatchField.H │ │ │ │ ├── valuePointPatchFields.C │ │ │ │ └── valuePointPatchFields.H │ │ │ └── zeroGradient │ │ │ │ ├── zeroGradientPointPatchField.C │ │ │ │ ├── zeroGradientPointPatchField.H │ │ │ │ ├── zeroGradientPointPatchFields.C │ │ │ │ └── zeroGradientPointPatchFields.H │ │ │ ├── constraint │ │ │ ├── cyclic │ │ │ │ ├── cyclicPointPatchField.C │ │ │ │ ├── cyclicPointPatchField.H │ │ │ │ ├── cyclicPointPatchFields.C │ │ │ │ └── cyclicPointPatchFields.H │ │ │ ├── cyclicSlip │ │ │ │ ├── cyclicSlipPointPatchField.C │ │ │ │ ├── cyclicSlipPointPatchField.H │ │ │ │ ├── cyclicSlipPointPatchFields.C │ │ │ │ └── cyclicSlipPointPatchFields.H │ │ │ ├── empty │ │ │ │ ├── emptyPointPatchField.C │ │ │ │ ├── emptyPointPatchField.H │ │ │ │ ├── emptyPointPatchFields.C │ │ │ │ └── emptyPointPatchFields.H │ │ │ ├── internal │ │ │ │ ├── internalPointPatchField.C │ │ │ │ ├── internalPointPatchField.H │ │ │ │ ├── internalPointPatchFields.C │ │ │ │ └── internalPointPatchFields.H │ │ │ ├── processor │ │ │ │ ├── processorPointPatchField.C │ │ │ │ ├── processorPointPatchField.H │ │ │ │ ├── processorPointPatchFields.C │ │ │ │ └── processorPointPatchFields.H │ │ │ ├── processorCyclic │ │ │ │ ├── processorCyclicPointPatchField.C │ │ │ │ ├── processorCyclicPointPatchField.H │ │ │ │ ├── processorCyclicPointPatchFields.C │ │ │ │ └── processorCyclicPointPatchFields.H │ │ │ ├── symmetry │ │ │ │ ├── symmetryPointPatchField.C │ │ │ │ ├── symmetryPointPatchField.H │ │ │ │ ├── symmetryPointPatchFields.C │ │ │ │ └── symmetryPointPatchFields.H │ │ │ ├── symmetryPlane │ │ │ │ ├── symmetryPlanePointPatchField.C │ │ │ │ ├── symmetryPlanePointPatchField.H │ │ │ │ ├── symmetryPlanePointPatchFields.C │ │ │ │ └── symmetryPlanePointPatchFields.H │ │ │ └── wedge │ │ │ │ ├── wedgePointPatchField.C │ │ │ │ ├── wedgePointPatchField.H │ │ │ │ ├── wedgePointPatchFields.C │ │ │ │ └── wedgePointPatchFields.H │ │ │ ├── derived │ │ │ ├── codedFixedValue │ │ │ │ ├── codedFixedValuePointPatchField.C │ │ │ │ ├── codedFixedValuePointPatchField.H │ │ │ │ ├── codedFixedValuePointPatchFields.C │ │ │ │ ├── codedFixedValuePointPatchFields.H │ │ │ │ └── codedFixedValuePointPatchFieldsFwd.H │ │ │ ├── fixedNormalSlip │ │ │ │ ├── fixedNormalSlipPointPatchField.C │ │ │ │ ├── fixedNormalSlipPointPatchField.H │ │ │ │ ├── fixedNormalSlipPointPatchFields.C │ │ │ │ └── fixedNormalSlipPointPatchFields.H │ │ │ ├── slip │ │ │ │ ├── slipPointPatchField.C │ │ │ │ ├── slipPointPatchField.H │ │ │ │ ├── slipPointPatchFields.C │ │ │ │ └── slipPointPatchFields.H │ │ │ └── uniformFixedValue │ │ │ │ ├── uniformFixedValuePointPatchField.C │ │ │ │ ├── uniformFixedValuePointPatchField.H │ │ │ │ ├── uniformFixedValuePointPatchFields.C │ │ │ │ └── uniformFixedValuePointPatchFields.H │ │ │ └── pointPatchField │ │ │ ├── directPointPatchFieldMapper.H │ │ │ ├── pointConstraint │ │ │ ├── pointConstraint.H │ │ │ └── pointConstraintI.H │ │ │ ├── pointPatchField.C │ │ │ ├── pointPatchField.H │ │ │ ├── pointPatchFieldFunctions.H │ │ │ ├── pointPatchFieldMapper.H │ │ │ ├── pointPatchFieldMapperPatchRef.H │ │ │ ├── pointPatchFieldNew.C │ │ │ ├── pointPatchFields.C │ │ │ ├── pointPatchFields.H │ │ │ └── pointPatchFieldsFwd.H │ ├── global │ │ ├── argList │ │ │ ├── argList.C │ │ │ ├── argList.H │ │ │ ├── argListI.H │ │ │ └── parRun.H │ │ ├── clock │ │ │ ├── clock.C │ │ │ └── clock.H │ │ ├── constants │ │ │ ├── atomic │ │ │ │ ├── atomicConstants.C │ │ │ │ └── atomicConstants.H │ │ │ ├── constants.C │ │ │ ├── constants.H │ │ │ ├── dimensionedConstants.C │ │ │ ├── dimensionedConstants.H │ │ │ ├── electromagnetic │ │ │ │ ├── electromagneticConstants.C │ │ │ │ └── electromagneticConstants.H │ │ │ ├── fundamental │ │ │ │ ├── fundamentalConstants.C │ │ │ │ └── fundamentalConstants.H │ │ │ ├── mathematical │ │ │ │ └── mathematicalConstants.H │ │ │ ├── physicoChemical │ │ │ │ ├── physicoChemicalConstants.C │ │ │ │ └── physicoChemicalConstants.H │ │ │ ├── standard │ │ │ │ ├── standardConstants.C │ │ │ │ └── standardConstants.H │ │ │ ├── thermodynamic │ │ │ │ ├── thermodynamicConstants.C │ │ │ │ └── thermodynamicConstants.H │ │ │ └── universal │ │ │ │ ├── universalConstants.C │ │ │ │ └── universalConstants.H │ │ ├── debug │ │ │ ├── debug.C │ │ │ ├── debug.H │ │ │ └── defineDebugSwitch.H │ │ ├── etcFiles │ │ │ ├── etcFiles.C │ │ │ └── etcFiles.H │ │ ├── fileOperations │ │ │ ├── collatedFileOperation │ │ │ │ ├── OFstreamCollator.C │ │ │ │ ├── OFstreamCollator.H │ │ │ │ ├── collatedFileOperation.C │ │ │ │ ├── collatedFileOperation.H │ │ │ │ ├── hostCollatedFileOperation.C │ │ │ │ ├── hostCollatedFileOperation.H │ │ │ │ ├── threadedCollatedOFstream.C │ │ │ │ └── threadedCollatedOFstream.H │ │ │ ├── fileOperation │ │ │ │ ├── fileOperation.C │ │ │ │ └── fileOperation.H │ │ │ ├── fileOperationInitialise │ │ │ │ ├── fileOperationInitialise.C │ │ │ │ ├── fileOperationInitialise.H │ │ │ │ └── unthreadedInitialise.H │ │ │ ├── masterUncollatedFileOperation │ │ │ │ ├── masterUncollatedFileOperation.C │ │ │ │ ├── masterUncollatedFileOperation.H │ │ │ │ └── masterUncollatedFileOperationTemplates.C │ │ │ └── uncollatedFileOperation │ │ │ │ ├── uncollatedFileOperation.C │ │ │ │ └── uncollatedFileOperation.H │ │ ├── foamDoc.H │ │ ├── foamVersion.H │ │ ├── global.Cver │ │ ├── jobInfo │ │ │ ├── jobInfo.C │ │ │ └── jobInfo.H │ │ ├── new.C │ │ └── unitConversion │ │ │ └── unitConversion.H │ ├── graph │ │ ├── curve │ │ │ ├── curve.C │ │ │ ├── curve.H │ │ │ ├── curveTools.C │ │ │ └── curveTools.H │ │ ├── graph.C │ │ ├── graph.H │ │ └── writers │ │ │ ├── gnuplotGraph │ │ │ ├── gnuplotGraph.C │ │ │ └── gnuplotGraph.H │ │ │ ├── jplotGraph │ │ │ ├── jplotGraph.C │ │ │ └── jplotGraph.H │ │ │ ├── rawGraph │ │ │ ├── rawGraph.C │ │ │ └── rawGraph.H │ │ │ └── xmgrGraph │ │ │ ├── xmgrGraph.C │ │ │ └── xmgrGraph.H │ ├── include │ │ ├── OSspecific.H │ │ ├── addAllRegionsOption.H │ │ ├── addDictOption.H │ │ ├── addFunctionObjectOptions.H │ │ ├── addOverwriteOption.H │ │ ├── addRegionOption.H │ │ ├── addTimeOptions.H │ │ ├── checkConstantOption.H │ │ ├── checkTimeOption.H │ │ ├── checkTimeOptions.H │ │ ├── checkTimeOptionsNoConstant.H │ │ ├── createMesh.H │ │ ├── createMeshNoClear.H │ │ ├── createNamedMesh.H │ │ ├── createNamedPolyMesh.H │ │ ├── createPolyMesh.H │ │ ├── createTime.H │ │ ├── demandDrivenData.H │ │ ├── listOptions.H │ │ ├── listOutput.H │ │ ├── macros.H │ │ ├── removeCaseOptions.H │ │ ├── setRootCase.H │ │ └── setRootCaseLists.H │ ├── interpolations │ │ ├── interpolatePointToCell │ │ │ ├── interpolatePointToCell.C │ │ │ └── interpolatePointToCell.H │ │ ├── interpolateSplineXY │ │ │ ├── interpolateSplineXY.C │ │ │ └── interpolateSplineXY.H │ │ ├── interpolationWeights │ │ │ ├── interpolationWeights │ │ │ │ ├── interpolationWeights.C │ │ │ │ ├── interpolationWeights.H │ │ │ │ └── interpolationWeightsTemplates.C │ │ │ ├── linearInterpolationWeights │ │ │ │ ├── linearInterpolationWeights.C │ │ │ │ └── linearInterpolationWeights.H │ │ │ └── splineInterpolationWeights │ │ │ │ ├── splineInterpolationWeights.C │ │ │ │ └── splineInterpolationWeights.H │ │ ├── patchToPatchInterpolation │ │ │ ├── CalcPatchToPatchWeights.C │ │ │ ├── PatchToPatchInterpolate.C │ │ │ ├── PatchToPatchInterpolation.C │ │ │ ├── PatchToPatchInterpolation.H │ │ │ ├── PatchToPatchInterpolationName.C │ │ │ └── patchToPatchInterpolation.H │ │ └── primitivePatchInterpolation │ │ │ ├── PrimitivePatchInterpolation.C │ │ │ ├── PrimitivePatchInterpolation.H │ │ │ └── primitivePatchInterpolation.H │ ├── matrices │ │ ├── DiagonalMatrix │ │ │ ├── DiagonalMatrix.C │ │ │ └── DiagonalMatrix.H │ │ ├── LLTMatrix │ │ │ ├── LLTMatrix.C │ │ │ └── LLTMatrix.H │ │ ├── LUscalarMatrix │ │ │ ├── LUscalarMatrix.C │ │ │ ├── LUscalarMatrix.H │ │ │ ├── LUscalarMatrixTemplates.C │ │ │ ├── procLduInterface.C │ │ │ ├── procLduInterface.H │ │ │ ├── procLduMatrix.C │ │ │ └── procLduMatrix.H │ │ ├── LduMatrix │ │ │ ├── LduMatrix │ │ │ │ ├── LduInterfaceField │ │ │ │ │ ├── LduInterfaceField.C │ │ │ │ │ ├── LduInterfaceField.H │ │ │ │ │ ├── LduInterfaceFieldPtrsList.H │ │ │ │ │ └── LduInterfaceFields.C │ │ │ │ ├── LduMatrix.C │ │ │ │ ├── LduMatrix.H │ │ │ │ ├── LduMatrixATmul.C │ │ │ │ ├── LduMatrixI.H │ │ │ │ ├── LduMatrixOperations.C │ │ │ │ ├── LduMatrixPreconditioner.C │ │ │ │ ├── LduMatrixSmoother.C │ │ │ │ ├── LduMatrixSolver.C │ │ │ │ ├── LduMatrixUpdateMatrixInterfaces.C │ │ │ │ ├── SolverPerformance.C │ │ │ │ ├── SolverPerformance.H │ │ │ │ ├── lduMatrices.C │ │ │ │ ├── solverPerformance.C │ │ │ │ └── solverPerformance.H │ │ │ ├── Preconditioners │ │ │ │ ├── DILUPreconditioner │ │ │ │ │ ├── TDILUPreconditioner.C │ │ │ │ │ └── TDILUPreconditioner.H │ │ │ │ ├── DiagonalPreconditioner │ │ │ │ │ ├── DiagonalPreconditioner.C │ │ │ │ │ └── DiagonalPreconditioner.H │ │ │ │ ├── NoPreconditioner │ │ │ │ │ ├── NoPreconditioner.C │ │ │ │ │ └── NoPreconditioner.H │ │ │ │ └── lduPreconditioners.C │ │ │ ├── Smoothers │ │ │ │ ├── GaussSeidel │ │ │ │ │ ├── TGaussSeidelSmoother.C │ │ │ │ │ └── TGaussSeidelSmoother.H │ │ │ │ └── lduSmoothers.C │ │ │ └── Solvers │ │ │ │ ├── DiagonalSolver │ │ │ │ ├── DiagonalSolver.C │ │ │ │ └── DiagonalSolver.H │ │ │ │ ├── PBiCCCG │ │ │ │ ├── PBiCCCG.C │ │ │ │ └── PBiCCCG.H │ │ │ │ ├── PBiCICG │ │ │ │ ├── PBiCICG.C │ │ │ │ └── PBiCICG.H │ │ │ │ ├── PCICG │ │ │ │ ├── PCICG.C │ │ │ │ └── PCICG.H │ │ │ │ ├── SmoothSolver │ │ │ │ ├── SmoothSolver.C │ │ │ │ └── SmoothSolver.H │ │ │ │ └── lduSolvers.C │ │ ├── Matrix │ │ │ ├── Matrix.C │ │ │ ├── Matrix.H │ │ │ ├── MatrixI.H │ │ │ └── MatrixIO.C │ │ ├── MatrixBlock │ │ │ ├── MatrixBlock.C │ │ │ ├── MatrixBlock.H │ │ │ └── MatrixBlockI.H │ │ ├── QRMatrix │ │ │ ├── QRMatrix.C │ │ │ ├── QRMatrix.H │ │ │ └── QRMatrixI.H │ │ ├── RectangularMatrix │ │ │ ├── RectangularMatrix.H │ │ │ └── RectangularMatrixI.H │ │ ├── SquareMatrix │ │ │ ├── SquareMatrix.C │ │ │ ├── SquareMatrix.H │ │ │ └── SquareMatrixI.H │ │ ├── SymmetricSquareMatrix │ │ │ ├── SymmetricSquareMatrix.C │ │ │ ├── SymmetricSquareMatrix.H │ │ │ └── SymmetricSquareMatrixI.H │ │ ├── lduMatrix │ │ │ ├── lduAddressing │ │ │ │ ├── lduAddressing.C │ │ │ │ ├── lduAddressing.H │ │ │ │ ├── lduInterface │ │ │ │ │ ├── cyclicLduInterface.C │ │ │ │ │ ├── cyclicLduInterface.H │ │ │ │ │ ├── lduInterface.C │ │ │ │ │ ├── lduInterface.H │ │ │ │ │ ├── lduInterfacePtrsList.H │ │ │ │ │ ├── processorLduInterface.C │ │ │ │ │ ├── processorLduInterface.H │ │ │ │ │ └── processorLduInterfaceTemplates.C │ │ │ │ ├── lduInterfaceFields │ │ │ │ │ ├── cyclicLduInterfaceField │ │ │ │ │ │ ├── cyclicLduInterfaceField.C │ │ │ │ │ │ └── cyclicLduInterfaceField.H │ │ │ │ │ ├── lduInterfaceField │ │ │ │ │ │ ├── lduInterfaceField.C │ │ │ │ │ │ ├── lduInterfaceField.H │ │ │ │ │ │ └── lduInterfaceFieldPtrsList.H │ │ │ │ │ └── processorLduInterfaceField │ │ │ │ │ │ ├── processorLduInterfaceField.C │ │ │ │ │ │ └── processorLduInterfaceField.H │ │ │ │ └── lduSchedule │ │ │ │ │ └── lduSchedule.H │ │ │ ├── lduMatrix │ │ │ │ ├── lduMatrix.C │ │ │ │ ├── lduMatrix.H │ │ │ │ ├── lduMatrixATmul.C │ │ │ │ ├── lduMatrixOperations.C │ │ │ │ ├── lduMatrixPreconditioner.C │ │ │ │ ├── lduMatrixSmoother.C │ │ │ │ ├── lduMatrixSolver.C │ │ │ │ ├── lduMatrixTemplates.C │ │ │ │ └── lduMatrixUpdateMatrixInterfaces.C │ │ │ ├── preconditioners │ │ │ │ ├── DICPreconditioner │ │ │ │ │ ├── DICPreconditioner.C │ │ │ │ │ └── DICPreconditioner.H │ │ │ │ ├── DILUPreconditioner │ │ │ │ │ ├── DILUPreconditioner.C │ │ │ │ │ └── DILUPreconditioner.H │ │ │ │ ├── FDICPreconditioner │ │ │ │ │ ├── FDICPreconditioner.C │ │ │ │ │ └── FDICPreconditioner.H │ │ │ │ ├── GAMGPreconditioner │ │ │ │ │ ├── GAMGPreconditioner.C │ │ │ │ │ └── GAMGPreconditioner.H │ │ │ │ ├── diagonalPreconditioner │ │ │ │ │ ├── diagonalPreconditioner.C │ │ │ │ │ └── diagonalPreconditioner.H │ │ │ │ └── noPreconditioner │ │ │ │ │ ├── noPreconditioner.C │ │ │ │ │ └── noPreconditioner.H │ │ │ ├── smoothers │ │ │ │ ├── DIC │ │ │ │ │ ├── DICSmoother.C │ │ │ │ │ └── DICSmoother.H │ │ │ │ ├── DICGaussSeidel │ │ │ │ │ ├── DICGaussSeidelSmoother.C │ │ │ │ │ └── DICGaussSeidelSmoother.H │ │ │ │ ├── DILU │ │ │ │ │ ├── DILUSmoother.C │ │ │ │ │ └── DILUSmoother.H │ │ │ │ ├── DILUGaussSeidel │ │ │ │ │ ├── DILUGaussSeidelSmoother.C │ │ │ │ │ └── DILUGaussSeidelSmoother.H │ │ │ │ ├── FDIC │ │ │ │ │ ├── FDICSmoother.C │ │ │ │ │ └── FDICSmoother.H │ │ │ │ ├── GaussSeidel │ │ │ │ │ ├── GaussSeidelSmoother.C │ │ │ │ │ └── GaussSeidelSmoother.H │ │ │ │ ├── nonBlockingGaussSeidel │ │ │ │ │ ├── nonBlockingGaussSeidelSmoother.C │ │ │ │ │ └── nonBlockingGaussSeidelSmoother.H │ │ │ │ └── symGaussSeidel │ │ │ │ │ ├── symGaussSeidelSmoother.C │ │ │ │ │ └── symGaussSeidelSmoother.H │ │ │ └── solvers │ │ │ │ ├── GAMG │ │ │ │ ├── GAMGAgglomerations │ │ │ │ │ ├── GAMGAgglomeration │ │ │ │ │ │ ├── GAMGAgglomerateLduAddressing.C │ │ │ │ │ │ ├── GAMGAgglomeration.C │ │ │ │ │ │ ├── GAMGAgglomeration.H │ │ │ │ │ │ └── GAMGAgglomerationTemplates.C │ │ │ │ │ ├── algebraicPairGAMGAgglomeration │ │ │ │ │ │ ├── algebraicPairGAMGAgglomeration.C │ │ │ │ │ │ └── algebraicPairGAMGAgglomeration.H │ │ │ │ │ ├── dummyAgglomeration │ │ │ │ │ │ ├── dummyAgglomeration.C │ │ │ │ │ │ └── dummyAgglomeration.H │ │ │ │ │ └── pairGAMGAgglomeration │ │ │ │ │ │ ├── pairGAMGAgglomerate.C │ │ │ │ │ │ ├── pairGAMGAgglomeration.C │ │ │ │ │ │ └── pairGAMGAgglomeration.H │ │ │ │ ├── GAMGProcAgglomerations │ │ │ │ │ ├── GAMGProcAgglomeration │ │ │ │ │ │ ├── GAMGProcAgglomeration.C │ │ │ │ │ │ └── GAMGProcAgglomeration.H │ │ │ │ │ ├── eagerGAMGProcAgglomeration │ │ │ │ │ │ ├── eagerGAMGProcAgglomeration.C │ │ │ │ │ │ └── eagerGAMGProcAgglomeration.H │ │ │ │ │ ├── manualGAMGProcAgglomeration │ │ │ │ │ │ ├── manualGAMGProcAgglomeration.C │ │ │ │ │ │ └── manualGAMGProcAgglomeration.H │ │ │ │ │ ├── masterCoarsestGAMGProcAgglomeration │ │ │ │ │ │ ├── masterCoarsestGAMGProcAgglomeration.C │ │ │ │ │ │ └── masterCoarsestGAMGProcAgglomeration.H │ │ │ │ │ ├── noneGAMGProcAgglomeration │ │ │ │ │ │ ├── noneGAMGProcAgglomeration.C │ │ │ │ │ │ └── noneGAMGProcAgglomeration.H │ │ │ │ │ └── procFacesGAMGProcAgglomeration │ │ │ │ │ │ ├── procFacesGAMGProcAgglomeration.C │ │ │ │ │ │ └── procFacesGAMGProcAgglomeration.H │ │ │ │ ├── GAMGSolver.C │ │ │ │ ├── GAMGSolver.H │ │ │ │ ├── GAMGSolverAgglomerateMatrix.C │ │ │ │ ├── GAMGSolverInterpolate.C │ │ │ │ ├── GAMGSolverScale.C │ │ │ │ ├── GAMGSolverSolve.C │ │ │ │ ├── interfaceFields │ │ │ │ │ ├── GAMGInterfaceField │ │ │ │ │ │ ├── GAMGInterfaceField.C │ │ │ │ │ │ ├── GAMGInterfaceField.H │ │ │ │ │ │ └── GAMGInterfaceFieldNew.C │ │ │ │ │ ├── cyclicGAMGInterfaceField │ │ │ │ │ │ ├── cyclicGAMGInterfaceField.C │ │ │ │ │ │ └── cyclicGAMGInterfaceField.H │ │ │ │ │ ├── processorCyclicGAMGInterfaceField │ │ │ │ │ │ ├── processorCyclicGAMGInterfaceField.C │ │ │ │ │ │ └── processorCyclicGAMGInterfaceField.H │ │ │ │ │ └── processorGAMGInterfaceField │ │ │ │ │ │ ├── processorGAMGInterfaceField.C │ │ │ │ │ │ └── processorGAMGInterfaceField.H │ │ │ │ └── interfaces │ │ │ │ │ ├── GAMGInterface │ │ │ │ │ ├── GAMGInterface.C │ │ │ │ │ ├── GAMGInterface.H │ │ │ │ │ ├── GAMGInterfaceNew.C │ │ │ │ │ └── GAMGInterfaceTemplates.C │ │ │ │ │ ├── cyclicGAMGInterface │ │ │ │ │ ├── cyclicGAMGInterface.C │ │ │ │ │ └── cyclicGAMGInterface.H │ │ │ │ │ ├── processorCyclicGAMGInterface │ │ │ │ │ ├── processorCyclicGAMGInterface.C │ │ │ │ │ └── processorCyclicGAMGInterface.H │ │ │ │ │ └── processorGAMGInterface │ │ │ │ │ ├── processorGAMGInterface.C │ │ │ │ │ └── processorGAMGInterface.H │ │ │ │ ├── PBiCG │ │ │ │ ├── PBiCG.C │ │ │ │ └── PBiCG.H │ │ │ │ ├── PBiCGStab │ │ │ │ ├── PBiCGStab.C │ │ │ │ └── PBiCGStab.H │ │ │ │ ├── PCG │ │ │ │ ├── PCG.C │ │ │ │ └── PCG.H │ │ │ │ ├── diagonalSolver │ │ │ │ ├── diagonalSolver.C │ │ │ │ └── diagonalSolver.H │ │ │ │ └── smoothSolver │ │ │ │ ├── smoothSolver.C │ │ │ │ └── smoothSolver.H │ │ ├── scalarMatrices │ │ │ ├── SVD │ │ │ │ ├── SVD.C │ │ │ │ ├── SVD.H │ │ │ │ └── SVDI.H │ │ │ ├── scalarMatrices.C │ │ │ ├── scalarMatrices.H │ │ │ └── scalarMatricesTemplates.C │ │ ├── simpleMatrix │ │ │ ├── simpleMatrix.C │ │ │ └── simpleMatrix.H │ │ ├── solution │ │ │ ├── solution.C │ │ │ ├── solution.H │ │ │ └── solutionTemplates.C │ │ └── tolerances │ │ │ ├── tolerances.C │ │ │ └── tolerances.H │ ├── memory │ │ ├── UautoPtr │ │ │ ├── UautoPtr.H │ │ │ └── UautoPtrI.H │ │ ├── autoPtr │ │ │ ├── autoPtr.H │ │ │ └── autoPtrI.H │ │ ├── refCount │ │ │ └── refCount.H │ │ ├── tmp │ │ │ ├── tmp.H │ │ │ └── tmpI.H │ │ └── tmpNrc │ │ │ ├── tmpNrc.H │ │ │ └── tmpNrcI.H │ ├── meshes │ │ ├── GeoMesh │ │ │ └── GeoMesh.H │ │ ├── Identifiers │ │ │ ├── DynamicID │ │ │ │ └── DynamicID.H │ │ │ ├── patch │ │ │ │ ├── coupleGroupIdentifier.C │ │ │ │ ├── coupleGroupIdentifier.H │ │ │ │ ├── coupleGroupIdentifierI.H │ │ │ │ ├── patchIdentifier.C │ │ │ │ ├── patchIdentifier.H │ │ │ │ └── polyPatchID.H │ │ │ └── zones │ │ │ │ └── ZoneIDs.H │ │ ├── MeshObject │ │ │ ├── MeshObject.C │ │ │ ├── MeshObject.H │ │ │ └── meshObject.C │ │ ├── ProcessorTopology │ │ │ ├── ProcessorTopology.C │ │ │ ├── ProcessorTopology.H │ │ │ ├── commSchedule.C │ │ │ └── commSchedule.H │ │ ├── Residuals │ │ │ ├── Residuals.C │ │ │ ├── Residuals.H │ │ │ └── residuals.C │ │ ├── bandCompression │ │ │ ├── bandCompression.C │ │ │ └── bandCompression.H │ │ ├── boundBox │ │ │ ├── boundBox.C │ │ │ ├── boundBox.H │ │ │ ├── boundBoxI.H │ │ │ └── boundBoxTemplates.C │ │ ├── data │ │ │ ├── data.C │ │ │ └── data.H │ │ ├── lduMesh │ │ │ ├── lduMesh.C │ │ │ ├── lduMesh.H │ │ │ ├── lduMeshTemplates.C │ │ │ ├── lduPrimitiveMesh.C │ │ │ ├── lduPrimitiveMesh.H │ │ │ └── lduPrimitiveMeshTemplates.C │ │ ├── meshShapes │ │ │ ├── cell │ │ │ │ ├── cell.C │ │ │ │ ├── cell.H │ │ │ │ ├── cellI.H │ │ │ │ ├── cellIOList.C │ │ │ │ ├── cellIOList.H │ │ │ │ ├── cellList.H │ │ │ │ ├── oppositeCellFace.C │ │ │ │ └── pyramidPointFaceRef.H │ │ │ ├── cellMatcher │ │ │ │ ├── cellMatcher.C │ │ │ │ ├── cellMatcher.H │ │ │ │ ├── cellMatcherI.H │ │ │ │ ├── degenerateMatcher.C │ │ │ │ ├── degenerateMatcher.H │ │ │ │ ├── hexMatcher.C │ │ │ │ ├── hexMatcher.H │ │ │ │ ├── prismMatcher.C │ │ │ │ ├── prismMatcher.H │ │ │ │ ├── pyrMatcher.C │ │ │ │ ├── pyrMatcher.H │ │ │ │ ├── tetMatcher.C │ │ │ │ ├── tetMatcher.H │ │ │ │ ├── tetWedgeMatcher.C │ │ │ │ ├── tetWedgeMatcher.H │ │ │ │ ├── wedgeMatcher.C │ │ │ │ └── wedgeMatcher.H │ │ │ ├── cellModel │ │ │ │ ├── cellModel.C │ │ │ │ ├── cellModel.H │ │ │ │ ├── cellModelI.H │ │ │ │ └── cellModelIO.C │ │ │ ├── cellModeller │ │ │ │ ├── cellModeller.C │ │ │ │ └── cellModeller.H │ │ │ ├── cellShape │ │ │ │ ├── cellShape.C │ │ │ │ ├── cellShape.H │ │ │ │ ├── cellShapeEqual.C │ │ │ │ ├── cellShapeI.H │ │ │ │ ├── cellShapeIO.C │ │ │ │ ├── cellShapeIOList.C │ │ │ │ ├── cellShapeIOList.H │ │ │ │ └── cellShapeList.H │ │ │ ├── edge │ │ │ │ ├── EdgeMap.H │ │ │ │ ├── edge.C │ │ │ │ ├── edge.H │ │ │ │ ├── edgeI.H │ │ │ │ ├── edgeIOList.C │ │ │ │ ├── edgeIOList.H │ │ │ │ └── edgeList.H │ │ │ ├── face │ │ │ │ ├── face.C │ │ │ │ ├── face.H │ │ │ │ ├── faceAreaInContact.C │ │ │ │ ├── faceContactSphere.C │ │ │ │ ├── faceI.H │ │ │ │ ├── faceIOList.C │ │ │ │ ├── faceIOList.H │ │ │ │ ├── faceIntersection.C │ │ │ │ ├── faceList.H │ │ │ │ ├── faceListFwd.H │ │ │ │ ├── faceTemplates.C │ │ │ │ └── oppositeFace.H │ │ │ ├── tetCell │ │ │ │ ├── tetCell.C │ │ │ │ ├── tetCell.H │ │ │ │ ├── tetCellI.H │ │ │ │ └── tetCellList.H │ │ │ └── triFace │ │ │ │ ├── triFace.H │ │ │ │ ├── triFaceI.H │ │ │ │ ├── triFaceList.H │ │ │ │ └── triFaceTemplates.C │ │ ├── meshTools │ │ │ ├── matchPoints.C │ │ │ ├── matchPoints.H │ │ │ ├── mergePoints.C │ │ │ └── mergePoints.H │ │ ├── pointMesh │ │ │ ├── pointBoundaryMesh │ │ │ │ ├── pointBoundaryMesh.C │ │ │ │ └── pointBoundaryMesh.H │ │ │ ├── pointMesh.C │ │ │ ├── pointMesh.H │ │ │ ├── pointMeshMapper │ │ │ │ ├── MapPointField.H │ │ │ │ ├── pointBoundaryMeshMapper.H │ │ │ │ ├── pointMapper.C │ │ │ │ ├── pointMapper.H │ │ │ │ ├── pointMeshMapper.H │ │ │ │ ├── pointPatchMapper.C │ │ │ │ └── pointPatchMapper.H │ │ │ └── pointPatches │ │ │ │ ├── basic │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledPointPatch.C │ │ │ │ │ └── coupledPointPatch.H │ │ │ │ └── generic │ │ │ │ │ ├── genericPointPatch.C │ │ │ │ │ └── genericPointPatch.H │ │ │ │ ├── constraint │ │ │ │ ├── cyclic │ │ │ │ │ ├── cyclicPointPatch.C │ │ │ │ │ └── cyclicPointPatch.H │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipPointPatch.C │ │ │ │ │ └── cyclicSlipPointPatch.H │ │ │ │ ├── empty │ │ │ │ │ ├── emptyPointPatch.C │ │ │ │ │ └── emptyPointPatch.H │ │ │ │ ├── internal │ │ │ │ │ ├── internalPointPatch.C │ │ │ │ │ └── internalPointPatch.H │ │ │ │ ├── processor │ │ │ │ │ ├── processorPointPatch.C │ │ │ │ │ └── processorPointPatch.H │ │ │ │ ├── processorCyclic │ │ │ │ │ ├── processorCyclicPointPatch.C │ │ │ │ │ └── processorCyclicPointPatch.H │ │ │ │ ├── symmetry │ │ │ │ │ ├── symmetryPointPatch.C │ │ │ │ │ └── symmetryPointPatch.H │ │ │ │ ├── symmetryPlane │ │ │ │ │ ├── symmetryPlanePointPatch.C │ │ │ │ │ └── symmetryPlanePointPatch.H │ │ │ │ └── wedge │ │ │ │ │ ├── wedgePointPatch.C │ │ │ │ │ └── wedgePointPatch.H │ │ │ │ ├── derived │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledFacePointPatch.C │ │ │ │ │ └── coupledFacePointPatch.H │ │ │ │ └── wall │ │ │ │ │ ├── wallPointPatch.C │ │ │ │ │ └── wallPointPatch.H │ │ │ │ ├── facePointPatch │ │ │ │ ├── facePointPatch.C │ │ │ │ ├── facePointPatch.H │ │ │ │ └── facePointPatchNew.C │ │ │ │ └── pointPatch │ │ │ │ ├── pointPatch.C │ │ │ │ ├── pointPatch.H │ │ │ │ └── pointPatchList.H │ │ ├── polyMesh │ │ │ ├── globalMeshData │ │ │ │ ├── globalIndex.C │ │ │ │ ├── globalIndex.H │ │ │ │ ├── globalIndexI.H │ │ │ │ ├── globalIndexTemplates.C │ │ │ │ ├── globalMeshData.C │ │ │ │ ├── globalMeshData.H │ │ │ │ ├── globalMeshDataTemplates.C │ │ │ │ ├── globalPoints.C │ │ │ │ ├── globalPoints.H │ │ │ │ └── processorTopology.H │ │ │ ├── mapPolyMesh │ │ │ │ ├── cellMapper │ │ │ │ │ ├── cellMapper.C │ │ │ │ │ └── cellMapper.H │ │ │ │ ├── faceMapper │ │ │ │ │ ├── faceMapper.C │ │ │ │ │ └── faceMapper.H │ │ │ │ ├── mapAddedPolyMesh.C │ │ │ │ ├── mapAddedPolyMesh.H │ │ │ │ ├── mapDistribute │ │ │ │ │ ├── IOmapDistribute.C │ │ │ │ │ ├── IOmapDistribute.H │ │ │ │ │ ├── mapDistribute.C │ │ │ │ │ ├── mapDistribute.H │ │ │ │ │ ├── mapDistributeBase.C │ │ │ │ │ ├── mapDistributeBase.H │ │ │ │ │ ├── mapDistributeBaseTemplates.C │ │ │ │ │ ├── mapDistributeLagrangian.H │ │ │ │ │ ├── mapDistributePolyMesh.C │ │ │ │ │ ├── mapDistributePolyMesh.H │ │ │ │ │ └── mapDistributeTemplates.C │ │ │ │ ├── mapPatchChange │ │ │ │ │ └── mapPatchChange.H │ │ │ │ ├── mapPolyMesh.C │ │ │ │ ├── mapPolyMesh.H │ │ │ │ ├── mapSubsetMesh │ │ │ │ │ └── mapSubsetMesh.H │ │ │ │ ├── morphFieldMapper.H │ │ │ │ └── objectMap │ │ │ │ │ ├── objectMap.H │ │ │ │ │ └── objectMapI.H │ │ │ ├── polyBoundaryMesh │ │ │ │ ├── polyBoundaryMesh.C │ │ │ │ ├── polyBoundaryMesh.H │ │ │ │ ├── polyBoundaryMeshEntries.C │ │ │ │ ├── polyBoundaryMeshEntries.H │ │ │ │ └── polyBoundaryMeshTemplates.C │ │ │ ├── polyMesh.C │ │ │ ├── polyMesh.H │ │ │ ├── polyMeshCheck │ │ │ │ ├── polyMeshCheck.C │ │ │ │ ├── polyMeshTools.C │ │ │ │ └── polyMeshTools.H │ │ │ ├── polyMeshClear.C │ │ │ ├── polyMeshFromShapeMesh.C │ │ │ ├── polyMeshIO.C │ │ │ ├── polyMeshInitMesh.C │ │ │ ├── polyMeshTetDecomposition │ │ │ │ ├── polyMeshTetDecomposition.C │ │ │ │ ├── polyMeshTetDecomposition.H │ │ │ │ ├── tetIndices.C │ │ │ │ ├── tetIndices.H │ │ │ │ └── tetIndicesI.H │ │ │ ├── polyMeshUpdate.C │ │ │ ├── polyPatches │ │ │ │ ├── basic │ │ │ │ │ ├── coupled │ │ │ │ │ │ ├── coupledPolyPatch.C │ │ │ │ │ │ └── coupledPolyPatch.H │ │ │ │ │ └── generic │ │ │ │ │ │ ├── genericPolyPatch.C │ │ │ │ │ │ └── genericPolyPatch.H │ │ │ │ ├── constraint │ │ │ │ │ ├── cyclic │ │ │ │ │ │ ├── cyclicPolyPatch.C │ │ │ │ │ │ ├── cyclicPolyPatch.H │ │ │ │ │ │ ├── cyclicTransform.C │ │ │ │ │ │ └── cyclicTransform.H │ │ │ │ │ ├── cyclicSlip │ │ │ │ │ │ ├── cyclicSlipPolyPatch.C │ │ │ │ │ │ └── cyclicSlipPolyPatch.H │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── emptyPolyPatch.C │ │ │ │ │ │ └── emptyPolyPatch.H │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── internalPolyPatch.C │ │ │ │ │ │ └── internalPolyPatch.H │ │ │ │ │ ├── processor │ │ │ │ │ │ ├── processorPolyPatch.C │ │ │ │ │ │ └── processorPolyPatch.H │ │ │ │ │ ├── processorCyclic │ │ │ │ │ │ ├── processorCyclicPolyPatch.C │ │ │ │ │ │ └── processorCyclicPolyPatch.H │ │ │ │ │ ├── symmetry │ │ │ │ │ │ ├── symmetryPolyPatch.C │ │ │ │ │ │ └── symmetryPolyPatch.H │ │ │ │ │ ├── symmetryPlane │ │ │ │ │ │ ├── symmetryPlanePolyPatch.C │ │ │ │ │ │ └── symmetryPlanePolyPatch.H │ │ │ │ │ └── wedge │ │ │ │ │ │ ├── wedgePolyPatch.C │ │ │ │ │ │ └── wedgePolyPatch.H │ │ │ │ ├── derived │ │ │ │ │ └── wall │ │ │ │ │ │ ├── wallPolyPatch.C │ │ │ │ │ │ └── wallPolyPatch.H │ │ │ │ └── polyPatch │ │ │ │ │ ├── polyPatch.C │ │ │ │ │ ├── polyPatch.H │ │ │ │ │ ├── polyPatchList.H │ │ │ │ │ └── polyPatchNew.C │ │ │ ├── syncTools │ │ │ │ ├── dummyTransform.H │ │ │ │ ├── syncTools.C │ │ │ │ ├── syncTools.H │ │ │ │ └── syncToolsTemplates.C │ │ │ └── zones │ │ │ │ ├── MeshZones │ │ │ │ ├── MeshZones.C │ │ │ │ ├── MeshZones.H │ │ │ │ ├── meshCellZones.H │ │ │ │ ├── meshCellZonesFwd.H │ │ │ │ ├── meshFaceZones.H │ │ │ │ ├── meshFaceZonesFwd.H │ │ │ │ ├── meshPointZones.H │ │ │ │ └── meshPointZonesFwd.H │ │ │ │ ├── cellZone │ │ │ │ ├── cellZone.C │ │ │ │ ├── cellZone.H │ │ │ │ ├── cellZoneNew.C │ │ │ │ └── indirectCellList.H │ │ │ │ ├── faceZone │ │ │ │ ├── faceZone.C │ │ │ │ ├── faceZone.H │ │ │ │ ├── faceZoneNew.C │ │ │ │ ├── indirectFaceList.H │ │ │ │ └── primitiveFaceZone.H │ │ │ │ ├── pointZone │ │ │ │ ├── indirectPointList.H │ │ │ │ ├── pointZone.C │ │ │ │ ├── pointZone.H │ │ │ │ └── pointZoneNew.C │ │ │ │ └── zone │ │ │ │ ├── zone.C │ │ │ │ └── zone.H │ │ ├── preservePatchTypes │ │ │ ├── preservePatchTypes.C │ │ │ └── preservePatchTypes.H │ │ ├── primitiveMesh │ │ │ ├── PatchTools │ │ │ │ ├── PatchTools.C │ │ │ │ ├── PatchTools.H │ │ │ │ ├── PatchToolsCheck.C │ │ │ │ ├── PatchToolsEdgeOwner.C │ │ │ │ ├── PatchToolsGatherAndMerge.C │ │ │ │ ├── PatchToolsMatch.C │ │ │ │ ├── PatchToolsNormals.C │ │ │ │ ├── PatchToolsSearch.C │ │ │ │ ├── PatchToolsSortEdges.C │ │ │ │ └── PatchToolsSortPoints.C │ │ │ ├── PrimitivePatch │ │ │ │ ├── PrimitivePatch.C │ │ │ │ ├── PrimitivePatch.H │ │ │ │ ├── PrimitivePatchAddressing.C │ │ │ │ ├── PrimitivePatchBdryPoints.C │ │ │ │ ├── PrimitivePatchCheck.C │ │ │ │ ├── PrimitivePatchClear.C │ │ │ │ ├── PrimitivePatchEdgeLoops.C │ │ │ │ ├── PrimitivePatchLocalPointOrder.C │ │ │ │ ├── PrimitivePatchMeshData.C │ │ │ │ ├── PrimitivePatchMeshEdges.C │ │ │ │ ├── PrimitivePatchName.C │ │ │ │ ├── PrimitivePatchPointAddressing.C │ │ │ │ └── PrimitivePatchProjectPoints.C │ │ │ ├── primitiveMesh.C │ │ │ ├── primitiveMesh.H │ │ │ ├── primitiveMeshCalcCellShapes.C │ │ │ ├── primitiveMeshCellCells.C │ │ │ ├── primitiveMeshCellCentresAndVols.C │ │ │ ├── primitiveMeshCellEdges.C │ │ │ ├── primitiveMeshCellPoints.C │ │ │ ├── primitiveMeshCells.C │ │ │ ├── primitiveMeshCheck │ │ │ │ ├── primitiveMeshCheck.C │ │ │ │ ├── primitiveMeshCheckEdgeLength.C │ │ │ │ ├── primitiveMeshCheckPointNearness.C │ │ │ │ ├── primitiveMeshTools.C │ │ │ │ └── primitiveMeshTools.H │ │ │ ├── primitiveMeshClear.C │ │ │ ├── primitiveMeshEdgeCells.C │ │ │ ├── primitiveMeshEdgeFaces.C │ │ │ ├── primitiveMeshEdges.C │ │ │ ├── primitiveMeshFaceCentresAndAreas.C │ │ │ ├── primitiveMeshFindCell.C │ │ │ ├── primitiveMeshI.H │ │ │ ├── primitiveMeshPointCells.C │ │ │ ├── primitiveMeshPointFaces.C │ │ │ ├── primitiveMeshPointPoints.C │ │ │ └── primitivePatch │ │ │ │ ├── indirectPrimitivePatch.H │ │ │ │ ├── patchZones.C │ │ │ │ ├── patchZones.H │ │ │ │ ├── primitiveFacePatch.H │ │ │ │ ├── primitivePatch.H │ │ │ │ ├── uindirectPrimitivePatch.H │ │ │ │ ├── walkPatch.C │ │ │ │ └── walkPatch.H │ │ ├── primitiveShapes │ │ │ ├── cut │ │ │ │ ├── cut.H │ │ │ │ ├── cutI.H │ │ │ │ └── cutTemplates.C │ │ │ ├── line │ │ │ │ ├── line.C │ │ │ │ ├── line.H │ │ │ │ ├── lineI.H │ │ │ │ ├── linePoint2DRef.H │ │ │ │ └── linePointRef.H │ │ │ ├── objectHit │ │ │ │ ├── PointHit.H │ │ │ │ ├── PointIndexHit.H │ │ │ │ ├── objectHit.H │ │ │ │ ├── point2DHit.H │ │ │ │ ├── pointHit.H │ │ │ │ ├── pointHitSort.H │ │ │ │ ├── pointIndexHit.H │ │ │ │ ├── pointIndexHitIOList.C │ │ │ │ ├── pointIndexHitIOList.H │ │ │ │ ├── pointIndexHitList.C │ │ │ │ └── pointIndexHitList.H │ │ │ ├── plane │ │ │ │ ├── plane.C │ │ │ │ └── plane.H │ │ │ ├── point │ │ │ │ ├── point.H │ │ │ │ ├── pointField.H │ │ │ │ ├── pointFieldFwd.H │ │ │ │ └── pointIOField.H │ │ │ ├── point2D │ │ │ │ ├── point2D.H │ │ │ │ ├── point2DField.H │ │ │ │ └── point2DFieldFwd.H │ │ │ ├── pyramid │ │ │ │ ├── pyramid.H │ │ │ │ └── pyramidI.H │ │ │ ├── tetrahedron │ │ │ │ ├── tetPointRef.H │ │ │ │ ├── tetrahedron.C │ │ │ │ ├── tetrahedron.H │ │ │ │ └── tetrahedronI.H │ │ │ └── triangle │ │ │ │ ├── intersection.C │ │ │ │ ├── intersection.H │ │ │ │ ├── triPointRef.H │ │ │ │ ├── triangle.H │ │ │ │ └── triangleI.H │ │ └── treeBoundBox │ │ │ ├── treeBoundBox.C │ │ │ ├── treeBoundBox.H │ │ │ ├── treeBoundBoxI.H │ │ │ ├── treeBoundBoxList.H │ │ │ └── treeBoundBoxTemplates.C │ └── primitives │ │ ├── Barycentric │ │ ├── Barycentric.H │ │ ├── BarycentricI.H │ │ ├── BarycentricTensor.H │ │ ├── BarycentricTensorI.H │ │ ├── barycentric │ │ │ ├── barycentric.C │ │ │ └── barycentric.H │ │ └── barycentricTensor │ │ │ └── barycentricTensor.H │ │ ├── Barycentric2D │ │ ├── Barycentric2D.H │ │ ├── Barycentric2DI.H │ │ ├── BarycentricTensor2D.H │ │ ├── BarycentricTensor2DI.H │ │ ├── barycentric2D │ │ │ ├── barycentric2D.C │ │ │ └── barycentric2D.H │ │ └── barycentricTensor2D │ │ │ └── barycentricTensor2D.H │ │ ├── DiagTensor │ │ ├── DiagTensor.H │ │ ├── DiagTensorI.H │ │ └── diagTensor │ │ │ ├── diagTensor.C │ │ │ └── diagTensor.H │ │ ├── MatrixSpace │ │ ├── MatrixSpace.H │ │ └── MatrixSpaceI.H │ │ ├── Pair │ │ ├── Pair.H │ │ └── labelPair.H │ │ ├── Random │ │ ├── Random.C │ │ ├── Random.H │ │ └── RandomI.H │ │ ├── RowVector │ │ ├── RowVector.H │ │ └── RowVectorI.H │ │ ├── Scalar │ │ ├── Scalar.C │ │ ├── Scalar.H │ │ ├── doubleFloat.H │ │ ├── doubleScalar │ │ │ ├── doubleScalar.C │ │ │ └── doubleScalar.H │ │ ├── floatScalar │ │ │ ├── floatScalar.C │ │ │ └── floatScalar.H │ │ ├── lists │ │ │ ├── scalarIOList.C │ │ │ ├── scalarIOList.H │ │ │ ├── scalarList.C │ │ │ ├── scalarList.H │ │ │ ├── scalarListIOList.C │ │ │ └── scalarListIOList.H │ │ ├── longDoubleScalar │ │ │ ├── longDoubleScalar.C │ │ │ └── longDoubleScalar.H │ │ └── scalar │ │ │ ├── incGamma.C │ │ │ ├── invIncGamma.C │ │ │ ├── scalar.C │ │ │ └── scalar.H │ │ ├── SphericalTensor │ │ ├── Identity.H │ │ ├── SphericalTensor.H │ │ ├── SphericalTensorI.H │ │ ├── labelSphericalTensor │ │ │ ├── labelSphericalTensor.C │ │ │ └── labelSphericalTensor.H │ │ └── sphericalTensor │ │ │ ├── sphericalTensor.C │ │ │ └── sphericalTensor.H │ │ ├── SphericalTensor2D │ │ ├── SphericalTensor2D.H │ │ ├── SphericalTensor2DI.H │ │ └── sphericalTensor2D │ │ │ ├── sphericalTensor2D.C │ │ │ └── sphericalTensor2D.H │ │ ├── Swap │ │ └── Swap.H │ │ ├── SymmTensor │ │ ├── SymmTensor.H │ │ ├── SymmTensorI.H │ │ ├── labelSymmTensor │ │ │ ├── labelSymmTensor.C │ │ │ └── labelSymmTensor.H │ │ └── symmTensor │ │ │ ├── symmTensor.C │ │ │ └── symmTensor.H │ │ ├── SymmTensor2D │ │ ├── SymmTensor2D.H │ │ ├── SymmTensor2DI.H │ │ └── symmTensor2D │ │ │ ├── symmTensor2D.C │ │ │ └── symmTensor2D.H │ │ ├── Tensor │ │ ├── Tensor.H │ │ ├── TensorI.H │ │ ├── floatTensor │ │ │ ├── floatTensor.C │ │ │ └── floatTensor.H │ │ ├── labelTensor │ │ │ ├── labelTensor.C │ │ │ └── labelTensor.H │ │ ├── lists │ │ │ ├── sphericalTensorList.C │ │ │ ├── sphericalTensorList.H │ │ │ ├── symmTensorList.C │ │ │ ├── symmTensorList.H │ │ │ ├── tensorList.C │ │ │ └── tensorList.H │ │ └── tensor │ │ │ ├── tensor.C │ │ │ └── tensor.H │ │ ├── Tensor2D │ │ ├── Tensor2D.H │ │ ├── Tensor2DI.H │ │ └── tensor2D │ │ │ ├── tensor2D.C │ │ │ └── tensor2D.H │ │ ├── Tuple2 │ │ └── Tuple2.H │ │ ├── Vector │ │ ├── Vector.H │ │ ├── VectorI.H │ │ ├── complexVector │ │ │ ├── complexVector.C │ │ │ ├── complexVector.H │ │ │ └── complexVectorI.H │ │ ├── floatVector │ │ │ ├── floatVector.C │ │ │ └── floatVector.H │ │ ├── labelVector │ │ │ ├── labelVector.C │ │ │ └── labelVector.H │ │ ├── lists │ │ │ ├── vectorIOList.C │ │ │ ├── vectorIOList.H │ │ │ ├── vectorList.C │ │ │ ├── vectorList.H │ │ │ ├── vectorListIOList.C │ │ │ └── vectorListIOList.H │ │ └── vector │ │ │ ├── vector.C │ │ │ └── vector.H │ │ ├── Vector2D │ │ ├── Vector2D.H │ │ ├── Vector2DI.H │ │ └── vector2D │ │ │ ├── vector2D.C │ │ │ └── vector2D.H │ │ ├── VectorSpace │ │ ├── VectorSpace.C │ │ ├── VectorSpace.H │ │ ├── VectorSpaceI.H │ │ ├── VectorSpaceOps.H │ │ └── products.H │ │ ├── bools │ │ ├── Switch │ │ │ ├── Switch.C │ │ │ ├── Switch.H │ │ │ └── SwitchIO.C │ │ ├── bool │ │ │ ├── bool.C │ │ │ ├── bool.H │ │ │ └── boolIO.C │ │ └── lists │ │ │ ├── boolList.C │ │ │ └── boolList.H │ │ ├── chars │ │ ├── char │ │ │ ├── char.H │ │ │ └── charIO.C │ │ └── wchar │ │ │ ├── wchar.H │ │ │ └── wcharIO.C │ │ ├── complex │ │ ├── complex.C │ │ ├── complex.H │ │ └── complexI.H │ │ ├── contiguous │ │ └── contiguous.H │ │ ├── direction │ │ ├── direction.H │ │ └── directionIO.C │ │ ├── functions │ │ ├── Function1 │ │ │ ├── Coded │ │ │ │ ├── CodedFunction1.C │ │ │ │ ├── CodedFunction1.H │ │ │ │ └── CodedFunction1I.H │ │ │ ├── Constant │ │ │ │ ├── Constant.C │ │ │ │ ├── Constant.H │ │ │ │ └── ConstantI.H │ │ │ ├── Function1 │ │ │ │ ├── Function1.C │ │ │ │ ├── Function1.H │ │ │ │ ├── Function1Fwd.H │ │ │ │ └── Function1New.C │ │ │ ├── NonUniformTable1 │ │ │ │ ├── NonUniformTable1.C │ │ │ │ ├── NonUniformTable1.H │ │ │ │ └── NonUniformTable1I.H │ │ │ ├── None │ │ │ │ ├── None.C │ │ │ │ └── None.H │ │ │ ├── One │ │ │ │ ├── OneConstant.C │ │ │ │ ├── OneConstant.H │ │ │ │ └── OneConstantI.H │ │ │ ├── Polynomial1 │ │ │ │ ├── Polynomial1.C │ │ │ │ └── Polynomial1.H │ │ │ ├── Ramp │ │ │ │ ├── Ramp.C │ │ │ │ └── Ramp.H │ │ │ ├── Scale │ │ │ │ ├── Scale.C │ │ │ │ ├── Scale.H │ │ │ │ └── ScaleI.H │ │ │ ├── Sine │ │ │ │ ├── Sine.C │ │ │ │ ├── Sine.H │ │ │ │ └── SineI.H │ │ │ ├── Square │ │ │ │ ├── Square.C │ │ │ │ ├── Square.H │ │ │ │ └── SquareI.H │ │ │ ├── Table │ │ │ │ ├── Table.C │ │ │ │ ├── Table.H │ │ │ │ ├── TableReader │ │ │ │ │ ├── Csv │ │ │ │ │ │ ├── CsvTableReader.C │ │ │ │ │ │ └── CsvTableReader.H │ │ │ │ │ ├── Embedded │ │ │ │ │ │ ├── EmbeddedTableReader.C │ │ │ │ │ │ └── EmbeddedTableReader.H │ │ │ │ │ ├── Foam │ │ │ │ │ │ ├── FoamTableReader.C │ │ │ │ │ │ └── FoamTableReader.H │ │ │ │ │ ├── TableFileReader │ │ │ │ │ │ ├── TableFileReader.C │ │ │ │ │ │ └── TableFileReader.H │ │ │ │ │ ├── TableReader │ │ │ │ │ │ ├── TableReader.C │ │ │ │ │ │ ├── TableReader.H │ │ │ │ │ │ └── TableReaderNew.C │ │ │ │ │ └── makeTableReaders.C │ │ │ │ ├── tableBase.C │ │ │ │ └── tableBase.H │ │ │ ├── Uniform │ │ │ │ ├── Uniform.C │ │ │ │ └── Uniform.H │ │ │ ├── UniformTable1 │ │ │ │ ├── UniformTable1.C │ │ │ │ └── UniformTable1.H │ │ │ ├── Zero │ │ │ │ ├── ZeroConstant.C │ │ │ │ ├── ZeroConstant.H │ │ │ │ └── ZeroConstantI.H │ │ │ ├── evaluate │ │ │ │ ├── Function1Evaluate.C │ │ │ │ └── Function1Evaluate.H │ │ │ ├── halfCosineRamp │ │ │ │ ├── halfCosineRamp.C │ │ │ │ ├── halfCosineRamp.H │ │ │ │ └── halfCosineRampI.H │ │ │ ├── linearRamp │ │ │ │ ├── linearRamp.C │ │ │ │ ├── linearRamp.H │ │ │ │ └── linearRampI.H │ │ │ ├── makeFunction1s.C │ │ │ ├── quadraticRamp │ │ │ │ ├── quadraticRamp.C │ │ │ │ ├── quadraticRamp.H │ │ │ │ └── quadraticRampI.H │ │ │ ├── quarterCosineRamp │ │ │ │ ├── quarterCosineRamp.C │ │ │ │ ├── quarterCosineRamp.H │ │ │ │ └── quarterCosineRampI.H │ │ │ ├── quarterSineRamp │ │ │ │ ├── quarterSineRamp.C │ │ │ │ ├── quarterSineRamp.H │ │ │ │ └── quarterSineRampI.H │ │ │ ├── reverseRamp │ │ │ │ ├── reverseRamp.C │ │ │ │ ├── reverseRamp.H │ │ │ │ └── reverseRampI.H │ │ │ ├── squarePulse │ │ │ │ ├── squarePulse.C │ │ │ │ ├── squarePulse.H │ │ │ │ └── squarePulseI.H │ │ │ └── unknownTypeFunction1 │ │ │ │ ├── unknownTypeFunction1.C │ │ │ │ ├── unknownTypeFunction1.H │ │ │ │ └── unknownTypeFunction1Templates.C │ │ ├── Function2 │ │ │ ├── Coded │ │ │ │ ├── CodedFunction2.C │ │ │ │ ├── CodedFunction2.H │ │ │ │ └── CodedFunction2I.H │ │ │ ├── Constant │ │ │ │ ├── Constant2.C │ │ │ │ ├── Constant2.H │ │ │ │ └── Constant2I.H │ │ │ ├── Function2 │ │ │ │ ├── Function2.C │ │ │ │ ├── Function2.H │ │ │ │ ├── Function2Fwd.H │ │ │ │ └── Function2New.C │ │ │ ├── None │ │ │ │ ├── None2.C │ │ │ │ └── None2.H │ │ │ ├── One │ │ │ │ ├── OneConstant2.C │ │ │ │ ├── OneConstant2.H │ │ │ │ └── OneConstant2I.H │ │ │ ├── Scale │ │ │ │ ├── Scale2.C │ │ │ │ ├── Scale2.H │ │ │ │ └── Scale2I.H │ │ │ ├── UniformTable2 │ │ │ │ ├── UniformTable2.C │ │ │ │ └── UniformTable2.H │ │ │ ├── Zero │ │ │ │ ├── ZeroConstant2.C │ │ │ │ ├── ZeroConstant2.H │ │ │ │ └── ZeroConstant2I.H │ │ │ ├── evaluate │ │ │ │ ├── Function2Evaluate.C │ │ │ │ └── Function2Evaluate.H │ │ │ └── makeFunction2s.C │ │ ├── Polynomial │ │ │ ├── Polynomial.C │ │ │ ├── Polynomial.H │ │ │ └── PolynomialIO.C │ │ └── TimeFunction1 │ │ │ ├── TimeFunction1.C │ │ │ └── TimeFunction1.H │ │ ├── globalIndexAndTransform │ │ ├── globalIndexAndTransform.C │ │ ├── globalIndexAndTransform.H │ │ └── globalIndexAndTransformI.H │ │ ├── hashes │ │ ├── Hash │ │ │ └── Hash.H │ │ ├── Hasher │ │ │ ├── Hasher.C │ │ │ ├── Hasher.H │ │ │ └── HasherInt.H │ │ └── SHA1 │ │ │ ├── SHA1.C │ │ │ ├── SHA1.H │ │ │ ├── SHA1Digest.C │ │ │ ├── SHA1Digest.H │ │ │ └── SHA1I.H │ │ ├── ints │ │ ├── int │ │ │ ├── int.H │ │ │ └── intIO.C │ │ ├── int32 │ │ │ ├── int32.C │ │ │ ├── int32.H │ │ │ └── int32IO.C │ │ ├── int64 │ │ │ ├── int64.C │ │ │ ├── int64.H │ │ │ └── int64IO.C │ │ ├── label │ │ │ ├── label.C │ │ │ ├── label.H │ │ │ └── labelSpecific.H │ │ ├── lists │ │ │ ├── labelIOList.C │ │ │ ├── labelIOList.H │ │ │ ├── labelList.H │ │ │ ├── labelListIOList.C │ │ │ └── labelListIOList.H │ │ ├── uLabel │ │ │ ├── uLabel.C │ │ │ └── uLabel.H │ │ ├── uint │ │ │ ├── uint.H │ │ │ └── uintIO.C │ │ ├── uint32 │ │ │ ├── uint32.C │ │ │ ├── uint32.H │ │ │ └── uint32IO.C │ │ └── uint64 │ │ │ ├── uint64.C │ │ │ ├── uint64.H │ │ │ └── uint64IO.C │ │ ├── nil │ │ └── nil.H │ │ ├── nullObject │ │ ├── nullObject.C │ │ ├── nullObject.H │ │ └── nullObjectI.H │ │ ├── one │ │ ├── one.H │ │ └── oneI.H │ │ ├── ops │ │ ├── flipOp.C │ │ ├── flipOp.H │ │ └── ops.H │ │ ├── pTraits │ │ └── pTraits.H │ │ ├── polynomialEqns │ │ ├── Roots.H │ │ ├── RootsI.H │ │ ├── cubicEqn │ │ │ ├── cubicEqn.C │ │ │ ├── cubicEqn.H │ │ │ └── cubicEqnI.H │ │ ├── linearEqn │ │ │ ├── linearEqn.H │ │ │ └── linearEqnI.H │ │ └── quadraticEqn │ │ │ ├── quadraticEqn.C │ │ │ ├── quadraticEqn.H │ │ │ └── quadraticEqnI.H │ │ ├── quaternion │ │ ├── quaternion.C │ │ ├── quaternion.H │ │ └── quaternionI.H │ │ ├── ranges │ │ ├── labelRange │ │ │ ├── labelRange.C │ │ │ ├── labelRange.H │ │ │ ├── labelRangeI.H │ │ │ ├── labelRanges.C │ │ │ ├── labelRanges.H │ │ │ └── labelRangesI.H │ │ └── scalarRange │ │ │ ├── scalarRange.C │ │ │ ├── scalarRange.H │ │ │ ├── scalarRanges.C │ │ │ └── scalarRanges.H │ │ ├── septernion │ │ ├── septernion.C │ │ ├── septernion.H │ │ └── septernionI.H │ │ ├── spatialVectorAlgebra │ │ ├── CompactSpatialTensor │ │ │ ├── CompactSpatialTensor.H │ │ │ ├── CompactSpatialTensorI.H │ │ │ └── compactSpatialTensor │ │ │ │ ├── compactSpatialTensor.C │ │ │ │ └── compactSpatialTensor.H │ │ ├── CompactSpatialTensorT │ │ │ ├── CompactSpatialTensorT.H │ │ │ └── CompactSpatialTensorTI.H │ │ ├── SpatialTensor │ │ │ ├── SpatialTensor.H │ │ │ ├── SpatialTensorI.H │ │ │ └── spatialTensor │ │ │ │ ├── spatialTensor.C │ │ │ │ └── spatialTensor.H │ │ ├── SpatialVector │ │ │ ├── SpatialVector.H │ │ │ ├── SpatialVectorI.H │ │ │ └── spatialVector │ │ │ │ ├── spatialVector.C │ │ │ │ └── spatialVector.H │ │ └── spatialTransform │ │ │ ├── spatialTransform.H │ │ │ └── spatialTransformI.H │ │ ├── strings │ │ ├── fileName │ │ │ ├── fileName.C │ │ │ ├── fileName.H │ │ │ ├── fileNameI.H │ │ │ └── fileNameIO.C │ │ ├── functionName │ │ │ ├── functionName.C │ │ │ ├── functionName.H │ │ │ ├── functionNameI.H │ │ │ └── functionNameIO.C │ │ ├── lists │ │ │ ├── fileNameList.H │ │ │ ├── hashedWordList.C │ │ │ ├── hashedWordList.H │ │ │ ├── hashedWordListI.H │ │ │ ├── stringList.H │ │ │ ├── stringListOps.H │ │ │ ├── stringListOpsTemplates.C │ │ │ ├── wordList.H │ │ │ ├── wordReList.H │ │ │ ├── wordReListMatcher.H │ │ │ └── wordReListMatcherI.H │ │ ├── string │ │ │ ├── string.C │ │ │ ├── string.H │ │ │ ├── stringI.H │ │ │ ├── stringIO.C │ │ │ ├── stringIOList.C │ │ │ └── stringIOList.H │ │ ├── stringOps │ │ │ ├── stringOps.C │ │ │ └── stringOps.H │ │ ├── variable │ │ │ ├── variable.C │ │ │ ├── variable.H │ │ │ ├── variableI.H │ │ │ └── variableIO.C │ │ ├── verbatimString │ │ │ ├── verbatimString.C │ │ │ ├── verbatimString.H │ │ │ ├── verbatimStringI.H │ │ │ └── verbatimStringIO.C │ │ ├── word │ │ │ ├── word.C │ │ │ ├── word.H │ │ │ ├── wordI.H │ │ │ ├── wordIO.C │ │ │ ├── wordIOList.C │ │ │ └── wordIOList.H │ │ └── wordRe │ │ │ ├── wordRe.C │ │ │ ├── wordRe.H │ │ │ └── wordReI.H │ │ ├── subModelBase │ │ ├── subModelBase.C │ │ ├── subModelBase.H │ │ └── subModelBaseTemplates.C │ │ ├── transform │ │ ├── symmTransform.H │ │ ├── transform.H │ │ └── transformer │ │ │ ├── transformer.C │ │ │ ├── transformer.H │ │ │ ├── transformerI.H │ │ │ └── transformerTemplates.C │ │ ├── triad │ │ ├── triad.C │ │ ├── triad.H │ │ └── triadI.H │ │ └── zero │ │ ├── zero.H │ │ └── zeroI.H ├── Pstream │ ├── Allwclean │ ├── Allwmake │ ├── dummy │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ └── UPstream.C │ └── mpi │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── PstreamGlobals.C │ │ ├── PstreamGlobals.H │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ ├── UPstream.C │ │ ├── allReduce.H │ │ └── allReduceTemplates.C ├── ThermophysicalTransportModels │ ├── Allwmake │ ├── Make │ │ ├── files │ │ └── options │ ├── PhaseThermophysicalTransportModel │ │ ├── PhaseThermophysicalTransportModel.C │ │ └── PhaseThermophysicalTransportModel.H │ ├── ThermophysicalTransportModel │ │ ├── ThermophysicalTransportModel.C │ │ └── ThermophysicalTransportModel.H │ ├── derivedFvPatchFields │ │ ├── alphatWallFunctions │ │ │ ├── alphatJayatillekeWallFunction │ │ │ │ ├── alphatJayatillekeWallFunctionFvPatchScalarField.C │ │ │ │ └── alphatJayatillekeWallFunctionFvPatchScalarField.H │ │ │ └── alphatWallFunction │ │ │ │ ├── alphatWallFunctionFvPatchScalarField.C │ │ │ │ └── alphatWallFunctionFvPatchScalarField.H │ │ ├── convectiveHeatTransfer │ │ │ ├── convectiveHeatTransferFvPatchScalarField.C │ │ │ └── convectiveHeatTransferFvPatchScalarField.H │ │ ├── externalCoupledTemperatureMixed │ │ │ ├── externalCoupledTemperatureMixedFvPatchScalarField.C │ │ │ └── externalCoupledTemperatureMixedFvPatchScalarField.H │ │ ├── externalWallHeatFluxTemperature │ │ │ ├── externalWallHeatFluxTemperatureFvPatchScalarField.C │ │ │ └── externalWallHeatFluxTemperatureFvPatchScalarField.H │ │ ├── temperatureCoupledBase │ │ │ ├── temperatureCoupledBase.C │ │ │ └── temperatureCoupledBase.H │ │ ├── thermalBaffle1D │ │ │ ├── thermalBaffle1DFvPatchScalarField.C │ │ │ ├── thermalBaffle1DFvPatchScalarField.H │ │ │ └── thermalBaffle1DFvPatchScalarFields.C │ │ ├── totalFlowRateAdvectiveDiffusive │ │ │ ├── totalFlowRateAdvectiveDiffusiveFvPatchScalarField.C │ │ │ └── totalFlowRateAdvectiveDiffusiveFvPatchScalarField.H │ │ ├── turbulentTemperatureCoupledBaffleMixed │ │ │ ├── turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C │ │ │ └── turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H │ │ └── turbulentTemperatureRadCoupledMixed │ │ │ ├── turbulentTemperatureRadCoupledMixedFvPatchScalarField.C │ │ │ └── turbulentTemperatureRadCoupledMixedFvPatchScalarField.H │ ├── fluidReactionThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── fluidReactionThermophysicalTransportModel.H │ │ ├── fluidReactionThermophysicalTransportModels.C │ │ └── fluidReactionThermophysicalTransportModels.H │ ├── fluidThermo │ │ ├── fluidThermophysicalTransportModel.H │ │ ├── fluidThermophysicalTransportModels.C │ │ └── fluidThermophysicalTransportModels.H │ ├── laminar │ │ ├── Fickian │ │ │ ├── Fickian.C │ │ │ └── Fickian.H │ │ ├── FickianFourier │ │ │ ├── FickianFourier.C │ │ │ └── FickianFourier.H │ │ ├── Fourier │ │ │ ├── Fourier.C │ │ │ └── Fourier.H │ │ ├── MaxwellStefan │ │ │ ├── MaxwellStefan.C │ │ │ └── MaxwellStefan.H │ │ ├── MaxwellStefanFourier │ │ │ ├── MaxwellStefanFourier.C │ │ │ └── MaxwellStefanFourier.H │ │ ├── laminarThermophysicalTransportModel │ │ │ ├── laminarThermophysicalTransportModel.C │ │ │ └── laminarThermophysicalTransportModel.H │ │ └── unityLewisFourier │ │ │ ├── unityLewisFourier.C │ │ │ └── unityLewisFourier.H │ ├── phaseFluidReactionThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── phaseFluidReactionThermophysicalTransportModel.H │ │ ├── phaseFluidReactionThermophysicalTransportModels.C │ │ └── phaseFluidReactionThermophysicalTransportModels.H │ ├── phaseFluidThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── phaseFluidThermophysicalTransportModel.H │ │ ├── phaseFluidThermophysicalTransportModels.C │ │ └── phaseFluidThermophysicalTransportModels.H │ ├── thermophysicalTransportModel │ │ ├── makeThermophysicalTransportModel.H │ │ ├── thermophysicalTransportModel.C │ │ └── thermophysicalTransportModel.H │ └── turbulence │ │ ├── FickianEddyDiffusivity │ │ ├── FickianEddyDiffusivity.C │ │ └── FickianEddyDiffusivity.H │ │ ├── LES │ │ └── LESThermophysicalTransportModel │ │ │ ├── LESThermophysicalTransportModel.C │ │ │ └── LESThermophysicalTransportModel.H │ │ ├── RAS │ │ └── RASThermophysicalTransportModel │ │ │ ├── RASThermophysicalTransportModel.C │ │ │ └── RASThermophysicalTransportModel.H │ │ ├── eddyDiffusivity │ │ ├── eddyDiffusivity.C │ │ └── eddyDiffusivity.H │ │ ├── nonUnityLewisEddyDiffusivity │ │ ├── nonUnityLewisEddyDiffusivity.C │ │ └── nonUnityLewisEddyDiffusivity.H │ │ └── unityLewisEddyDiffusivity │ │ ├── unityLewisEddyDiffusivity.C │ │ └── unityLewisEddyDiffusivity.H ├── atmosphericModels │ ├── Make │ │ ├── files │ │ └── options │ ├── atmosphericTurbulentTransportModels.C │ ├── derivedFvPatchFields │ │ ├── atmBoundaryLayer │ │ │ ├── atmBoundaryLayer.C │ │ │ └── atmBoundaryLayer.H │ │ ├── atmBoundaryLayerInletEpsilon │ │ │ ├── atmBoundaryLayerInletEpsilonFvPatchScalarField.C │ │ │ └── atmBoundaryLayerInletEpsilonFvPatchScalarField.H │ │ ├── atmBoundaryLayerInletK │ │ │ ├── atmBoundaryLayerInletKFvPatchScalarField.C │ │ │ └── atmBoundaryLayerInletKFvPatchScalarField.H │ │ ├── atmBoundaryLayerInletVelocity │ │ │ ├── atmBoundaryLayerInletVelocityFvPatchVectorField.C │ │ │ └── atmBoundaryLayerInletVelocityFvPatchVectorField.H │ │ └── nutkAtmRoughWallFunction │ │ │ ├── nutkAtmRoughWallFunctionFvPatchScalarField.C │ │ │ └── nutkAtmRoughWallFunctionFvPatchScalarField.H │ ├── kEpsilonLopesdaCosta │ │ ├── kEpsilonLopesdaCosta.C │ │ └── kEpsilonLopesdaCosta.H │ └── porosityModels │ │ └── powerLawLopesdaCosta │ │ ├── powerLawLopesdaCosta.C │ │ ├── powerLawLopesdaCosta.H │ │ └── powerLawLopesdaCostaTemplates.C ├── combustionModels │ ├── EDC │ │ ├── EDC.C │ │ └── EDC.H │ ├── FSD │ │ ├── FSD.C │ │ ├── FSD.H │ │ └── reactionRateFlameAreaModels │ │ │ ├── consumptionSpeed │ │ │ ├── consumptionSpeed.C │ │ │ └── consumptionSpeed.H │ │ │ ├── reactionRateFlameArea │ │ │ ├── reactionRateFlameArea.C │ │ │ ├── reactionRateFlameArea.H │ │ │ └── reactionRateFlameAreaNew.C │ │ │ └── relaxation │ │ │ ├── relaxation.C │ │ │ └── relaxation.H │ ├── Make │ │ ├── files │ │ └── options │ ├── PaSR │ │ ├── PaSR.C │ │ └── PaSR.H │ ├── combustionModel │ │ ├── combustionModel.C │ │ ├── combustionModel.H │ │ ├── combustionModelI.H │ │ ├── combustionModelNew.C │ │ └── makeThermoCombustionModel.H │ ├── diffusion │ │ ├── diffusion.C │ │ └── diffusion.H │ ├── functionObjects │ │ └── Qdot │ │ │ ├── Qdot.C │ │ │ └── Qdot.H │ ├── infinitelyFastChemistry │ │ ├── infinitelyFastChemistry.C │ │ └── infinitelyFastChemistry.H │ ├── laminar │ │ ├── laminar.C │ │ └── laminar.H │ ├── noCombustion │ │ ├── noCombustion.C │ │ └── noCombustion.H │ ├── radiationModels │ │ ├── absorptionEmissionModels │ │ │ ├── greyMeanCombustion │ │ │ │ ├── greyMeanCombustion.C │ │ │ │ └── greyMeanCombustion.H │ │ │ └── wideBandCombustion │ │ │ │ ├── wideBandCombustion.C │ │ │ │ └── wideBandCombustion.H │ │ └── sootModels │ │ │ └── mixtureFraction │ │ │ ├── mixtureFraction.C │ │ │ └── mixtureFraction.H │ ├── singleStepCombustion │ │ ├── singleStepCombustion.C │ │ ├── singleStepCombustion.H │ │ └── singleStepCombustionI.H │ └── zoneCombustion │ │ ├── zoneCombustion.C │ │ └── zoneCombustion.H ├── conversion │ ├── Allwmake │ ├── Make │ │ ├── files │ │ └── options │ ├── ensight │ │ ├── file │ │ │ ├── ensightFile.C │ │ │ ├── ensightFile.H │ │ │ ├── ensightGeoFile.C │ │ │ └── ensightGeoFile.H │ │ └── part │ │ │ ├── ensightPart.C │ │ │ ├── ensightPart.H │ │ │ ├── ensightPartCells.C │ │ │ ├── ensightPartCells.H │ │ │ ├── ensightPartFaces.C │ │ │ ├── ensightPartFaces.H │ │ │ ├── ensightPartIO.C │ │ │ ├── ensightPartTemplates.C │ │ │ ├── ensightParts.C │ │ │ ├── ensightParts.H │ │ │ └── ensightPartsTemplates.C │ ├── mergedCyclic │ │ ├── mergedCyclicPolyPatch.C │ │ ├── mergedCyclicPolyPatch.H │ │ ├── polyMeshUnMergeCyclics.C │ │ └── polyMeshUnMergeCyclics.H │ ├── meshReader │ │ ├── README │ │ ├── calcPointCells.C │ │ ├── createPolyBoundary.C │ │ ├── createPolyCells.C │ │ ├── meshReader.C │ │ ├── meshReader.H │ │ ├── meshReaderAux.C │ │ └── starcd │ │ │ ├── STARCDMeshReader.C │ │ │ └── STARCDMeshReader.H │ ├── meshTables │ │ ├── README │ │ ├── boundaryRegion.C │ │ ├── boundaryRegion.H │ │ ├── cellTable.C │ │ ├── cellTable.H │ │ └── remappingDict │ ├── meshWriter │ │ ├── meshWriter.C │ │ ├── meshWriter.H │ │ └── starcd │ │ │ ├── STARCDMeshWriter.C │ │ │ └── STARCDMeshWriter.H │ └── polyDualMesh │ │ ├── polyDualMesh.C │ │ └── polyDualMesh.H ├── dummyThirdParty │ ├── Allwmake │ ├── MGridGen │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── dummyMGridGen.C │ │ └── mgridgen.h │ ├── metisDecomp │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── dummyMetisDecomp.C │ │ └── metis.h │ ├── ptscotchDecomp │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── dummyPtscotchDecomp.C │ └── scotchDecomp │ │ ├── Make │ │ ├── files │ │ └── options │ │ └── dummyScotchDecomp.C ├── dynamicFvMesh │ ├── Make │ │ ├── files │ │ └── options │ ├── dynamicFvMesh │ │ ├── dynamicFvMesh.C │ │ ├── dynamicFvMesh.H │ │ └── dynamicFvMeshNew.C │ ├── dynamicInkJetFvMesh │ │ ├── dynamicInkJetFvMesh.C │ │ └── dynamicInkJetFvMesh.H │ ├── dynamicInterpolatedFvMesh │ │ ├── dynamicInterpolatedFvMesh.C │ │ └── dynamicInterpolatedFvMesh.H │ ├── dynamicMotionSolverFvMesh │ │ ├── dynamicMotionSolverFvMesh.C │ │ └── dynamicMotionSolverFvMesh.H │ ├── dynamicRefineFvMesh │ │ ├── dynamicMeshDict │ │ ├── dynamicRefineFvMesh.C │ │ └── dynamicRefineFvMesh.H │ ├── include │ │ ├── createDyMControls.H │ │ ├── createDynamicFvMesh.H │ │ ├── createNamedDynamicFvMesh.H │ │ ├── meshCourantNo.H │ │ └── readDyMControls.H │ └── staticFvMesh │ │ ├── staticFvMesh.C │ │ └── staticFvMesh.H ├── dynamicMesh │ ├── Make │ │ ├── files │ │ └── options │ ├── attachDetach │ │ ├── attachDetach.C │ │ ├── attachDetach.H │ │ ├── attachDetachPointMatchMap.C │ │ ├── attachInterface.C │ │ └── detachInterface.C │ ├── createShellMesh │ │ ├── createShellMesh.C │ │ └── createShellMesh.H │ ├── extrudePatchMesh │ │ ├── extrudePatchMesh.C │ │ └── extrudePatchMesh.H │ ├── fvMeshAdder │ │ ├── directPointPatchFieldMapper.H │ │ ├── fvMeshAdder.C │ │ ├── fvMeshAdder.H │ │ └── fvMeshAdderTemplates.C │ ├── fvMeshDistribute │ │ ├── fvMeshDistribute.C │ │ ├── fvMeshDistribute.H │ │ └── fvMeshDistributeTemplates.C │ ├── fvMeshSubset │ │ ├── fvMeshSubset.C │ │ ├── fvMeshSubset.H │ │ └── fvMeshSubsetInterpolate.C │ ├── fvMeshTools │ │ ├── fvMeshTools.C │ │ ├── fvMeshTools.H │ │ └── fvMeshToolsTemplates.C │ ├── layerAdditionRemoval │ │ ├── addCellLayer.C │ │ ├── layerAdditionRemoval.C │ │ ├── layerAdditionRemoval.H │ │ ├── removeCellLayer.C │ │ └── setLayerPairing.C │ ├── meshCut │ │ ├── cellCuts │ │ │ ├── cellCuts.C │ │ │ └── cellCuts.H │ │ ├── cellLooper │ │ │ ├── cellLooper.C │ │ │ ├── cellLooper.H │ │ │ ├── geomCellLooper.C │ │ │ ├── geomCellLooper.H │ │ │ ├── hexCellLooper.C │ │ │ ├── hexCellLooper.H │ │ │ ├── topoCellLooper.C │ │ │ └── topoCellLooper.H │ │ ├── directions │ │ │ ├── directionInfo │ │ │ │ ├── directionInfo.C │ │ │ │ ├── directionInfo.H │ │ │ │ └── directionInfoI.H │ │ │ ├── directions.C │ │ │ └── directions.H │ │ ├── edgeVertex │ │ │ ├── edgeVertex.C │ │ │ └── edgeVertex.H │ │ ├── meshModifiers │ │ │ ├── boundaryCutter │ │ │ │ ├── boundaryCutter.C │ │ │ │ └── boundaryCutter.H │ │ │ ├── meshCutAndRemove │ │ │ │ ├── meshCutAndRemove.C │ │ │ │ └── meshCutAndRemove.H │ │ │ ├── meshCutter │ │ │ │ ├── meshCutter.C │ │ │ │ └── meshCutter.H │ │ │ ├── multiDirRefinement │ │ │ │ ├── multiDirRefinement.C │ │ │ │ └── multiDirRefinement.H │ │ │ ├── refinementIterator │ │ │ │ ├── refinementIterator.C │ │ │ │ └── refinementIterator.H │ │ │ └── undoableMeshCutter │ │ │ │ ├── undoableMeshCutter.C │ │ │ │ └── undoableMeshCutter.H │ │ ├── refineCell │ │ │ ├── refineCell.C │ │ │ └── refineCell.H │ │ ├── splitCell │ │ │ ├── splitCell.C │ │ │ └── splitCell.H │ │ └── wallLayerCells │ │ │ ├── wallLayerCells.C │ │ │ ├── wallLayerCells.H │ │ │ └── wallNormalInfo │ │ │ ├── wallNormalInfo.C │ │ │ ├── wallNormalInfo.H │ │ │ └── wallNormalInfoI.H │ ├── motionSmoother │ │ ├── badQualityToCell │ │ │ ├── badQualityToCell.C │ │ │ └── badQualityToCell.H │ │ ├── badQualityToFace │ │ │ ├── badQualityToFace.C │ │ │ └── badQualityToFace.H │ │ ├── motionSmoother.C │ │ ├── motionSmoother.H │ │ ├── motionSmootherAlgo.C │ │ ├── motionSmootherAlgo.H │ │ ├── motionSmootherAlgoCheck.C │ │ ├── motionSmootherAlgoTemplates.C │ │ ├── motionSmootherData.C │ │ ├── motionSmootherData.H │ │ └── polyMeshCheck │ │ │ ├── polyMeshCheck.C │ │ │ └── polyMeshCheck.H │ ├── motionSolvers │ │ ├── componentDisplacement │ │ │ ├── componentDisplacementMotionSolver.C │ │ │ └── componentDisplacementMotionSolver.H │ │ ├── componentVelocity │ │ │ ├── componentVelocityMotionSolver.C │ │ │ └── componentVelocityMotionSolver.H │ │ ├── displacement │ │ │ ├── displacement │ │ │ │ ├── displacementMotionSolver.C │ │ │ │ └── displacementMotionSolver.H │ │ │ ├── layeredSolver │ │ │ │ ├── displacementLayeredMotionMotionSolver.C │ │ │ │ ├── displacementLayeredMotionMotionSolver.H │ │ │ │ ├── pointEdgeStructuredWalk.C │ │ │ │ ├── pointEdgeStructuredWalk.H │ │ │ │ └── pointEdgeStructuredWalkI.H │ │ │ ├── linearSolver │ │ │ │ ├── displacementLinearMotionMotionSolver.C │ │ │ │ └── displacementLinearMotionMotionSolver.H │ │ │ ├── points0 │ │ │ │ ├── points0MotionSolver.C │ │ │ │ └── points0MotionSolver.H │ │ │ └── solidBody │ │ │ │ ├── interpolatingSolidBodyMotionSolver │ │ │ │ ├── interpolatingSolidBodyMotionSolver.C │ │ │ │ └── interpolatingSolidBodyMotionSolver.H │ │ │ │ ├── multiSolidBodyMotionSolver │ │ │ │ ├── multiSolidBodyMotionSolver.C │ │ │ │ └── multiSolidBodyMotionSolver.H │ │ │ │ ├── pointPatchFields │ │ │ │ └── derived │ │ │ │ │ └── solidBodyMotionDisplacement │ │ │ │ │ ├── solidBodyMotionDisplacementPointPatchVectorField.C │ │ │ │ │ └── solidBodyMotionDisplacementPointPatchVectorField.H │ │ │ │ ├── solidBodyMotionFunctions │ │ │ │ ├── SDA │ │ │ │ │ ├── SDA.C │ │ │ │ │ └── SDA.H │ │ │ │ ├── axisRotationMotion │ │ │ │ │ ├── axisRotationMotion.C │ │ │ │ │ └── axisRotationMotion.H │ │ │ │ ├── linearMotion │ │ │ │ │ ├── linearMotion.C │ │ │ │ │ └── linearMotion.H │ │ │ │ ├── multiMotion │ │ │ │ │ ├── multiMotion.C │ │ │ │ │ └── multiMotion.H │ │ │ │ ├── oscillatingLinearMotion │ │ │ │ │ ├── oscillatingLinearMotion.C │ │ │ │ │ └── oscillatingLinearMotion.H │ │ │ │ ├── oscillatingRotatingMotion │ │ │ │ │ ├── oscillatingRotatingMotion.C │ │ │ │ │ └── oscillatingRotatingMotion.H │ │ │ │ ├── rotatingMotion │ │ │ │ │ ├── rotatingMotion.C │ │ │ │ │ └── rotatingMotion.H │ │ │ │ ├── sixDoFMotion │ │ │ │ │ ├── sixDoFMotion.C │ │ │ │ │ └── sixDoFMotion.H │ │ │ │ └── solidBodyMotionFunction │ │ │ │ │ ├── solidBodyMotionFunction.C │ │ │ │ │ ├── solidBodyMotionFunction.H │ │ │ │ │ └── solidBodyMotionFunctionNew.C │ │ │ │ └── solidBodyMotionSolver │ │ │ │ ├── solidBodyMotionSolver.C │ │ │ │ └── solidBodyMotionSolver.H │ │ ├── motionSolver │ │ │ ├── motionSolver.C │ │ │ └── motionSolver.H │ │ ├── motionSolverList │ │ │ ├── motionSolverList.C │ │ │ └── motionSolverList.H │ │ └── velocity │ │ │ ├── velocityMotionSolver.C │ │ │ └── velocityMotionSolver.H │ ├── perfectInterface │ │ ├── perfectInterface.C │ │ └── perfectInterface.H │ ├── pointInterpolator │ │ ├── dynamicMeshPointInterpolator.C │ │ └── dynamicMeshPointInterpolator.H │ ├── pointPatchDist │ │ ├── externalPointEdgePoint.C │ │ ├── externalPointEdgePoint.H │ │ ├── externalPointEdgePointI.H │ │ ├── pointPatchDist.C │ │ └── pointPatchDist.H │ ├── polyMeshAdder │ │ ├── faceCoupleInfo.C │ │ ├── faceCoupleInfo.H │ │ ├── faceCoupleInfoTemplates.C │ │ ├── polyMeshAdder.C │ │ └── polyMeshAdder.H │ ├── polyMeshFilter │ │ ├── polyMeshFilter.C │ │ ├── polyMeshFilter.H │ │ ├── polyMeshFilterSettings.C │ │ ├── polyMeshFilterSettings.H │ │ ├── polyMeshFilterSettingsI.H │ │ └── polyMeshFilterTemplates.C │ ├── polyTopoChange │ │ ├── attachPolyTopoChanger │ │ │ ├── attachPolyTopoChanger.C │ │ │ └── attachPolyTopoChanger.H │ │ ├── polyMeshModifier │ │ │ ├── polyMeshModifier.C │ │ │ ├── polyMeshModifier.H │ │ │ └── polyMeshModifierNew.C │ │ ├── polyTopoChange │ │ │ ├── addObject │ │ │ │ ├── polyAddCell.H │ │ │ │ ├── polyAddFace.H │ │ │ │ └── polyAddPoint.H │ │ │ ├── addPatchCellLayer.C │ │ │ ├── addPatchCellLayer.H │ │ │ ├── combineFaces.C │ │ │ ├── combineFaces.H │ │ │ ├── duplicatePoints.C │ │ │ ├── duplicatePoints.H │ │ │ ├── edgeCollapser.C │ │ │ ├── edgeCollapser.H │ │ │ ├── faceCollapser.C │ │ │ ├── faceCollapser.H │ │ │ ├── hexRef8 │ │ │ │ ├── hexRef8.C │ │ │ │ ├── hexRef8.H │ │ │ │ ├── hexRef8Data.C │ │ │ │ ├── hexRef8Data.H │ │ │ │ ├── refinementHistory.C │ │ │ │ └── refinementHistory.H │ │ │ ├── modifyObject │ │ │ │ ├── polyModifyCell.H │ │ │ │ ├── polyModifyFace.H │ │ │ │ └── polyModifyPoint.H │ │ │ ├── pointEdgeCollapse │ │ │ │ ├── pointEdgeCollapse.C │ │ │ │ ├── pointEdgeCollapse.H │ │ │ │ └── pointEdgeCollapseI.H │ │ │ ├── polyTopoChange.C │ │ │ ├── polyTopoChange.H │ │ │ ├── polyTopoChangeI.H │ │ │ ├── polyTopoChangeTemplates.C │ │ │ ├── refinementData.C │ │ │ ├── refinementData.H │ │ │ ├── refinementDataI.H │ │ │ ├── refinementDistanceData.C │ │ │ ├── refinementDistanceData.H │ │ │ ├── refinementDistanceDataI.H │ │ │ ├── removeCells.C │ │ │ ├── removeCells.H │ │ │ ├── removeFaces.C │ │ │ ├── removeFaces.H │ │ │ ├── removeObject │ │ │ │ ├── polyRemoveCell.H │ │ │ │ ├── polyRemoveFace.H │ │ │ │ └── polyRemovePoint.H │ │ │ ├── removePoints.C │ │ │ ├── removePoints.H │ │ │ ├── tetDecomposer.C │ │ │ ├── tetDecomposer.H │ │ │ └── topoAction │ │ │ │ ├── topoAction.H │ │ │ │ └── topoActions.C │ │ ├── polyTopoChanger │ │ │ ├── polyTopoChanger.C │ │ │ └── polyTopoChanger.H │ │ └── repatchPolyTopoChanger │ │ │ ├── repatchPolyTopoChanger.C │ │ │ └── repatchPolyTopoChanger.H │ ├── repatchMesh │ │ ├── repatchMesh.C │ │ ├── repatchMesh.H │ │ ├── repatchPatch.C │ │ └── repatchPatch.H │ ├── setUpdater │ │ ├── setUpdater.C │ │ ├── setUpdater.H │ │ └── setUpdaterTemplates.C │ └── slidingInterface │ │ ├── coupleSlidingInterface.C │ │ ├── decoupleSlidingInterface.C │ │ ├── enrichedPatch │ │ ├── enrichedPatch.C │ │ ├── enrichedPatch.H │ │ ├── enrichedPatchCutFaces.C │ │ ├── enrichedPatchFaces.C │ │ ├── enrichedPatchMasterPoints.C │ │ ├── enrichedPatchPointMap.C │ │ └── enrichedPatchPointPoints.C │ │ ├── slidingInterface.C │ │ ├── slidingInterface.H │ │ ├── slidingInterfaceAttachedAddressing.C │ │ ├── slidingInterfaceClearCouple.C │ │ └── slidingInterfaceProjectPoints.C ├── engine │ ├── Make │ │ ├── files │ │ └── options │ ├── engineMesh │ │ ├── engineMesh │ │ │ ├── engineMesh.C │ │ │ ├── engineMesh.H │ │ │ └── engineMeshNew.C │ │ ├── fvMotionSolverEngineMesh │ │ │ ├── fvMotionSolverEngineMesh.C │ │ │ └── fvMotionSolverEngineMesh.H │ │ ├── layeredEngineMesh │ │ │ ├── layeredEngineMesh.C │ │ │ └── layeredEngineMesh.H │ │ └── staticEngineMesh │ │ │ ├── staticEngineMesh.C │ │ │ └── staticEngineMesh.H │ ├── enginePiston │ │ ├── enginePiston.C │ │ └── enginePiston.H │ ├── engineTime │ │ ├── crankConRod │ │ │ ├── crankConRod.C │ │ │ └── crankConRod.H │ │ ├── engineTime │ │ │ ├── engineTime.C │ │ │ ├── engineTime.H │ │ │ └── engineTimeNew.C │ │ └── freePiston │ │ │ ├── freePiston.C │ │ │ └── freePiston.H │ ├── engineValve │ │ ├── engineValve.C │ │ ├── engineValve.H │ │ └── valveBank.H │ ├── ignition │ │ ├── ignite.H │ │ ├── ignition.C │ │ ├── ignition.H │ │ ├── ignitionIO.C │ │ ├── ignitionSite.C │ │ ├── ignitionSite.H │ │ └── ignitionSiteIO.C │ └── include │ │ ├── StCorr.H │ │ ├── createEngineControls.H │ │ ├── createEngineMesh.H │ │ ├── createEngineTime.H │ │ ├── createEngineTimeControls.H │ │ ├── readEngineControls.H │ │ └── readEngineTimeControls.H ├── fileFormats │ ├── Make │ │ ├── files │ │ └── options │ ├── nas │ │ ├── NASCore.C │ │ └── NASCore.H │ ├── obj │ │ ├── OBJstream.C │ │ └── OBJstream.H │ ├── starcd │ │ ├── STARCDCore.C │ │ └── STARCDCore.H │ └── vtk │ │ ├── vtkUnstructuredReader.C │ │ ├── vtkUnstructuredReader.H │ │ ├── vtkUnstructuredReaderTemplates.C │ │ ├── vtkWriteOps.C │ │ ├── vtkWriteOps.H │ │ ├── vtkWriteOpsTemplates.C │ │ ├── vtkWritePolyData.H │ │ └── vtkWritePolyDataTemplates.C ├── finiteVolume │ ├── Make │ │ ├── files │ │ └── options │ ├── cfdTools │ │ ├── compressible │ │ │ ├── compressibleContinuityErrs.H │ │ │ ├── compressibleCourantNo.H │ │ │ ├── compressibleCreatePhi.H │ │ │ ├── createRhoUf.H │ │ │ ├── createRhoUfIfPresent.H │ │ │ ├── rhoEqn.H │ │ │ └── updateRhoUf.H │ │ ├── general │ │ │ ├── CorrectPhi │ │ │ │ ├── CorrectPhi.C │ │ │ │ ├── CorrectPhi.H │ │ │ │ └── correctUphiBCs.C │ │ │ ├── MRF │ │ │ │ ├── IOMRFZoneList.C │ │ │ │ ├── IOMRFZoneList.H │ │ │ │ ├── MRFZone.C │ │ │ │ ├── MRFZone.H │ │ │ │ ├── MRFZoneI.H │ │ │ │ ├── MRFZoneList.C │ │ │ │ ├── MRFZoneList.H │ │ │ │ ├── MRFZoneListTemplates.C │ │ │ │ └── MRFZoneTemplates.C │ │ │ ├── SRF │ │ │ │ ├── SRFModel │ │ │ │ │ ├── SRFModel │ │ │ │ │ │ ├── SRFModel.C │ │ │ │ │ │ ├── SRFModel.H │ │ │ │ │ │ └── SRFModelNew.C │ │ │ │ │ └── rpm │ │ │ │ │ │ ├── rpm.C │ │ │ │ │ │ └── rpm.H │ │ │ │ └── derivedFvPatchFields │ │ │ │ │ ├── SRFFreestreamVelocityFvPatchVectorField │ │ │ │ │ ├── SRFFreestreamVelocityFvPatchVectorField.C │ │ │ │ │ └── SRFFreestreamVelocityFvPatchVectorField.H │ │ │ │ │ ├── SRFVelocityFvPatchVectorField │ │ │ │ │ ├── SRFVelocityFvPatchVectorField.C │ │ │ │ │ └── SRFVelocityFvPatchVectorField.H │ │ │ │ │ └── SRFWallVelocityFvPatchVectorField │ │ │ │ │ ├── SRFWallVelocityFvPatchVectorField.C │ │ │ │ │ └── SRFWallVelocityFvPatchVectorField.H │ │ │ ├── adjustPhi │ │ │ │ ├── adjustPhi.C │ │ │ │ └── adjustPhi.H │ │ │ ├── bound │ │ │ │ ├── bound.C │ │ │ │ └── bound.H │ │ │ ├── constrainHbyA │ │ │ │ ├── constrainHbyA.C │ │ │ │ └── constrainHbyA.H │ │ │ ├── constrainPressure │ │ │ │ ├── constrainPressure.C │ │ │ │ └── constrainPressure.H │ │ │ ├── findRefCell │ │ │ │ ├── findRefCell.C │ │ │ │ └── findRefCell.H │ │ │ ├── fvConstraints │ │ │ │ ├── fvConstraint.C │ │ │ │ ├── fvConstraint.H │ │ │ │ ├── fvConstraintI.H │ │ │ │ ├── fvConstraintM.H │ │ │ │ ├── fvConstraints.C │ │ │ │ ├── fvConstraints.H │ │ │ │ └── fvConstraintsTemplates.C │ │ │ ├── fvModels │ │ │ │ ├── fvModel.C │ │ │ │ ├── fvModel.H │ │ │ │ ├── fvModelI.H │ │ │ │ ├── fvModelM.H │ │ │ │ ├── fvModelTemplates.C │ │ │ │ ├── fvModels.C │ │ │ │ ├── fvModels.H │ │ │ │ └── fvModelsTemplates.C │ │ │ ├── include │ │ │ │ ├── checkPatchFieldTypes.H │ │ │ │ ├── checkRadiationModel.H │ │ │ │ ├── createFvConstraints.H │ │ │ │ ├── createFvModels.H │ │ │ │ ├── createMRF.H │ │ │ │ ├── createPimpleControl.H │ │ │ │ ├── createPisoControl.H │ │ │ │ ├── createRDeltaT.H │ │ │ │ ├── createSimpleControl.H │ │ │ │ ├── createTimeControls.H │ │ │ │ ├── fvCFD.H │ │ │ │ ├── gh.H │ │ │ │ ├── initContinuityErrs.H │ │ │ │ ├── readGravitationalAcceleration.H │ │ │ │ ├── readTimeControls.H │ │ │ │ ├── readhRef.H │ │ │ │ ├── readpRef.H │ │ │ │ ├── setDeltaT.H │ │ │ │ ├── setInitialDeltaT.H │ │ │ │ └── volContinuity.H │ │ │ ├── levelSet │ │ │ │ ├── levelSet.C │ │ │ │ ├── levelSet.H │ │ │ │ └── levelSetTemplates.C │ │ │ ├── porosityModel │ │ │ │ ├── DarcyForchheimer │ │ │ │ │ ├── DarcyForchheimer.C │ │ │ │ │ ├── DarcyForchheimer.H │ │ │ │ │ └── DarcyForchheimerTemplates.C │ │ │ │ ├── fixedCoeff │ │ │ │ │ ├── fixedCoeff.C │ │ │ │ │ └── fixedCoeff.H │ │ │ │ ├── porosityModel │ │ │ │ │ ├── IOporosityModelList.C │ │ │ │ │ ├── IOporosityModelList.H │ │ │ │ │ ├── porosityModel.C │ │ │ │ │ ├── porosityModel.H │ │ │ │ │ ├── porosityModelI.H │ │ │ │ │ ├── porosityModelList.C │ │ │ │ │ ├── porosityModelList.H │ │ │ │ │ └── porosityModelNew.C │ │ │ │ ├── powerLaw │ │ │ │ │ ├── powerLaw.C │ │ │ │ │ ├── powerLaw.H │ │ │ │ │ └── powerLawTemplates.C │ │ │ │ └── solidification │ │ │ │ │ ├── solidification.C │ │ │ │ │ ├── solidification.H │ │ │ │ │ └── solidificationTemplates.C │ │ │ ├── pressureReference │ │ │ │ ├── pressureReference.C │ │ │ │ ├── pressureReference.H │ │ │ │ └── pressureReferenceI.H │ │ │ └── solutionControl │ │ │ │ ├── convergenceControl │ │ │ │ ├── convergenceControl │ │ │ │ │ ├── convergenceControl.C │ │ │ │ │ ├── convergenceControl.H │ │ │ │ │ └── convergenceControlTemplates.C │ │ │ │ ├── correctorConvergenceControl │ │ │ │ │ ├── correctorConvergenceControl.C │ │ │ │ │ ├── correctorConvergenceControl.H │ │ │ │ │ └── correctorConvergenceControlTemplates.C │ │ │ │ ├── singleRegionConvergenceControl │ │ │ │ │ ├── singleRegionConvergenceControl.C │ │ │ │ │ └── singleRegionConvergenceControl.H │ │ │ │ └── singleRegionCorrectorConvergenceControl │ │ │ │ │ ├── singleRegionCorrectorConvergenceControl.C │ │ │ │ │ └── singleRegionCorrectorConvergenceControl.H │ │ │ │ ├── createControl.H │ │ │ │ ├── pimpleControl │ │ │ │ ├── pimpleControl │ │ │ │ │ ├── pimpleControl.C │ │ │ │ │ ├── pimpleControl.H │ │ │ │ │ └── pimpleControlI.H │ │ │ │ ├── pimpleLoop │ │ │ │ │ ├── pimpleLoop.C │ │ │ │ │ ├── pimpleLoop.H │ │ │ │ │ └── pimpleLoopI.H │ │ │ │ ├── pimpleMultiRegionControl │ │ │ │ │ ├── pimpleMultiRegionControl.C │ │ │ │ │ ├── pimpleMultiRegionControl.H │ │ │ │ │ └── pimpleMultiRegionControlI.H │ │ │ │ └── pimpleNoLoopControl │ │ │ │ │ ├── pimpleNoLoopControl.C │ │ │ │ │ ├── pimpleNoLoopControl.H │ │ │ │ │ └── pimpleNoLoopControlI.H │ │ │ │ ├── pisoControl │ │ │ │ ├── pisoControl.C │ │ │ │ ├── pisoControl.H │ │ │ │ └── pisoControlI.H │ │ │ │ ├── simpleControl │ │ │ │ ├── simpleControl.C │ │ │ │ └── simpleControl.H │ │ │ │ ├── solidControl │ │ │ │ └── solidNoLoopControl │ │ │ │ │ ├── solidNoLoopControl.C │ │ │ │ │ └── solidNoLoopControl.H │ │ │ │ └── solutionControl │ │ │ │ ├── fluidSolutionControl │ │ │ │ ├── fluidSolutionControl.C │ │ │ │ ├── fluidSolutionControl.H │ │ │ │ └── fluidSolutionControlI.H │ │ │ │ ├── multiRegionSolutionControl │ │ │ │ ├── multiRegionSolutionControl.C │ │ │ │ └── multiRegionSolutionControl.H │ │ │ │ ├── nonOrthogonalSolutionControl │ │ │ │ ├── nonOrthogonalSolutionControl.C │ │ │ │ ├── nonOrthogonalSolutionControl.H │ │ │ │ └── nonOrthogonalSolutionControlI.H │ │ │ │ ├── singleRegionSolutionControl │ │ │ │ ├── singleRegionSolutionControl.C │ │ │ │ ├── singleRegionSolutionControl.H │ │ │ │ ├── singleRegionSolutionControlI.H │ │ │ │ └── singleRegionSolutionControlTemplates.C │ │ │ │ └── solutionControl │ │ │ │ ├── solutionControl.C │ │ │ │ ├── solutionControl.H │ │ │ │ └── solutionControlI.H │ │ └── incompressible │ │ │ ├── CourantNo.H │ │ │ ├── continuityErrs.H │ │ │ ├── createPhi.H │ │ │ ├── createPhiv.H │ │ │ ├── createUf.H │ │ │ ├── createUfIfPresent.H │ │ │ ├── movingMeshContinuityErrs.H │ │ │ ├── movingMeshRhoUContinuityErrs.H │ │ │ └── updateUf.H │ ├── fields │ │ ├── fvPatchFields │ │ │ ├── basic │ │ │ │ ├── basicSymmetry │ │ │ │ │ ├── basicSymmetryFvPatchField.C │ │ │ │ │ ├── basicSymmetryFvPatchField.H │ │ │ │ │ ├── basicSymmetryFvPatchFields.H │ │ │ │ │ └── basicSymmetryFvPatchScalarField.C │ │ │ │ ├── calculated │ │ │ │ │ ├── calculatedFvPatchField.C │ │ │ │ │ ├── calculatedFvPatchField.H │ │ │ │ │ ├── calculatedFvPatchFields.C │ │ │ │ │ ├── calculatedFvPatchFields.H │ │ │ │ │ └── calculatedFvPatchFieldsFwd.H │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledFvPatchField.C │ │ │ │ │ ├── coupledFvPatchField.H │ │ │ │ │ ├── coupledFvPatchFields.C │ │ │ │ │ ├── coupledFvPatchFields.H │ │ │ │ │ └── coupledFvPatchFieldsFwd.H │ │ │ │ ├── directionMixed │ │ │ │ │ ├── directionMixedFvPatchField.C │ │ │ │ │ ├── directionMixedFvPatchField.H │ │ │ │ │ ├── directionMixedFvPatchFields.C │ │ │ │ │ ├── directionMixedFvPatchFields.H │ │ │ │ │ └── directionMixedFvPatchFieldsFwd.H │ │ │ │ ├── extrapolatedCalculated │ │ │ │ │ ├── extrapolatedCalculatedFvPatchField.C │ │ │ │ │ ├── extrapolatedCalculatedFvPatchField.H │ │ │ │ │ ├── extrapolatedCalculatedFvPatchFields.C │ │ │ │ │ ├── extrapolatedCalculatedFvPatchFields.H │ │ │ │ │ └── extrapolatedCalculatedFvPatchFieldsFwd.H │ │ │ │ ├── fixedGradient │ │ │ │ │ ├── fixedGradientFvPatchField.C │ │ │ │ │ ├── fixedGradientFvPatchField.H │ │ │ │ │ ├── fixedGradientFvPatchFields.C │ │ │ │ │ ├── fixedGradientFvPatchFields.H │ │ │ │ │ └── fixedGradientFvPatchFieldsFwd.H │ │ │ │ ├── fixedValue │ │ │ │ │ ├── fixedValueFvPatchField.C │ │ │ │ │ ├── fixedValueFvPatchField.H │ │ │ │ │ ├── fixedValueFvPatchFields.C │ │ │ │ │ ├── fixedValueFvPatchFields.H │ │ │ │ │ └── fixedValueFvPatchFieldsFwd.H │ │ │ │ ├── mixed │ │ │ │ │ ├── mixedFvPatchField.C │ │ │ │ │ ├── mixedFvPatchField.H │ │ │ │ │ ├── mixedFvPatchFields.C │ │ │ │ │ ├── mixedFvPatchFields.H │ │ │ │ │ └── mixedFvPatchFieldsFwd.H │ │ │ │ ├── sliced │ │ │ │ │ ├── slicedFvPatchField.C │ │ │ │ │ ├── slicedFvPatchField.H │ │ │ │ │ ├── slicedFvPatchFields.C │ │ │ │ │ ├── slicedFvPatchFields.H │ │ │ │ │ └── slicedFvPatchFieldsFwd.H │ │ │ │ ├── transform │ │ │ │ │ ├── transformFvPatchField.C │ │ │ │ │ ├── transformFvPatchField.H │ │ │ │ │ ├── transformFvPatchFields.C │ │ │ │ │ ├── transformFvPatchFields.H │ │ │ │ │ ├── transformFvPatchFieldsFwd.H │ │ │ │ │ └── transformFvPatchScalarField.C │ │ │ │ └── zeroGradient │ │ │ │ │ ├── zeroGradientFvPatchField.C │ │ │ │ │ ├── zeroGradientFvPatchField.H │ │ │ │ │ ├── zeroGradientFvPatchFields.C │ │ │ │ │ ├── zeroGradientFvPatchFields.H │ │ │ │ │ └── zeroGradientFvPatchFieldsFwd.H │ │ │ ├── constraint │ │ │ │ ├── cyclic │ │ │ │ │ ├── cyclicFvPatchField.C │ │ │ │ │ ├── cyclicFvPatchField.H │ │ │ │ │ ├── cyclicFvPatchFields.C │ │ │ │ │ ├── cyclicFvPatchFields.H │ │ │ │ │ └── cyclicFvPatchFieldsFwd.H │ │ │ │ ├── cyclicACMI │ │ │ │ │ ├── cyclicACMIFvPatchField.C │ │ │ │ │ ├── cyclicACMIFvPatchField.H │ │ │ │ │ ├── cyclicACMIFvPatchFields.C │ │ │ │ │ ├── cyclicACMIFvPatchFields.H │ │ │ │ │ └── cyclicACMIFvPatchFieldsFwd.H │ │ │ │ ├── cyclicAMI │ │ │ │ │ ├── cyclicAMIFvPatchField.C │ │ │ │ │ ├── cyclicAMIFvPatchField.H │ │ │ │ │ ├── cyclicAMIFvPatchFields.C │ │ │ │ │ ├── cyclicAMIFvPatchFields.H │ │ │ │ │ └── cyclicAMIFvPatchFieldsFwd.H │ │ │ │ ├── cyclicRepeatAMI │ │ │ │ │ ├── cyclicRepeatAMIFvPatchField.H │ │ │ │ │ ├── cyclicRepeatAMIFvPatchFields.C │ │ │ │ │ ├── cyclicRepeatAMIFvPatchFields.H │ │ │ │ │ └── cyclicRepeatAMIFvPatchFieldsFwd.H │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvPatchField.C │ │ │ │ │ ├── cyclicSlipFvPatchField.H │ │ │ │ │ ├── cyclicSlipFvPatchFields.C │ │ │ │ │ ├── cyclicSlipFvPatchFields.H │ │ │ │ │ └── cyclicSlipFvPatchFieldsFwd.H │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvPatchField.C │ │ │ │ │ ├── emptyFvPatchField.H │ │ │ │ │ ├── emptyFvPatchFields.C │ │ │ │ │ ├── emptyFvPatchFields.H │ │ │ │ │ └── emptyFvPatchFieldsFwd.H │ │ │ │ ├── internal │ │ │ │ │ ├── internalFvPatchField.C │ │ │ │ │ ├── internalFvPatchField.H │ │ │ │ │ ├── internalFvPatchFields.C │ │ │ │ │ ├── internalFvPatchFields.H │ │ │ │ │ └── internalFvPatchFieldsFwd.H │ │ │ │ ├── jumpCyclic │ │ │ │ │ ├── jumpCyclicFvPatchField.C │ │ │ │ │ ├── jumpCyclicFvPatchField.H │ │ │ │ │ ├── jumpCyclicFvPatchFields.C │ │ │ │ │ ├── jumpCyclicFvPatchFields.H │ │ │ │ │ └── jumpCyclicFvPatchFieldsFwd.H │ │ │ │ ├── jumpCyclicAMI │ │ │ │ │ ├── jumpCyclicAMIFvPatchField.C │ │ │ │ │ ├── jumpCyclicAMIFvPatchField.H │ │ │ │ │ ├── jumpCyclicAMIFvPatchFields.C │ │ │ │ │ ├── jumpCyclicAMIFvPatchFields.H │ │ │ │ │ └── jumpCyclicAMIFvPatchFieldsFwd.H │ │ │ │ ├── processor │ │ │ │ │ ├── processorFvPatchField.C │ │ │ │ │ ├── processorFvPatchField.H │ │ │ │ │ ├── processorFvPatchFields.C │ │ │ │ │ ├── processorFvPatchFields.H │ │ │ │ │ ├── processorFvPatchFieldsFwd.H │ │ │ │ │ ├── processorFvPatchScalarField.C │ │ │ │ │ └── processorFvPatchScalarField.H │ │ │ │ ├── processorCyclic │ │ │ │ │ ├── processorCyclicFvPatchField.C │ │ │ │ │ ├── processorCyclicFvPatchField.H │ │ │ │ │ ├── processorCyclicFvPatchFields.C │ │ │ │ │ ├── processorCyclicFvPatchFields.H │ │ │ │ │ └── processorCyclicFvPatchFieldsFwd.H │ │ │ │ ├── symmetry │ │ │ │ │ ├── symmetryFvPatchField.C │ │ │ │ │ ├── symmetryFvPatchField.H │ │ │ │ │ ├── symmetryFvPatchFields.C │ │ │ │ │ ├── symmetryFvPatchFields.H │ │ │ │ │ └── symmetryFvPatchFieldsFwd.H │ │ │ │ ├── symmetryPlane │ │ │ │ │ ├── symmetryPlaneFvPatchField.C │ │ │ │ │ ├── symmetryPlaneFvPatchField.H │ │ │ │ │ ├── symmetryPlaneFvPatchFields.C │ │ │ │ │ ├── symmetryPlaneFvPatchFields.H │ │ │ │ │ ├── symmetryPlaneFvPatchFieldsFwd.H │ │ │ │ │ └── symmetryPlaneFvPatchScalarField.C │ │ │ │ └── wedge │ │ │ │ │ ├── wedgeFvPatchField.C │ │ │ │ │ ├── wedgeFvPatchField.H │ │ │ │ │ ├── wedgeFvPatchFields.C │ │ │ │ │ ├── wedgeFvPatchFields.H │ │ │ │ │ ├── wedgeFvPatchFieldsFwd.H │ │ │ │ │ └── wedgeFvPatchScalarField.C │ │ │ ├── derived │ │ │ │ ├── PrghPressure │ │ │ │ │ ├── PrghPressureFvPatchScalarField.C │ │ │ │ │ ├── PrghPressureFvPatchScalarField.H │ │ │ │ │ └── prghPressureFvPatchScalarFields.C │ │ │ │ ├── activeBaffleVelocity │ │ │ │ │ ├── activeBaffleVelocityFvPatchVectorField.C │ │ │ │ │ └── activeBaffleVelocityFvPatchVectorField.H │ │ │ │ ├── activePressureForceBaffleVelocity │ │ │ │ │ ├── activePressureForceBaffleVelocityFvPatchVectorField.C │ │ │ │ │ └── activePressureForceBaffleVelocityFvPatchVectorField.H │ │ │ │ ├── advective │ │ │ │ │ ├── advectiveFvPatchField.C │ │ │ │ │ ├── advectiveFvPatchField.H │ │ │ │ │ ├── advectiveFvPatchFields.C │ │ │ │ │ ├── advectiveFvPatchFields.H │ │ │ │ │ └── advectiveFvPatchFieldsFwd.H │ │ │ │ ├── codedFixedValue │ │ │ │ │ ├── codedFixedValueFvPatchField.C │ │ │ │ │ ├── codedFixedValueFvPatchField.H │ │ │ │ │ ├── codedFixedValueFvPatchFields.C │ │ │ │ │ ├── codedFixedValueFvPatchFields.H │ │ │ │ │ └── codedFixedValueFvPatchFieldsFwd.H │ │ │ │ ├── codedMixed │ │ │ │ │ ├── codedMixedFvPatchField.C │ │ │ │ │ ├── codedMixedFvPatchField.H │ │ │ │ │ ├── codedMixedFvPatchFields.C │ │ │ │ │ ├── codedMixedFvPatchFields.H │ │ │ │ │ └── codedMixedFvPatchFieldsFwd.H │ │ │ │ ├── cylindricalInletVelocity │ │ │ │ │ ├── cylindricalInletVelocityFvPatchVectorField.C │ │ │ │ │ └── cylindricalInletVelocityFvPatchVectorField.H │ │ │ │ ├── dynamicPressure │ │ │ │ │ ├── dynamicPressureFvPatchScalarField.C │ │ │ │ │ └── dynamicPressureFvPatchScalarField.H │ │ │ │ ├── entrainmentPressure │ │ │ │ │ ├── entrainmentPressureFvPatchScalarField.C │ │ │ │ │ └── entrainmentPressureFvPatchScalarField.H │ │ │ │ ├── externalCoupledMixed │ │ │ │ │ ├── externalCoupledMixedFvPatchField.C │ │ │ │ │ ├── externalCoupledMixedFvPatchField.H │ │ │ │ │ ├── externalCoupledMixedFvPatchFields.C │ │ │ │ │ ├── externalCoupledMixedFvPatchFields.H │ │ │ │ │ └── externalCoupledMixedFvPatchFieldsFwd.H │ │ │ │ ├── fanPressure │ │ │ │ │ ├── fanPressureFvPatchScalarField.C │ │ │ │ │ └── fanPressureFvPatchScalarField.H │ │ │ │ ├── fanPressureJump │ │ │ │ │ ├── fanPressureJumpFvPatchScalarField.C │ │ │ │ │ └── fanPressureJumpFvPatchScalarField.H │ │ │ │ ├── fixedFluxExtrapolatedPressure │ │ │ │ │ ├── fixedFluxExtrapolatedPressureFvPatchScalarField.C │ │ │ │ │ └── fixedFluxExtrapolatedPressureFvPatchScalarField.H │ │ │ │ ├── fixedFluxPressure │ │ │ │ │ ├── fixedFluxPressureFvPatchScalarField.C │ │ │ │ │ └── fixedFluxPressureFvPatchScalarField.H │ │ │ │ ├── fixedInternalValue │ │ │ │ │ ├── fixedInternalValueFvPatchField.C │ │ │ │ │ ├── fixedInternalValueFvPatchField.H │ │ │ │ │ ├── fixedInternalValueFvPatchFields.C │ │ │ │ │ └── fixedInternalValueFvPatchFields.H │ │ │ │ ├── fixedJump │ │ │ │ │ ├── fixedJumpFvPatchField.C │ │ │ │ │ ├── fixedJumpFvPatchField.H │ │ │ │ │ ├── fixedJumpFvPatchFields.C │ │ │ │ │ ├── fixedJumpFvPatchFields.H │ │ │ │ │ └── fixedJumpFvPatchFieldsFwd.H │ │ │ │ ├── fixedJumpAMI │ │ │ │ │ ├── fixedJumpAMIFvPatchField.C │ │ │ │ │ ├── fixedJumpAMIFvPatchField.H │ │ │ │ │ ├── fixedJumpAMIFvPatchFields.C │ │ │ │ │ ├── fixedJumpAMIFvPatchFields.H │ │ │ │ │ └── fixedJumpAMIFvPatchFieldsFwd.H │ │ │ │ ├── fixedMean │ │ │ │ │ ├── fixedMeanFvPatchField.C │ │ │ │ │ ├── fixedMeanFvPatchField.H │ │ │ │ │ ├── fixedMeanFvPatchFields.C │ │ │ │ │ ├── fixedMeanFvPatchFields.H │ │ │ │ │ └── fixedMeanFvPatchFieldsFwd.H │ │ │ │ ├── fixedMeanOutletInlet │ │ │ │ │ ├── fixedMeanOutletInletFvPatchField.C │ │ │ │ │ ├── fixedMeanOutletInletFvPatchField.H │ │ │ │ │ ├── fixedMeanOutletInletFvPatchFields.C │ │ │ │ │ ├── fixedMeanOutletInletFvPatchFields.H │ │ │ │ │ └── fixedMeanOutletInletFvPatchFieldsFwd.H │ │ │ │ ├── fixedNormalInletOutletVelocity │ │ │ │ │ ├── fixedNormalInletOutletVelocityFvPatchVectorField.C │ │ │ │ │ └── fixedNormalInletOutletVelocityFvPatchVectorField.H │ │ │ │ ├── fixedNormalSlip │ │ │ │ │ ├── fixedNormalSlipFvPatchField.C │ │ │ │ │ ├── fixedNormalSlipFvPatchField.H │ │ │ │ │ ├── fixedNormalSlipFvPatchFields.C │ │ │ │ │ ├── fixedNormalSlipFvPatchFields.H │ │ │ │ │ └── fixedNormalSlipFvPatchFieldsFwd.H │ │ │ │ ├── fixedPressureCompressibleDensity │ │ │ │ │ ├── fixedPressureCompressibleDensityFvPatchScalarField.C │ │ │ │ │ └── fixedPressureCompressibleDensityFvPatchScalarField.H │ │ │ │ ├── fixedProfile │ │ │ │ │ ├── fixedProfileFvPatchField.C │ │ │ │ │ ├── fixedProfileFvPatchField.H │ │ │ │ │ ├── fixedProfileFvPatchFields.C │ │ │ │ │ ├── fixedProfileFvPatchFields.H │ │ │ │ │ └── fixedProfileFvPatchFieldsFwd.H │ │ │ │ ├── flowRateInletVelocity │ │ │ │ │ ├── flowRateInletVelocityFvPatchVectorField.C │ │ │ │ │ └── flowRateInletVelocityFvPatchVectorField.H │ │ │ │ ├── flowRateOutletVelocity │ │ │ │ │ ├── flowRateOutletVelocityFvPatchVectorField.C │ │ │ │ │ └── flowRateOutletVelocityFvPatchVectorField.H │ │ │ │ ├── fluxCorrectedVelocity │ │ │ │ │ ├── fluxCorrectedVelocityFvPatchVectorField.C │ │ │ │ │ └── fluxCorrectedVelocityFvPatchVectorField.H │ │ │ │ ├── freestream │ │ │ │ │ ├── freestreamFvPatchField.C │ │ │ │ │ ├── freestreamFvPatchField.H │ │ │ │ │ ├── freestreamFvPatchFields.C │ │ │ │ │ ├── freestreamFvPatchFields.H │ │ │ │ │ └── freestreamFvPatchFieldsFwd.H │ │ │ │ ├── freestreamPressure │ │ │ │ │ ├── freestreamPressureFvPatchScalarField.C │ │ │ │ │ └── freestreamPressureFvPatchScalarField.H │ │ │ │ ├── freestreamVelocity │ │ │ │ │ ├── freestreamVelocityFvPatchVectorField.C │ │ │ │ │ └── freestreamVelocityFvPatchVectorField.H │ │ │ │ ├── inletOutlet │ │ │ │ │ ├── inletOutletFvPatchField.C │ │ │ │ │ ├── inletOutletFvPatchField.H │ │ │ │ │ ├── inletOutletFvPatchFields.C │ │ │ │ │ ├── inletOutletFvPatchFields.H │ │ │ │ │ └── inletOutletFvPatchFieldsFwd.H │ │ │ │ ├── inletOutletTotalTemperature │ │ │ │ │ ├── inletOutletTotalTemperatureFvPatchScalarField.C │ │ │ │ │ └── inletOutletTotalTemperatureFvPatchScalarField.H │ │ │ │ ├── interfaceCompression │ │ │ │ │ ├── interfaceCompressionFvPatchScalarField.C │ │ │ │ │ └── interfaceCompressionFvPatchScalarField.H │ │ │ │ ├── interstitialInletVelocity │ │ │ │ │ ├── interstitialInletVelocityFvPatchVectorField.C │ │ │ │ │ └── interstitialInletVelocityFvPatchVectorField.H │ │ │ │ ├── mappedField │ │ │ │ │ ├── mappedFieldFvPatchField.C │ │ │ │ │ ├── mappedFieldFvPatchField.H │ │ │ │ │ ├── mappedFieldFvPatchFields.C │ │ │ │ │ ├── mappedFieldFvPatchFields.H │ │ │ │ │ ├── mappedFieldFvPatchFieldsFwd.H │ │ │ │ │ ├── mappedPatchFieldBase.C │ │ │ │ │ └── mappedPatchFieldBase.H │ │ │ │ ├── mappedFixedInternalValue │ │ │ │ │ ├── mappedFixedInternalValueFvPatchField.C │ │ │ │ │ ├── mappedFixedInternalValueFvPatchField.H │ │ │ │ │ ├── mappedFixedInternalValueFvPatchFields.C │ │ │ │ │ ├── mappedFixedInternalValueFvPatchFields.H │ │ │ │ │ └── mappedFixedInternalValueFvPatchFieldsFwd.H │ │ │ │ ├── mappedFixedValue │ │ │ │ │ ├── mappedFixedValueFvPatchField.C │ │ │ │ │ ├── mappedFixedValueFvPatchField.H │ │ │ │ │ ├── mappedFixedValueFvPatchFields.C │ │ │ │ │ ├── mappedFixedValueFvPatchFields.H │ │ │ │ │ └── mappedFixedValueFvPatchFieldsFwd.H │ │ │ │ ├── mappedFlowRate │ │ │ │ │ ├── mappedFlowRateFvPatchVectorField.C │ │ │ │ │ └── mappedFlowRateFvPatchVectorField.H │ │ │ │ ├── mappedVelocityFluxFixedValue │ │ │ │ │ ├── mappedVelocityFluxFixedValueFvPatchField.C │ │ │ │ │ └── mappedVelocityFluxFixedValueFvPatchField.H │ │ │ │ ├── matchedFlowRateOutletVelocity │ │ │ │ │ ├── matchedFlowRateOutletVelocityFvPatchVectorField.C │ │ │ │ │ └── matchedFlowRateOutletVelocityFvPatchVectorField.H │ │ │ │ ├── movingWallVelocity │ │ │ │ │ ├── movingWallVelocityFvPatchVectorField.C │ │ │ │ │ └── movingWallVelocityFvPatchVectorField.H │ │ │ │ ├── noSlip │ │ │ │ │ ├── noSlipFvPatchVectorField.C │ │ │ │ │ └── noSlipFvPatchVectorField.H │ │ │ │ ├── outletInlet │ │ │ │ │ ├── outletInletFvPatchField.C │ │ │ │ │ ├── outletInletFvPatchField.H │ │ │ │ │ ├── outletInletFvPatchFields.C │ │ │ │ │ ├── outletInletFvPatchFields.H │ │ │ │ │ └── outletInletFvPatchFieldsFwd.H │ │ │ │ ├── outletMappedUniformInlet │ │ │ │ │ ├── outletMappedUniformInletFvPatchField.C │ │ │ │ │ ├── outletMappedUniformInletFvPatchField.H │ │ │ │ │ ├── outletMappedUniformInletFvPatchFields.C │ │ │ │ │ ├── outletMappedUniformInletFvPatchFields.H │ │ │ │ │ └── outletMappedUniformInletFvPatchFieldsFwd.H │ │ │ │ ├── outletPhaseMeanVelocity │ │ │ │ │ ├── outletPhaseMeanVelocityFvPatchVectorField.C │ │ │ │ │ └── outletPhaseMeanVelocityFvPatchVectorField.H │ │ │ │ ├── partialSlip │ │ │ │ │ ├── partialSlipFvPatchField.C │ │ │ │ │ ├── partialSlipFvPatchField.H │ │ │ │ │ ├── partialSlipFvPatchFields.C │ │ │ │ │ ├── partialSlipFvPatchFields.H │ │ │ │ │ └── partialSlipFvPatchFieldsFwd.H │ │ │ │ ├── phaseHydrostaticPressure │ │ │ │ │ ├── phaseHydrostaticPressureFvPatchScalarField.C │ │ │ │ │ └── phaseHydrostaticPressureFvPatchScalarField.H │ │ │ │ ├── plenumPressure │ │ │ │ │ ├── plenumPressureFvPatchScalarField.C │ │ │ │ │ └── plenumPressureFvPatchScalarField.H │ │ │ │ ├── pressure │ │ │ │ │ ├── pressureFvPatchScalarField.C │ │ │ │ │ └── pressureFvPatchScalarField.H │ │ │ │ ├── pressureDirectedInletOutletVelocity │ │ │ │ │ ├── pressureDirectedInletOutletVelocityFvPatchVectorField.C │ │ │ │ │ └── pressureDirectedInletOutletVelocityFvPatchVectorField.H │ │ │ │ ├── pressureDirectedInletVelocity │ │ │ │ │ ├── pressureDirectedInletVelocityFvPatchVectorField.C │ │ │ │ │ └── pressureDirectedInletVelocityFvPatchVectorField.H │ │ │ │ ├── pressureInletOutletParSlipVelocity │ │ │ │ │ ├── pressureInletOutletParSlipVelocityFvPatchVectorField.C │ │ │ │ │ └── pressureInletOutletParSlipVelocityFvPatchVectorField.H │ │ │ │ ├── pressureInletOutletVelocity │ │ │ │ │ ├── pressureInletOutletVelocityFvPatchVectorField.C │ │ │ │ │ └── pressureInletOutletVelocityFvPatchVectorField.H │ │ │ │ ├── pressureInletUniformVelocity │ │ │ │ │ ├── pressureInletUniformVelocityFvPatchVectorField.C │ │ │ │ │ └── pressureInletUniformVelocityFvPatchVectorField.H │ │ │ │ ├── pressureInletVelocity │ │ │ │ │ ├── pressureInletVelocityFvPatchVectorField.C │ │ │ │ │ └── pressureInletVelocityFvPatchVectorField.H │ │ │ │ ├── pressureNormalInletOutletVelocity │ │ │ │ │ ├── pressureNormalInletOutletVelocityFvPatchVectorField.C │ │ │ │ │ └── pressureNormalInletOutletVelocityFvPatchVectorField.H │ │ │ │ ├── prghTotalHydrostaticPressure │ │ │ │ │ ├── prghTotalHydrostaticPressureFvPatchScalarField.C │ │ │ │ │ └── prghTotalHydrostaticPressureFvPatchScalarField.H │ │ │ │ ├── rotatingPressureInletOutletVelocity │ │ │ │ │ ├── rotatingPressureInletOutletVelocityFvPatchVectorField.C │ │ │ │ │ └── rotatingPressureInletOutletVelocityFvPatchVectorField.H │ │ │ │ ├── rotatingTotalPressure │ │ │ │ │ ├── rotatingTotalPressureFvPatchScalarField.C │ │ │ │ │ └── rotatingTotalPressureFvPatchScalarField.H │ │ │ │ ├── rotatingWallVelocity │ │ │ │ │ ├── rotatingWallVelocityFvPatchVectorField.C │ │ │ │ │ └── rotatingWallVelocityFvPatchVectorField.H │ │ │ │ ├── slip │ │ │ │ │ ├── slipFvPatchField.C │ │ │ │ │ ├── slipFvPatchField.H │ │ │ │ │ ├── slipFvPatchFields.C │ │ │ │ │ ├── slipFvPatchFields.H │ │ │ │ │ └── slipFvPatchFieldsFwd.H │ │ │ │ ├── supersonicFreestream │ │ │ │ │ ├── supersonicFreestreamFvPatchVectorField.C │ │ │ │ │ └── supersonicFreestreamFvPatchVectorField.H │ │ │ │ ├── surfaceNormalFixedValue │ │ │ │ │ ├── surfaceNormalFixedValueFvPatchVectorField.C │ │ │ │ │ └── surfaceNormalFixedValueFvPatchVectorField.H │ │ │ │ ├── surfaceNormalUniformFixedValue │ │ │ │ │ ├── surfaceNormalUniformFixedValueFvPatchVectorField.C │ │ │ │ │ └── surfaceNormalUniformFixedValueFvPatchVectorField.H │ │ │ │ ├── swirlFlowRateInletVelocity │ │ │ │ │ ├── swirlFlowRateInletVelocityFvPatchVectorField.C │ │ │ │ │ └── swirlFlowRateInletVelocityFvPatchVectorField.H │ │ │ │ ├── swirlInletVelocity │ │ │ │ │ ├── swirlInletVelocityFvPatchVectorField.C │ │ │ │ │ └── swirlInletVelocityFvPatchVectorField.H │ │ │ │ ├── syringePressure │ │ │ │ │ ├── syringePressureFvPatchScalarField.C │ │ │ │ │ └── syringePressureFvPatchScalarField.H │ │ │ │ ├── timeVaryingMappedFixedValue │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchField.C │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchField.H │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFields.C │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFields.H │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFieldsFwd.H │ │ │ │ │ └── timeVaryingMappedFvPatchField │ │ │ │ │ │ ├── AverageField.C │ │ │ │ │ │ ├── AverageField.H │ │ │ │ │ │ ├── timeVaryingMapped.C │ │ │ │ │ │ ├── timeVaryingMappedFvPatchField.C │ │ │ │ │ │ └── timeVaryingMappedFvPatchField.H │ │ │ │ ├── totalPressure │ │ │ │ │ ├── totalPressureFvPatchScalarField.C │ │ │ │ │ └── totalPressureFvPatchScalarField.H │ │ │ │ ├── totalTemperature │ │ │ │ │ ├── totalTemperatureFvPatchScalarField.C │ │ │ │ │ └── totalTemperatureFvPatchScalarField.H │ │ │ │ ├── translatingWallVelocity │ │ │ │ │ ├── translatingWallVelocityFvPatchVectorField.C │ │ │ │ │ └── translatingWallVelocityFvPatchVectorField.H │ │ │ │ ├── turbulentInlet │ │ │ │ │ ├── turbulentInletFvPatchField.C │ │ │ │ │ ├── turbulentInletFvPatchField.H │ │ │ │ │ ├── turbulentInletFvPatchFields.C │ │ │ │ │ ├── turbulentInletFvPatchFields.H │ │ │ │ │ └── turbulentInletFvPatchFieldsFwd.H │ │ │ │ ├── turbulentIntensityKineticEnergyInlet │ │ │ │ │ ├── turbulentIntensityKineticEnergyInletFvPatchScalarField.C │ │ │ │ │ └── turbulentIntensityKineticEnergyInletFvPatchScalarField.H │ │ │ │ ├── uniformDensityHydrostaticPressure │ │ │ │ │ ├── uniformDensityHydrostaticPressureFvPatchScalarField.C │ │ │ │ │ └── uniformDensityHydrostaticPressureFvPatchScalarField.H │ │ │ │ ├── uniformFixedGradient │ │ │ │ │ ├── uniformFixedGradientFvPatchField.C │ │ │ │ │ ├── uniformFixedGradientFvPatchField.H │ │ │ │ │ ├── uniformFixedGradientFvPatchFields.C │ │ │ │ │ ├── uniformFixedGradientFvPatchFields.H │ │ │ │ │ └── uniformFixedGradientFvPatchFieldsFwd.H │ │ │ │ ├── uniformFixedValue │ │ │ │ │ ├── uniformFixedValueFvPatchField.C │ │ │ │ │ ├── uniformFixedValueFvPatchField.H │ │ │ │ │ ├── uniformFixedValueFvPatchFields.C │ │ │ │ │ ├── uniformFixedValueFvPatchFields.H │ │ │ │ │ └── uniformFixedValueFvPatchFieldsFwd.H │ │ │ │ ├── uniformInletOutlet │ │ │ │ │ ├── uniformInletOutletFvPatchField.C │ │ │ │ │ ├── uniformInletOutletFvPatchField.H │ │ │ │ │ ├── uniformInletOutletFvPatchFields.C │ │ │ │ │ ├── uniformInletOutletFvPatchFields.H │ │ │ │ │ └── uniformInletOutletFvPatchFieldsFwd.H │ │ │ │ ├── uniformJump │ │ │ │ │ ├── uniformJumpFvPatchField.C │ │ │ │ │ ├── uniformJumpFvPatchField.H │ │ │ │ │ ├── uniformJumpFvPatchFields.C │ │ │ │ │ ├── uniformJumpFvPatchFields.H │ │ │ │ │ └── uniformJumpFvPatchFieldsFwd.H │ │ │ │ ├── uniformJumpAMI │ │ │ │ │ ├── uniformJumpAMIFvPatchField.C │ │ │ │ │ ├── uniformJumpAMIFvPatchField.H │ │ │ │ │ ├── uniformJumpAMIFvPatchFields.C │ │ │ │ │ ├── uniformJumpAMIFvPatchFields.H │ │ │ │ │ └── uniformJumpAMIFvPatchFieldsFwd.H │ │ │ │ ├── uniformTotalPressure │ │ │ │ │ ├── uniformTotalPressureFvPatchScalarField.C │ │ │ │ │ └── uniformTotalPressureFvPatchScalarField.H │ │ │ │ ├── variableHeightFlowRate │ │ │ │ │ ├── variableHeightFlowRateFvPatchField.C │ │ │ │ │ └── variableHeightFlowRateFvPatchField.H │ │ │ │ ├── variableHeightFlowRateInletVelocity │ │ │ │ │ ├── variableHeightFlowRateInletVelocityFvPatchVectorField.C │ │ │ │ │ └── variableHeightFlowRateInletVelocityFvPatchVectorField.H │ │ │ │ ├── waveSurfacePressure │ │ │ │ │ ├── waveSurfacePressureFvPatchScalarField.C │ │ │ │ │ └── waveSurfacePressureFvPatchScalarField.H │ │ │ │ └── waveTransmissive │ │ │ │ │ ├── waveTransmissiveFvPatchField.C │ │ │ │ │ ├── waveTransmissiveFvPatchField.H │ │ │ │ │ ├── waveTransmissiveFvPatchFields.C │ │ │ │ │ ├── waveTransmissiveFvPatchFields.H │ │ │ │ │ └── waveTransmissiveFvPatchFieldsFwd.H │ │ │ └── fvPatchField │ │ │ │ ├── directFvPatchFieldMapper.H │ │ │ │ ├── fvPatchField.C │ │ │ │ ├── fvPatchField.H │ │ │ │ ├── fvPatchFieldMapper.H │ │ │ │ ├── fvPatchFieldNew.C │ │ │ │ ├── fvPatchFields.C │ │ │ │ ├── fvPatchFields.H │ │ │ │ └── fvPatchFieldsFwd.H │ │ ├── fvsPatchFields │ │ │ ├── basic │ │ │ │ ├── calculated │ │ │ │ │ ├── calculatedFvsPatchField.C │ │ │ │ │ ├── calculatedFvsPatchField.H │ │ │ │ │ ├── calculatedFvsPatchFields.C │ │ │ │ │ ├── calculatedFvsPatchFields.H │ │ │ │ │ └── calculatedFvsPatchFieldsFwd.H │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledFvsPatchField.C │ │ │ │ │ ├── coupledFvsPatchField.H │ │ │ │ │ ├── coupledFvsPatchFields.C │ │ │ │ │ ├── coupledFvsPatchFields.H │ │ │ │ │ └── coupledFvsPatchFieldsFwd.H │ │ │ │ ├── fixedValue │ │ │ │ │ ├── fixedValueFvsPatchField.C │ │ │ │ │ ├── fixedValueFvsPatchField.H │ │ │ │ │ ├── fixedValueFvsPatchFields.C │ │ │ │ │ ├── fixedValueFvsPatchFields.H │ │ │ │ │ └── fixedValueFvsPatchFieldsFwd.H │ │ │ │ └── sliced │ │ │ │ │ ├── slicedFvsPatchField.C │ │ │ │ │ ├── slicedFvsPatchField.H │ │ │ │ │ ├── slicedFvsPatchFields.C │ │ │ │ │ ├── slicedFvsPatchFields.H │ │ │ │ │ └── slicedFvsPatchFieldsFwd.H │ │ │ ├── constraint │ │ │ │ ├── cyclic │ │ │ │ │ ├── cyclicFvsPatchField.C │ │ │ │ │ ├── cyclicFvsPatchField.H │ │ │ │ │ ├── cyclicFvsPatchFields.C │ │ │ │ │ ├── cyclicFvsPatchFields.H │ │ │ │ │ └── cyclicFvsPatchFieldsFwd.H │ │ │ │ ├── cyclicACMI │ │ │ │ │ ├── cyclicACMIFvsPatchField.H │ │ │ │ │ ├── cyclicACMIFvsPatchFields.C │ │ │ │ │ ├── cyclicACMIFvsPatchFields.H │ │ │ │ │ └── cyclicACMIFvsPatchFieldsFwd.H │ │ │ │ ├── cyclicAMI │ │ │ │ │ ├── cyclicAMIFvsPatchField.C │ │ │ │ │ ├── cyclicAMIFvsPatchField.H │ │ │ │ │ ├── cyclicAMIFvsPatchFields.C │ │ │ │ │ ├── cyclicAMIFvsPatchFields.H │ │ │ │ │ └── cyclicAMIFvsPatchFieldsFwd.H │ │ │ │ ├── cyclicRepeatAMI │ │ │ │ │ ├── cyclicRepeatAMIFvsPatchField.H │ │ │ │ │ ├── cyclicRepeatAMIFvsPatchFields.C │ │ │ │ │ ├── cyclicRepeatAMIFvsPatchFields.H │ │ │ │ │ └── cyclicRepeatAMIFvsPatchFieldsFwd.H │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvsPatchField.C │ │ │ │ │ ├── cyclicSlipFvsPatchField.H │ │ │ │ │ ├── cyclicSlipFvsPatchFields.C │ │ │ │ │ ├── cyclicSlipFvsPatchFields.H │ │ │ │ │ └── cyclicSlipFvsPatchFieldsFwd.H │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvsPatchField.C │ │ │ │ │ ├── emptyFvsPatchField.H │ │ │ │ │ ├── emptyFvsPatchFields.C │ │ │ │ │ ├── emptyFvsPatchFields.H │ │ │ │ │ └── emptyFvsPatchFieldsFwd.H │ │ │ │ ├── internal │ │ │ │ │ ├── internalFvsPatchField.C │ │ │ │ │ ├── internalFvsPatchField.H │ │ │ │ │ ├── internalFvsPatchFields.C │ │ │ │ │ ├── internalFvsPatchFields.H │ │ │ │ │ └── internalFvsPatchFieldsFwd.H │ │ │ │ ├── processor │ │ │ │ │ ├── processorFvsPatchField.C │ │ │ │ │ ├── processorFvsPatchField.H │ │ │ │ │ ├── processorFvsPatchFields.C │ │ │ │ │ ├── processorFvsPatchFields.H │ │ │ │ │ └── processorFvsPatchFieldsFwd.H │ │ │ │ ├── processorCyclic │ │ │ │ │ ├── processorCyclicFvsPatchField.C │ │ │ │ │ ├── processorCyclicFvsPatchField.H │ │ │ │ │ ├── processorCyclicFvsPatchFields.C │ │ │ │ │ ├── processorCyclicFvsPatchFields.H │ │ │ │ │ └── processorCyclicFvsPatchFieldsFwd.H │ │ │ │ ├── symmetry │ │ │ │ │ ├── symmetryFvsPatchField.C │ │ │ │ │ ├── symmetryFvsPatchField.H │ │ │ │ │ ├── symmetryFvsPatchFields.C │ │ │ │ │ ├── symmetryFvsPatchFields.H │ │ │ │ │ └── symmetryFvsPatchFieldsFwd.H │ │ │ │ ├── symmetryPlane │ │ │ │ │ ├── symmetryPlaneFvsPatchField.C │ │ │ │ │ ├── symmetryPlaneFvsPatchField.H │ │ │ │ │ ├── symmetryPlaneFvsPatchFields.C │ │ │ │ │ ├── symmetryPlaneFvsPatchFields.H │ │ │ │ │ └── symmetryPlaneFvsPatchFieldsFwd.H │ │ │ │ └── wedge │ │ │ │ │ ├── wedgeFvsPatchField.C │ │ │ │ │ ├── wedgeFvsPatchField.H │ │ │ │ │ ├── wedgeFvsPatchFields.C │ │ │ │ │ ├── wedgeFvsPatchFields.H │ │ │ │ │ └── wedgeFvsPatchFieldsFwd.H │ │ │ └── fvsPatchField │ │ │ │ ├── fvsPatchField.C │ │ │ │ ├── fvsPatchField.H │ │ │ │ ├── fvsPatchFieldNew.C │ │ │ │ ├── fvsPatchFields.C │ │ │ │ ├── fvsPatchFields.H │ │ │ │ └── fvsPatchFieldsFwd.H │ │ ├── surfaceFields │ │ │ ├── slicedSurfaceFields.H │ │ │ ├── slicedSurfaceFieldsFwd.H │ │ │ ├── surfaceFields.C │ │ │ ├── surfaceFields.H │ │ │ └── surfaceFieldsFwd.H │ │ └── volFields │ │ │ ├── slicedVolFields.H │ │ │ ├── slicedVolFieldsFwd.H │ │ │ ├── volFields.C │ │ │ ├── volFields.H │ │ │ ├── volFieldsFwd.H │ │ │ └── volFieldsI.H │ ├── finiteVolume │ │ ├── convectionSchemes │ │ │ ├── boundedConvectionScheme │ │ │ │ ├── boundedConvectionScheme.C │ │ │ │ ├── boundedConvectionScheme.H │ │ │ │ └── boundedConvectionSchemes.C │ │ │ ├── convectionScheme │ │ │ │ ├── convectionScheme.C │ │ │ │ ├── convectionScheme.H │ │ │ │ └── convectionSchemes.C │ │ │ ├── gaussConvectionScheme │ │ │ │ ├── gaussConvectionScheme.C │ │ │ │ ├── gaussConvectionScheme.H │ │ │ │ └── gaussConvectionSchemes.C │ │ │ └── multivariateGaussConvectionScheme │ │ │ │ ├── multivariateGaussConvectionScheme.C │ │ │ │ ├── multivariateGaussConvectionScheme.H │ │ │ │ └── multivariateGaussConvectionSchemes.C │ │ ├── d2dt2Schemes │ │ │ ├── EulerD2dt2Scheme │ │ │ │ ├── EulerD2dt2Scheme.C │ │ │ │ ├── EulerD2dt2Scheme.H │ │ │ │ └── EulerD2dt2Schemes.C │ │ │ ├── d2dt2Scheme │ │ │ │ ├── d2dt2Scheme.C │ │ │ │ ├── d2dt2Scheme.H │ │ │ │ └── d2dt2Schemes.C │ │ │ └── steadyStateD2dt2Scheme │ │ │ │ ├── steadyStateD2dt2Scheme.C │ │ │ │ ├── steadyStateD2dt2Scheme.H │ │ │ │ └── steadyStateD2dt2Schemes.C │ │ ├── ddtSchemes │ │ │ ├── CoEulerDdtScheme │ │ │ │ ├── CoEulerDdtScheme.C │ │ │ │ ├── CoEulerDdtScheme.H │ │ │ │ └── CoEulerDdtSchemes.C │ │ │ ├── CrankNicolsonDdtScheme │ │ │ │ ├── CrankNicolsonDdtScheme.C │ │ │ │ ├── CrankNicolsonDdtScheme.H │ │ │ │ └── CrankNicolsonDdtSchemes.C │ │ │ ├── EulerDdtScheme │ │ │ │ ├── EulerDdtScheme.C │ │ │ │ ├── EulerDdtScheme.H │ │ │ │ └── EulerDdtSchemes.C │ │ │ ├── SLTSDdtScheme │ │ │ │ ├── SLTSDdtScheme.C │ │ │ │ ├── SLTSDdtScheme.H │ │ │ │ └── SLTSDdtSchemes.C │ │ │ ├── backwardDdtScheme │ │ │ │ ├── backwardDdtScheme.C │ │ │ │ ├── backwardDdtScheme.H │ │ │ │ └── backwardDdtSchemes.C │ │ │ ├── boundedDdtScheme │ │ │ │ ├── boundedDdtScheme.C │ │ │ │ ├── boundedDdtScheme.H │ │ │ │ └── boundedDdtSchemes.C │ │ │ ├── ddtScheme │ │ │ │ ├── ddtScheme.C │ │ │ │ ├── ddtScheme.H │ │ │ │ └── ddtSchemes.C │ │ │ ├── localEulerDdtScheme │ │ │ │ ├── localEulerDdt.C │ │ │ │ ├── localEulerDdtScheme.C │ │ │ │ ├── localEulerDdtScheme.H │ │ │ │ └── localEulerDdtSchemes.C │ │ │ └── steadyStateDdtScheme │ │ │ │ ├── steadyStateDdtScheme.C │ │ │ │ ├── steadyStateDdtScheme.H │ │ │ │ └── steadyStateDdtSchemes.C │ │ ├── divSchemes │ │ │ ├── divScheme │ │ │ │ ├── divScheme.C │ │ │ │ ├── divScheme.H │ │ │ │ └── divSchemes.C │ │ │ └── gaussDivScheme │ │ │ │ ├── gaussDivScheme.C │ │ │ │ ├── gaussDivScheme.H │ │ │ │ └── gaussDivSchemes.C │ │ ├── fv │ │ │ ├── fv.C │ │ │ └── fv.H │ │ ├── fvSchemes │ │ │ ├── fvSchemes.C │ │ │ └── fvSchemes.H │ │ ├── fvSolution │ │ │ └── fvSolution.H │ │ ├── fvc │ │ │ ├── fvc.H │ │ │ ├── fvcAverage.C │ │ │ ├── fvcAverage.H │ │ │ ├── fvcCellReduce.C │ │ │ ├── fvcCellReduce.H │ │ │ ├── fvcCurl.C │ │ │ ├── fvcCurl.H │ │ │ ├── fvcD2dt2.C │ │ │ ├── fvcD2dt2.H │ │ │ ├── fvcDDt.C │ │ │ ├── fvcDDt.H │ │ │ ├── fvcDdt.C │ │ │ ├── fvcDdt.H │ │ │ ├── fvcDiv.C │ │ │ ├── fvcDiv.H │ │ │ ├── fvcFlux.C │ │ │ ├── fvcFlux.H │ │ │ ├── fvcFluxTemplates.C │ │ │ ├── fvcGrad.C │ │ │ ├── fvcGrad.H │ │ │ ├── fvcLaplacian.C │ │ │ ├── fvcLaplacian.H │ │ │ ├── fvcMagSqrGradGrad.C │ │ │ ├── fvcMagSqrGradGrad.H │ │ │ ├── fvcMeshPhi.C │ │ │ ├── fvcMeshPhi.H │ │ │ ├── fvcReconstruct.C │ │ │ ├── fvcReconstruct.H │ │ │ ├── fvcReconstructMag.C │ │ │ ├── fvcSimpleReconstruct.C │ │ │ ├── fvcSmooth │ │ │ │ ├── fvcSmooth.C │ │ │ │ ├── fvcSmooth.H │ │ │ │ ├── smoothData.H │ │ │ │ ├── smoothDataI.H │ │ │ │ ├── sweepData.H │ │ │ │ └── sweepDataI.H │ │ │ ├── fvcSnGrad.C │ │ │ ├── fvcSnGrad.H │ │ │ ├── fvcSup.C │ │ │ ├── fvcSup.H │ │ │ ├── fvcSurfaceIntegrate.C │ │ │ ├── fvcSurfaceIntegrate.H │ │ │ ├── fvcVolumeIntegrate.C │ │ │ └── fvcVolumeIntegrate.H │ │ ├── fvm │ │ │ ├── fvm.H │ │ │ ├── fvmD2dt2.C │ │ │ ├── fvmD2dt2.H │ │ │ ├── fvmDdt.C │ │ │ ├── fvmDdt.H │ │ │ ├── fvmDiv.C │ │ │ ├── fvmDiv.H │ │ │ ├── fvmLaplacian.C │ │ │ ├── fvmLaplacian.H │ │ │ ├── fvmSup.C │ │ │ └── fvmSup.H │ │ ├── gradSchemes │ │ │ ├── LeastSquaresGrad │ │ │ │ ├── LeastSquaresGrad.C │ │ │ │ ├── LeastSquaresGrad.H │ │ │ │ ├── LeastSquaresGrads.C │ │ │ │ ├── LeastSquaresVectors.C │ │ │ │ └── LeastSquaresVectors.H │ │ │ ├── fourthGrad │ │ │ │ ├── fourthGrad.C │ │ │ │ ├── fourthGrad.H │ │ │ │ └── fourthGrads.C │ │ │ ├── gaussGrad │ │ │ │ ├── gaussGrad.C │ │ │ │ ├── gaussGrad.H │ │ │ │ └── gaussGrads.C │ │ │ ├── gradScheme │ │ │ │ ├── gradScheme.C │ │ │ │ ├── gradScheme.H │ │ │ │ └── gradSchemes.C │ │ │ ├── leastSquaresGrad │ │ │ │ ├── invDistLeastSquaresVectors.C │ │ │ │ ├── leastSquaresGrad.C │ │ │ │ ├── leastSquaresGrad.H │ │ │ │ ├── leastSquaresGrads.C │ │ │ │ ├── leastSquaresVectors.C │ │ │ │ ├── leastSquaresVectors.H │ │ │ │ └── unweightedLeastSquaresVectors.C │ │ │ └── limitedGradSchemes │ │ │ │ ├── cellLimitedGrad │ │ │ │ ├── cellLimitedGrad.C │ │ │ │ ├── cellLimitedGrad.H │ │ │ │ ├── cellLimitedGrads.C │ │ │ │ └── gradientLimiters │ │ │ │ │ ├── VenkatakrishnanGradientLimiter.H │ │ │ │ │ ├── cubicGradientLimiter.H │ │ │ │ │ └── minmodGradientLimiter.H │ │ │ │ ├── cellMDLimitedGrad │ │ │ │ ├── cellMDLimitedGrad.H │ │ │ │ └── cellMDLimitedGrads.C │ │ │ │ ├── faceLimitedGrad │ │ │ │ ├── faceLimitedGrad.H │ │ │ │ └── faceLimitedGrads.C │ │ │ │ └── faceMDLimitedGrad │ │ │ │ ├── faceMDLimitedGrad.H │ │ │ │ └── faceMDLimitedGrads.C │ │ ├── laplacianSchemes │ │ │ ├── gaussLaplacianScheme │ │ │ │ ├── gaussLaplacianScheme.C │ │ │ │ ├── gaussLaplacianScheme.H │ │ │ │ └── gaussLaplacianSchemes.C │ │ │ └── laplacianScheme │ │ │ │ ├── laplacianScheme.C │ │ │ │ ├── laplacianScheme.H │ │ │ │ └── laplacianSchemes.C │ │ └── snGradSchemes │ │ │ ├── CentredFitSnGrad │ │ │ ├── CentredFitSnGradData.C │ │ │ ├── CentredFitSnGradData.H │ │ │ └── CentredFitSnGradScheme.H │ │ │ ├── correctedSnGrad │ │ │ ├── correctedSnGrad.C │ │ │ ├── correctedSnGrad.H │ │ │ └── correctedSnGrads.C │ │ │ ├── faceCorrectedSnGrad │ │ │ ├── faceCorrectedSnGrad.C │ │ │ ├── faceCorrectedSnGrad.H │ │ │ └── faceCorrectedSnGrads.C │ │ │ ├── limitedSnGrad │ │ │ ├── limitedSnGrad.C │ │ │ ├── limitedSnGrad.H │ │ │ └── limitedSnGrads.C │ │ │ ├── linearFitSnGrad │ │ │ └── linearFitSnGrads.C │ │ │ ├── orthogonalSnGrad │ │ │ ├── orthogonalSnGrad.C │ │ │ ├── orthogonalSnGrad.H │ │ │ └── orthogonalSnGrads.C │ │ │ ├── quadraticFitSnGrad │ │ │ └── quadraticFitSnGrads.C │ │ │ ├── snGradScheme │ │ │ ├── snGradScheme.C │ │ │ ├── snGradScheme.H │ │ │ └── snGradSchemes.C │ │ │ └── uncorrectedSnGrad │ │ │ ├── uncorrectedSnGrad.C │ │ │ ├── uncorrectedSnGrad.H │ │ │ └── uncorrectedSnGrads.C │ ├── functionObjects │ │ ├── fvMeshFunctionObject │ │ │ ├── fvMeshFunctionObject.C │ │ │ └── fvMeshFunctionObject.H │ │ └── volRegion │ │ │ ├── volRegion.C │ │ │ ├── volRegion.H │ │ │ └── volRegionI.H │ ├── fvMatrices │ │ ├── fvMatrices.C │ │ ├── fvMatrices.H │ │ ├── fvMatricesFwd.H │ │ ├── fvMatrix │ │ │ ├── fvMatrix.C │ │ │ ├── fvMatrix.H │ │ │ └── fvMatrixSolve.C │ │ ├── fvScalarMatrix │ │ │ ├── fvScalarMatrix.C │ │ │ └── fvScalarMatrix.H │ │ └── solvers │ │ │ ├── GAMGSymSolver │ │ │ └── GAMGAgglomerations │ │ │ │ └── faceAreaPairGAMGAgglomeration │ │ │ │ ├── faceAreaPairGAMGAgglomeration.C │ │ │ │ └── faceAreaPairGAMGAgglomeration.H │ │ │ └── MULES │ │ │ ├── CMULES.H │ │ │ ├── CMULESTemplates.C │ │ │ ├── MULES.C │ │ │ ├── MULES.H │ │ │ └── MULESTemplates.C │ ├── fvMesh │ │ ├── extendedStencil │ │ │ ├── cellToCell │ │ │ │ ├── MeshObjects │ │ │ │ │ ├── centredCECCellToCellStencilObject.C │ │ │ │ │ ├── centredCECCellToCellStencilObject.H │ │ │ │ │ ├── centredCFCCellToCellStencilObject.C │ │ │ │ │ ├── centredCFCCellToCellStencilObject.H │ │ │ │ │ ├── centredCPCCellToCellStencilObject.C │ │ │ │ │ └── centredCPCCellToCellStencilObject.H │ │ │ │ ├── extendedCellToCellStencil.C │ │ │ │ ├── extendedCellToCellStencil.H │ │ │ │ ├── extendedCellToCellStencilTemplates.C │ │ │ │ ├── extendedCentredCellToCellStencil.C │ │ │ │ ├── extendedCentredCellToCellStencil.H │ │ │ │ └── globalIndexStencils │ │ │ │ │ ├── CECCellToCellStencil.C │ │ │ │ │ ├── CECCellToCellStencil.H │ │ │ │ │ ├── CFCCellToCellStencil.C │ │ │ │ │ ├── CFCCellToCellStencil.H │ │ │ │ │ ├── CPCCellToCellStencil.C │ │ │ │ │ ├── CPCCellToCellStencil.H │ │ │ │ │ ├── cellToCellStencil.C │ │ │ │ │ └── cellToCellStencil.H │ │ │ ├── cellToFace │ │ │ │ ├── MeshObjects │ │ │ │ │ ├── centredCECCellToFaceStencilObject.C │ │ │ │ │ ├── centredCECCellToFaceStencilObject.H │ │ │ │ │ ├── centredCFCCellToFaceStencilObject.C │ │ │ │ │ ├── centredCFCCellToFaceStencilObject.H │ │ │ │ │ ├── centredCPCCellToFaceStencilObject.C │ │ │ │ │ ├── centredCPCCellToFaceStencilObject.H │ │ │ │ │ ├── centredFECCellToFaceStencilObject.C │ │ │ │ │ ├── centredFECCellToFaceStencilObject.H │ │ │ │ │ ├── pureUpwindCFCCellToFaceStencilObject.C │ │ │ │ │ ├── pureUpwindCFCCellToFaceStencilObject.H │ │ │ │ │ ├── upwindCECCellToFaceStencilObject.C │ │ │ │ │ ├── upwindCECCellToFaceStencilObject.H │ │ │ │ │ ├── upwindCFCCellToFaceStencilObject.C │ │ │ │ │ ├── upwindCFCCellToFaceStencilObject.H │ │ │ │ │ ├── upwindCPCCellToFaceStencilObject.C │ │ │ │ │ ├── upwindCPCCellToFaceStencilObject.H │ │ │ │ │ ├── upwindFECCellToFaceStencilObject.C │ │ │ │ │ └── upwindFECCellToFaceStencilObject.H │ │ │ │ ├── extendedCellToFaceStencil.C │ │ │ │ ├── extendedCellToFaceStencil.H │ │ │ │ ├── extendedCellToFaceStencilTemplates.C │ │ │ │ ├── extendedCentredCellToFaceStencil.C │ │ │ │ ├── extendedCentredCellToFaceStencil.H │ │ │ │ ├── extendedUpwindCellToFaceStencil.C │ │ │ │ ├── extendedUpwindCellToFaceStencil.H │ │ │ │ ├── extendedUpwindCellToFaceStencilTemplates.C │ │ │ │ └── globalIndexStencils │ │ │ │ │ ├── CECCellToFaceStencil.C │ │ │ │ │ ├── CECCellToFaceStencil.H │ │ │ │ │ ├── CFCCellToFaceStencil.C │ │ │ │ │ ├── CFCCellToFaceStencil.H │ │ │ │ │ ├── CPCCellToFaceStencil.C │ │ │ │ │ ├── CPCCellToFaceStencil.H │ │ │ │ │ ├── FECCellToFaceStencil.C │ │ │ │ │ ├── FECCellToFaceStencil.H │ │ │ │ │ ├── cellToFaceStencil.C │ │ │ │ │ └── cellToFaceStencil.H │ │ │ └── faceToCell │ │ │ │ ├── MeshObjects │ │ │ │ ├── centredCFCFaceToCellStencilObject.C │ │ │ │ └── centredCFCFaceToCellStencilObject.H │ │ │ │ ├── extendedCentredFaceToCellStencil.C │ │ │ │ ├── extendedCentredFaceToCellStencil.H │ │ │ │ ├── extendedFaceToCellStencil.C │ │ │ │ ├── extendedFaceToCellStencil.H │ │ │ │ ├── extendedFaceToCellStencilTemplates.C │ │ │ │ └── globalIndexStencils │ │ │ │ ├── CFCFaceToCellStencil.C │ │ │ │ ├── CFCFaceToCellStencil.H │ │ │ │ ├── faceToCellStencil.C │ │ │ │ └── faceToCellStencil.H │ │ ├── fvBoundaryMesh │ │ │ ├── fvBoundaryMesh.C │ │ │ └── fvBoundaryMesh.H │ │ ├── fvCellSet │ │ │ ├── fvCellSet.C │ │ │ ├── fvCellSet.H │ │ │ └── fvCellSetI.H │ │ ├── fvMesh.C │ │ ├── fvMesh.H │ │ ├── fvMeshGeometry.C │ │ ├── fvMeshLduAddressing.H │ │ ├── fvMeshMapper │ │ │ ├── fvBoundaryMeshMapper.H │ │ │ ├── fvMeshMapper.H │ │ │ ├── fvPatchMapper.C │ │ │ ├── fvPatchMapper.H │ │ │ ├── fvSurfaceMapper.C │ │ │ └── fvSurfaceMapper.H │ │ ├── fvMeshTemplates.C │ │ ├── fvPatches │ │ │ ├── basic │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledFvPatch.C │ │ │ │ │ └── coupledFvPatch.H │ │ │ │ └── generic │ │ │ │ │ ├── genericFvPatch.C │ │ │ │ │ └── genericFvPatch.H │ │ │ ├── constraint │ │ │ │ ├── cyclic │ │ │ │ │ ├── cyclicFvPatch.C │ │ │ │ │ └── cyclicFvPatch.H │ │ │ │ ├── cyclicACMI │ │ │ │ │ ├── cyclicACMIFvPatch.C │ │ │ │ │ └── cyclicACMIFvPatch.H │ │ │ │ ├── cyclicAMI │ │ │ │ │ ├── cyclicAMIFvPatch.C │ │ │ │ │ └── cyclicAMIFvPatch.H │ │ │ │ ├── cyclicRepeatAMI │ │ │ │ │ ├── cyclicRepeatAMIFvPatch.C │ │ │ │ │ └── cyclicRepeatAMIFvPatch.H │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvPatch.C │ │ │ │ │ └── cyclicSlipFvPatch.H │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvPatch.C │ │ │ │ │ └── emptyFvPatch.H │ │ │ │ ├── internal │ │ │ │ │ ├── internalFvPatch.C │ │ │ │ │ └── internalFvPatch.H │ │ │ │ ├── processor │ │ │ │ │ ├── processorFvPatch.C │ │ │ │ │ └── processorFvPatch.H │ │ │ │ ├── processorCyclic │ │ │ │ │ ├── processorCyclicFvPatch.C │ │ │ │ │ └── processorCyclicFvPatch.H │ │ │ │ ├── symmetry │ │ │ │ │ ├── symmetryFvPatch.C │ │ │ │ │ └── symmetryFvPatch.H │ │ │ │ ├── symmetryPlane │ │ │ │ │ ├── symmetryPlaneFvPatch.C │ │ │ │ │ └── symmetryPlaneFvPatch.H │ │ │ │ └── wedge │ │ │ │ │ ├── wedgeFvPatch.C │ │ │ │ │ └── wedgeFvPatch.H │ │ │ ├── derived │ │ │ │ ├── mapped │ │ │ │ │ ├── mappedFvPatch.C │ │ │ │ │ ├── mappedFvPatch.H │ │ │ │ │ ├── mappedWallFvPatch.C │ │ │ │ │ └── mappedWallFvPatch.H │ │ │ │ ├── regionCoupled │ │ │ │ │ ├── regionCoupledBaseFvPatch.C │ │ │ │ │ ├── regionCoupledBaseFvPatch.H │ │ │ │ │ ├── regionCoupledFvPatch.C │ │ │ │ │ ├── regionCoupledFvPatch.H │ │ │ │ │ ├── regionCoupledWallFvPatch.C │ │ │ │ │ └── regionCoupledWallFvPatch.H │ │ │ │ └── wall │ │ │ │ │ ├── wallFvPatch.C │ │ │ │ │ └── wallFvPatch.H │ │ │ └── fvPatch │ │ │ │ ├── fvPatch.C │ │ │ │ ├── fvPatch.H │ │ │ │ ├── fvPatchList.H │ │ │ │ ├── fvPatchNew.C │ │ │ │ └── fvPatchTemplates.C │ │ ├── singleCellFvMesh │ │ │ ├── singleCellFvMesh.C │ │ │ ├── singleCellFvMesh.H │ │ │ └── singleCellFvMeshInterpolate.C │ │ └── wallDist │ │ │ ├── nearWallDist │ │ │ ├── nearWallDist.C │ │ │ ├── nearWallDist.H │ │ │ ├── nearWallDistNoSearch.C │ │ │ └── nearWallDistNoSearch.H │ │ │ ├── patchDistMethods │ │ │ ├── Poisson │ │ │ │ ├── PoissonPatchDistMethod.C │ │ │ │ └── PoissonPatchDistMethod.H │ │ │ ├── advectionDiffusion │ │ │ │ ├── advectionDiffusionPatchDistMethod.C │ │ │ │ └── advectionDiffusionPatchDistMethod.H │ │ │ ├── meshWave │ │ │ │ ├── meshWavePatchDistMethod.C │ │ │ │ ├── meshWavePatchDistMethod.H │ │ │ │ └── wallDistData │ │ │ │ │ ├── wallDistData.C │ │ │ │ │ └── wallDistData.H │ │ │ └── patchDistMethod │ │ │ │ ├── patchDistMethod.C │ │ │ │ ├── patchDistMethod.H │ │ │ │ └── patchDistMethodTemplates.C │ │ │ ├── wallDist │ │ │ ├── wallDist.C │ │ │ └── wallDist.H │ │ │ └── wallPointYPlus │ │ │ ├── wallPointYPlus.C │ │ │ ├── wallPointYPlus.H │ │ │ └── wallPointYPlusI.H │ ├── interpolation │ │ ├── interpolation │ │ │ ├── interpolation │ │ │ │ ├── interpolation.C │ │ │ │ ├── interpolation.H │ │ │ │ └── interpolations.C │ │ │ ├── interpolationCell │ │ │ │ ├── interpolationCell.C │ │ │ │ ├── interpolationCell.H │ │ │ │ └── makeInterpolationCell.C │ │ │ ├── interpolationCellPatchConstrained │ │ │ │ ├── interpolationCellPatchConstrained.C │ │ │ │ ├── interpolationCellPatchConstrained.H │ │ │ │ └── makeInterpolationCellPatchConstrained.C │ │ │ ├── interpolationCellPoint │ │ │ │ ├── cellPointWeight │ │ │ │ │ ├── cellPointWeight.C │ │ │ │ │ └── cellPointWeight.H │ │ │ │ ├── interpolationCellPoint.C │ │ │ │ ├── interpolationCellPoint.H │ │ │ │ ├── interpolationCellPointI.H │ │ │ │ └── makeInterpolationCellPoint.C │ │ │ ├── interpolationCellPointFace │ │ │ │ ├── findCellPointFaceTet.H │ │ │ │ ├── findCellPointFaceTriangle.H │ │ │ │ ├── interpolationCellPointFace.C │ │ │ │ ├── interpolationCellPointFace.H │ │ │ │ └── makeInterpolationCellPointFace.C │ │ │ ├── interpolationCellPointWallModified │ │ │ │ ├── interpolationCellPointWallModified.C │ │ │ │ ├── interpolationCellPointWallModified.H │ │ │ │ └── makeInterpolationCellPointWallModified.C │ │ │ └── interpolationPointMVC │ │ │ │ ├── interpolationPointMVC.C │ │ │ │ ├── interpolationPointMVC.H │ │ │ │ ├── interpolationPointMVCI.H │ │ │ │ ├── makeInterpolationPointMVC.C │ │ │ │ ├── pointMVCWeight.C │ │ │ │ ├── pointMVCWeight.H │ │ │ │ └── pointMVCWeightI.H │ │ ├── mapping │ │ │ └── fvFieldMappers │ │ │ │ ├── MapFvFields.H │ │ │ │ ├── MapFvSurfaceField.H │ │ │ │ └── MapFvVolField.H │ │ ├── surfaceInterpolation │ │ │ ├── blendedSchemeBase │ │ │ │ ├── blendedSchemeBase.H │ │ │ │ └── blendedSchemeBaseName.C │ │ │ ├── limitedSchemes │ │ │ │ ├── Gamma │ │ │ │ │ ├── Gamma.C │ │ │ │ │ └── Gamma.H │ │ │ │ ├── Limited │ │ │ │ │ └── Limited.H │ │ │ │ ├── Limited01 │ │ │ │ │ └── Limited01.H │ │ │ │ ├── LimitedScheme │ │ │ │ │ ├── LimitFuncs.C │ │ │ │ │ ├── LimitFuncs.H │ │ │ │ │ ├── LimitedScheme.C │ │ │ │ │ ├── LimitedScheme.H │ │ │ │ │ ├── NVDTVD.H │ │ │ │ │ └── NVDVTVDV.H │ │ │ │ ├── MUSCL │ │ │ │ │ ├── MUSCL.C │ │ │ │ │ └── MUSCL.H │ │ │ │ ├── Minmod │ │ │ │ │ ├── Minmod.C │ │ │ │ │ └── Minmod.H │ │ │ │ ├── OSPRE │ │ │ │ │ ├── OSPRE.C │ │ │ │ │ └── OSPRE.H │ │ │ │ ├── Phi │ │ │ │ │ ├── Phi.C │ │ │ │ │ └── Phi.H │ │ │ │ ├── PhiScheme │ │ │ │ │ ├── PhiScheme.C │ │ │ │ │ └── PhiScheme.H │ │ │ │ ├── QUICK │ │ │ │ │ ├── QUICK.C │ │ │ │ │ ├── QUICK.H │ │ │ │ │ └── QUICKV.H │ │ │ │ ├── SFCD │ │ │ │ │ ├── SFCD.C │ │ │ │ │ └── SFCD.H │ │ │ │ ├── SuperBee │ │ │ │ │ ├── SuperBee.C │ │ │ │ │ └── SuperBee.H │ │ │ │ ├── UMIST │ │ │ │ │ ├── UMIST.C │ │ │ │ │ └── UMIST.H │ │ │ │ ├── blended │ │ │ │ │ ├── blended.C │ │ │ │ │ └── blended.H │ │ │ │ ├── filteredLinear │ │ │ │ │ ├── filteredLinear.C │ │ │ │ │ └── filteredLinear.H │ │ │ │ ├── filteredLinear2 │ │ │ │ │ ├── filteredLinear2.C │ │ │ │ │ ├── filteredLinear2.H │ │ │ │ │ └── filteredLinear2V.H │ │ │ │ ├── filteredLinear3 │ │ │ │ │ ├── filteredLinear3.C │ │ │ │ │ ├── filteredLinear3.H │ │ │ │ │ └── filteredLinear3V.H │ │ │ │ ├── limitWith │ │ │ │ │ ├── limitWith.C │ │ │ │ │ └── limitWith.H │ │ │ │ ├── limitedCubic │ │ │ │ │ ├── limitedCubic.C │ │ │ │ │ ├── limitedCubic.H │ │ │ │ │ └── limitedCubicV.H │ │ │ │ ├── limitedLinear │ │ │ │ │ ├── limitedLinear.C │ │ │ │ │ └── limitedLinear.H │ │ │ │ ├── limitedSurfaceInterpolationScheme │ │ │ │ │ ├── limitedSurfaceInterpolationScheme.C │ │ │ │ │ ├── limitedSurfaceInterpolationScheme.H │ │ │ │ │ └── limitedSurfaceInterpolationSchemes.C │ │ │ │ ├── upwind │ │ │ │ │ ├── upwind.C │ │ │ │ │ └── upwind.H │ │ │ │ ├── vanAlbada │ │ │ │ │ ├── vanAlbada.C │ │ │ │ │ └── vanAlbada.H │ │ │ │ └── vanLeer │ │ │ │ │ ├── vanLeer.C │ │ │ │ │ └── vanLeer.H │ │ │ ├── multivariateSchemes │ │ │ │ ├── Gamma │ │ │ │ │ └── multivariateGamma.C │ │ │ │ ├── MUSCL │ │ │ │ │ └── multivariateMUSCL.C │ │ │ │ ├── Minmod │ │ │ │ │ └── multivariateMinmod.C │ │ │ │ ├── SuperBee │ │ │ │ │ └── multivariateSuperBee.C │ │ │ │ ├── limitedCubic │ │ │ │ │ └── multivariateLimitedCubic.C │ │ │ │ ├── limitedLinear │ │ │ │ │ └── multivariateLimitedLinear.C │ │ │ │ ├── multivariateIndependentScheme │ │ │ │ │ ├── multivariateIndependentScheme.C │ │ │ │ │ ├── multivariateIndependentScheme.H │ │ │ │ │ └── multivariateIndependentSchemes.C │ │ │ │ ├── multivariateScheme │ │ │ │ │ ├── multivariateScheme.C │ │ │ │ │ └── multivariateScheme.H │ │ │ │ ├── multivariateSelectionScheme │ │ │ │ │ ├── multivariateSelectionScheme.C │ │ │ │ │ ├── multivariateSelectionScheme.H │ │ │ │ │ └── multivariateSelectionSchemes.C │ │ │ │ ├── multivariateSurfaceInterpolationScheme │ │ │ │ │ ├── multivariateSurfaceInterpolationScheme.C │ │ │ │ │ ├── multivariateSurfaceInterpolationScheme.H │ │ │ │ │ └── multivariateSurfaceInterpolationSchemes.C │ │ │ │ ├── upwind │ │ │ │ │ ├── multivariateUpwind.C │ │ │ │ │ └── multivariateUpwind.H │ │ │ │ └── vanLeer │ │ │ │ │ └── multivariateVanLeer.C │ │ │ ├── schemes │ │ │ │ ├── CentredFitScheme │ │ │ │ │ ├── CentredFitData.C │ │ │ │ │ ├── CentredFitData.H │ │ │ │ │ └── CentredFitScheme.H │ │ │ │ ├── CoBlended │ │ │ │ │ ├── CoBlended.C │ │ │ │ │ └── CoBlended.H │ │ │ │ ├── FitData │ │ │ │ │ ├── FitData.C │ │ │ │ │ └── FitData.H │ │ │ │ ├── LUST │ │ │ │ │ ├── LUST.C │ │ │ │ │ └── LUST.H │ │ │ │ ├── PureUpwindFitScheme │ │ │ │ │ └── PureUpwindFitScheme.H │ │ │ │ ├── UpwindFitScheme │ │ │ │ │ ├── UpwindFitData.C │ │ │ │ │ ├── UpwindFitData.H │ │ │ │ │ └── UpwindFitScheme.H │ │ │ │ ├── biLinearFit │ │ │ │ │ ├── biLinearFit.C │ │ │ │ │ └── biLinearFitPolynomial.H │ │ │ │ ├── cellCoBlended │ │ │ │ │ ├── cellCoBlended.C │ │ │ │ │ └── cellCoBlended.H │ │ │ │ ├── clippedLinear │ │ │ │ │ ├── clippedLinear.C │ │ │ │ │ └── clippedLinear.H │ │ │ │ ├── cubic │ │ │ │ │ ├── cubic.C │ │ │ │ │ └── cubic.H │ │ │ │ ├── cubicUpwindFit │ │ │ │ │ ├── cubicUpwindFit.C │ │ │ │ │ └── cubicUpwindFitPolynomial.H │ │ │ │ ├── deferred │ │ │ │ │ ├── deferred.C │ │ │ │ │ └── deferred.H │ │ │ │ ├── downwind │ │ │ │ │ ├── downwind.C │ │ │ │ │ └── downwind.H │ │ │ │ ├── fixedBlended │ │ │ │ │ ├── fixedBlended.C │ │ │ │ │ └── fixedBlended.H │ │ │ │ ├── harmonic │ │ │ │ │ ├── harmonic.C │ │ │ │ │ └── harmonic.H │ │ │ │ ├── limiterBlended │ │ │ │ │ ├── limiterBlended.C │ │ │ │ │ └── limiterBlended.H │ │ │ │ ├── linear │ │ │ │ │ ├── linear.C │ │ │ │ │ └── linear.H │ │ │ │ ├── linearFit │ │ │ │ │ ├── linearFit.C │ │ │ │ │ └── linearFitPolynomial.H │ │ │ │ ├── linearPureUpwindFit │ │ │ │ │ └── linearPureUpwindFit.C │ │ │ │ ├── linearUpwind │ │ │ │ │ ├── linearUpwind.C │ │ │ │ │ ├── linearUpwind.H │ │ │ │ │ ├── linearUpwindV.C │ │ │ │ │ └── linearUpwindV.H │ │ │ │ ├── localBlended │ │ │ │ │ ├── localBlended.C │ │ │ │ │ └── localBlended.H │ │ │ │ ├── localMax │ │ │ │ │ ├── localMax.C │ │ │ │ │ └── localMax.H │ │ │ │ ├── localMin │ │ │ │ │ ├── localMin.C │ │ │ │ │ └── localMin.H │ │ │ │ ├── midPoint │ │ │ │ │ ├── midPoint.C │ │ │ │ │ └── midPoint.H │ │ │ │ ├── outletStabilised │ │ │ │ │ ├── outletStabilised.C │ │ │ │ │ └── outletStabilised.H │ │ │ │ ├── pointLinear │ │ │ │ │ ├── pointLinear.C │ │ │ │ │ └── pointLinear.H │ │ │ │ ├── quadraticFit │ │ │ │ │ ├── quadraticFit.C │ │ │ │ │ └── quadraticFitPolynomial.H │ │ │ │ ├── quadraticLinearFit │ │ │ │ │ ├── quadraticLinearFit.C │ │ │ │ │ └── quadraticLinearFitPolynomial.H │ │ │ │ ├── quadraticLinearPureUpwindFit │ │ │ │ │ └── quadraticLinearPureUpwindFit.C │ │ │ │ ├── quadraticLinearUpwindFit │ │ │ │ │ ├── quadraticLinearUpwindFit.C │ │ │ │ │ └── quadraticLinearUpwindFitPolynomial.H │ │ │ │ ├── quadraticUpwindFit │ │ │ │ │ ├── quadraticUpwindFit.C │ │ │ │ │ └── quadraticUpwindFitPolynomial.H │ │ │ │ ├── reverseLinear │ │ │ │ │ ├── reverseLinear.C │ │ │ │ │ └── reverseLinear.H │ │ │ │ ├── skewCorrected │ │ │ │ │ ├── skewCorrected.C │ │ │ │ │ ├── skewCorrected.H │ │ │ │ │ ├── skewCorrectionVectors.C │ │ │ │ │ └── skewCorrectionVectors.H │ │ │ │ └── weighted │ │ │ │ │ ├── weighted.C │ │ │ │ │ └── weighted.H │ │ │ ├── surfaceInterpolation │ │ │ │ ├── surfaceInterpolate.C │ │ │ │ ├── surfaceInterpolate.H │ │ │ │ ├── surfaceInterpolation.C │ │ │ │ └── surfaceInterpolation.H │ │ │ └── surfaceInterpolationScheme │ │ │ │ ├── surfaceInterpolationScheme.C │ │ │ │ ├── surfaceInterpolationScheme.H │ │ │ │ └── surfaceInterpolationSchemes.C │ │ └── volPointInterpolation │ │ │ ├── pointConstraints.C │ │ │ ├── pointConstraints.H │ │ │ ├── pointConstraintsTemplates.C │ │ │ ├── volPointInterpolate.C │ │ │ ├── volPointInterpolation.C │ │ │ └── volPointInterpolation.H │ ├── surfaceMesh │ │ └── surfaceMesh.H │ └── volMesh │ │ └── volMesh.H ├── functionObjects │ ├── Allwmake │ ├── field │ │ ├── CourantNo │ │ │ ├── CourantNo.C │ │ │ └── CourantNo.H │ │ ├── Lambda2 │ │ │ ├── Lambda2.C │ │ │ └── Lambda2.H │ │ ├── MachNo │ │ │ ├── MachNo.C │ │ │ └── MachNo.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── PecletNo │ │ │ ├── PecletNo.C │ │ │ └── PecletNo.H │ │ ├── Q │ │ │ ├── Q.C │ │ │ └── Q.H │ │ ├── XiReactionRate │ │ │ ├── XiReactionRate.C │ │ │ └── XiReactionRate.H │ │ ├── add │ │ │ ├── add.C │ │ │ └── add.H │ │ ├── age │ │ │ ├── age.C │ │ │ └── age.H │ │ ├── blendingFactor │ │ │ ├── blendingFactor.C │ │ │ ├── blendingFactor.H │ │ │ └── blendingFactorTemplates.C │ │ ├── comfort │ │ │ ├── comfort.C │ │ │ └── comfort.H │ │ ├── components │ │ │ ├── components.C │ │ │ ├── components.H │ │ │ └── componentsTemplates.C │ │ ├── cylindrical │ │ │ ├── cylindricalFunctionObject.C │ │ │ └── cylindricalFunctionObject.H │ │ ├── ddt │ │ │ ├── ddt.C │ │ │ ├── ddt.H │ │ │ └── ddtTemplates.C │ │ ├── div │ │ │ ├── div.C │ │ │ ├── div.H │ │ │ └── divTemplates.C │ │ ├── divide │ │ │ ├── divide.C │ │ │ └── divide.H │ │ ├── enstrophy │ │ │ ├── enstrophy.C │ │ │ └── enstrophy.H │ │ ├── fieldAverage │ │ │ ├── fieldAverage.C │ │ │ ├── fieldAverage.H │ │ │ ├── fieldAverageItem │ │ │ │ ├── fieldAverageItem.C │ │ │ │ ├── fieldAverageItem.H │ │ │ │ └── fieldAverageItemIO.C │ │ │ └── fieldAverageTemplates.C │ │ ├── fieldCoordinateSystemTransform │ │ │ ├── fieldCoordinateSystemTransform.C │ │ │ ├── fieldCoordinateSystemTransform.H │ │ │ ├── fieldCoordinateSystemTransformTemplates.C │ │ │ └── postProcessingDict │ │ ├── fieldExpression │ │ │ ├── fieldExpression.C │ │ │ └── fieldExpression.H │ │ ├── fieldValues │ │ │ ├── fieldValue │ │ │ │ ├── fieldValue.C │ │ │ │ ├── fieldValue.H │ │ │ │ ├── fieldValueI.H │ │ │ │ ├── fieldValueNew.C │ │ │ │ └── fieldValueTemplates.C │ │ │ ├── fieldValueDelta │ │ │ │ ├── fieldValueDelta.C │ │ │ │ ├── fieldValueDelta.H │ │ │ │ └── fieldValueDeltaTemplates.C │ │ │ ├── surfaceFieldValue │ │ │ │ ├── surfaceFieldValue.C │ │ │ │ ├── surfaceFieldValue.H │ │ │ │ ├── surfaceFieldValueI.H │ │ │ │ └── surfaceFieldValueTemplates.C │ │ │ └── volFieldValue │ │ │ │ ├── volFieldValue.C │ │ │ │ ├── volFieldValue.H │ │ │ │ └── volFieldValueTemplates.C │ │ ├── fieldsExpression │ │ │ ├── fieldsExpression.C │ │ │ ├── fieldsExpression.H │ │ │ └── fieldsExpressionTemplates.C │ │ ├── flowType │ │ │ ├── flowType.C │ │ │ └── flowType.H │ │ ├── grad │ │ │ ├── grad.C │ │ │ ├── grad.H │ │ │ └── gradTemplates.C │ │ ├── histogram │ │ │ ├── histogram.C │ │ │ └── histogram.H │ │ ├── interfaceHeight │ │ │ ├── interfaceHeight.C │ │ │ └── interfaceHeight.H │ │ ├── log │ │ │ ├── log.C │ │ │ └── log.H │ │ ├── mag │ │ │ ├── mag.C │ │ │ ├── mag.H │ │ │ └── magTemplates.C │ │ ├── magSqr │ │ │ ├── magSqr.C │ │ │ ├── magSqr.H │ │ │ └── magSqrTemplates.C │ │ ├── multiply │ │ │ ├── multiply.C │ │ │ └── multiply.H │ │ ├── nearWallFields │ │ │ ├── findCellParticle.C │ │ │ ├── findCellParticle.H │ │ │ ├── nearWallFields.C │ │ │ ├── nearWallFields.H │ │ │ └── nearWallFieldsTemplates.C │ │ ├── pressure │ │ │ ├── pressure.C │ │ │ └── pressure.H │ │ ├── processorField │ │ │ ├── postProcessingDict │ │ │ ├── processorField.C │ │ │ └── processorField.H │ │ ├── randomise │ │ │ ├── randomise.C │ │ │ ├── randomise.H │ │ │ └── randomiseTemplates.C │ │ ├── readFields │ │ │ ├── postProcessingDict │ │ │ ├── readFields.C │ │ │ ├── readFields.H │ │ │ └── readFieldsTemplates.C │ │ ├── regionSizeDistribution │ │ │ ├── regionSizeDistribution.C │ │ │ ├── regionSizeDistribution.H │ │ │ └── regionSizeDistributionTemplates.C │ │ ├── scale │ │ │ ├── scale.C │ │ │ ├── scale.H │ │ │ └── scaleTemplates.C │ │ ├── shearStress │ │ │ ├── shearStress.C │ │ │ └── shearStress.H │ │ ├── streamFunction │ │ │ ├── streamFunction.C │ │ │ └── streamFunction.H │ │ ├── streamlines │ │ │ ├── streamlines.C │ │ │ ├── streamlines.H │ │ │ ├── streamlinesCloud.C │ │ │ ├── streamlinesCloud.H │ │ │ ├── streamlinesParticle.C │ │ │ └── streamlinesParticle.H │ │ ├── subtract │ │ │ ├── subtract.C │ │ │ └── subtract.H │ │ ├── surfaceInterpolate │ │ │ ├── surfaceInterpolate.C │ │ │ ├── surfaceInterpolate.H │ │ │ └── surfaceInterpolateTemplates.C │ │ ├── totalEnthalpy │ │ │ ├── totalEnthalpy.C │ │ │ └── totalEnthalpy.H │ │ ├── turbulenceFields │ │ │ ├── postProcessingDict │ │ │ ├── turbulenceFields.C │ │ │ ├── turbulenceFields.H │ │ │ └── turbulenceFieldsTemplates.C │ │ ├── turbulenceIntensity │ │ │ ├── turbulenceIntensity.C │ │ │ └── turbulenceIntensity.H │ │ ├── uniform │ │ │ ├── uniform.C │ │ │ └── uniform.H │ │ ├── vorticity │ │ │ ├── vorticity.C │ │ │ └── vorticity.H │ │ ├── wallHeatFlux │ │ │ ├── wallHeatFlux.C │ │ │ └── wallHeatFlux.H │ │ ├── wallHeatTransferCoeff │ │ │ ├── wallHeatTransferCoeff.C │ │ │ ├── wallHeatTransferCoeff.H │ │ │ └── wallHeatTransferCoeffModels │ │ │ │ ├── ReynoldsAnalogy │ │ │ │ ├── ReynoldsAnalogy.C │ │ │ │ └── ReynoldsAnalogy.H │ │ │ │ ├── kappaEff │ │ │ │ ├── kappaEff.C │ │ │ │ └── kappaEff.H │ │ │ │ └── wallHeatTransferCoeffModel │ │ │ │ ├── wallHeatTransferCoeffModel.C │ │ │ │ └── wallHeatTransferCoeffModel.H │ │ ├── wallShearStress │ │ │ ├── wallShearStress.C │ │ │ └── wallShearStress.H │ │ ├── writeCellCentres │ │ │ ├── writeCellCentres.C │ │ │ └── writeCellCentres.H │ │ ├── writeCellVolumes │ │ │ ├── writeCellVolumes.C │ │ │ └── writeCellVolumes.H │ │ └── yPlus │ │ │ ├── yPlus.C │ │ │ └── yPlus.H │ ├── forces │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── forceCoeffs │ │ │ ├── forceCoeffs.C │ │ │ └── forceCoeffs.H │ │ └── forces │ │ │ ├── forces.C │ │ │ └── forces.H │ ├── lagrangian │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cloudInfo │ │ │ ├── cloudInfo.C │ │ │ ├── cloudInfo.H │ │ │ └── postProcessingDict │ │ ├── dsmcFields │ │ │ ├── dsmcFields.C │ │ │ └── dsmcFields.H │ │ └── particles │ │ │ ├── particles.C │ │ │ └── particles.H │ ├── solvers │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── phaseScalarTransport │ │ │ ├── phaseScalarTransport.C │ │ │ └── phaseScalarTransport.H │ │ └── scalarTransport │ │ │ ├── scalarTransport.C │ │ │ └── scalarTransport.H │ └── utilities │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── codedFunctionObject │ │ ├── codedFunctionObject.C │ │ └── codedFunctionObject.H │ │ ├── removeRegisteredObject │ │ ├── removeRegisteredObject.C │ │ └── removeRegisteredObject.H │ │ ├── residuals │ │ ├── residuals.C │ │ ├── residuals.H │ │ └── residualsTemplates.C │ │ ├── setTimeStep │ │ ├── setTimeStepFunctionObject.C │ │ └── setTimeStepFunctionObject.H │ │ ├── setWriteInterval │ │ ├── setWriteIntervalFunctionObject.C │ │ └── setWriteIntervalFunctionObject.H │ │ ├── stopAt │ │ ├── stopAt.C │ │ ├── stopAt.H │ │ ├── stopAtClockTime │ │ │ ├── stopAtClockTime.C │ │ │ └── stopAtClockTime.H │ │ └── stopAtFile │ │ │ ├── stopAtFile.C │ │ │ └── stopAtFile.H │ │ ├── systemCall │ │ ├── systemCall.C │ │ └── systemCall.H │ │ ├── time │ │ ├── timeFunctionObject.C │ │ └── timeFunctionObject.H │ │ ├── timeActivatedFileUpdate │ │ ├── timeActivatedFileUpdate.C │ │ └── timeActivatedFileUpdate.H │ │ ├── timeStep │ │ ├── timeStepFunctionObject.C │ │ └── timeStepFunctionObject.H │ │ ├── writeDictionary │ │ ├── writeDictionary.C │ │ └── writeDictionary.H │ │ └── writeObjects │ │ ├── writeObjects.C │ │ └── writeObjects.H ├── fvAgglomerationMethods │ ├── Allwmake │ ├── MGridGenGamgAgglomeration │ │ ├── MGridGenGAMGAgglomerate.C │ │ ├── MGridGenGAMGAgglomeration.C │ │ ├── MGridGenGAMGAgglomeration.H │ │ └── Make │ │ │ ├── files │ │ │ └── options │ └── pairPatchAgglomeration │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── pairPatchAgglomeration.C │ │ ├── pairPatchAgglomeration.H │ │ └── pairPatchAgglomerationTemplates.C ├── fvConstraints │ ├── Make │ │ ├── files │ │ └── options │ ├── fixedTemperatureConstraint │ │ ├── fixedTemperatureConstraint.C │ │ └── fixedTemperatureConstraint.H │ ├── fixedValueConstraint │ │ ├── fixedValueConstraint.C │ │ └── fixedValueConstraint.H │ ├── limitPressure │ │ ├── limitPressure.C │ │ └── limitPressure.H │ ├── limitTemperature │ │ ├── limitTemperature.C │ │ └── limitTemperature.H │ ├── limitVelocity │ │ ├── limitVelocity.C │ │ └── limitVelocity.H │ └── meanVelocityForce │ │ ├── meanVelocityForce.C │ │ ├── meanVelocityForce.H │ │ └── patchMeanVelocityForce │ │ ├── patchMeanVelocityForce.C │ │ └── patchMeanVelocityForce.H ├── fvModels │ ├── Make │ │ ├── files │ │ └── options │ ├── derived │ │ ├── accelerationSource │ │ │ ├── accelerationSource.C │ │ │ ├── accelerationSource.H │ │ │ └── accelerationSourceTemplates.C │ │ ├── actuationDiskSource │ │ │ ├── actuationDiskSource.C │ │ │ ├── actuationDiskSource.H │ │ │ └── actuationDiskSourceTemplates.C │ │ ├── buoyancyEnergy │ │ │ ├── buoyancyEnergy.C │ │ │ └── buoyancyEnergy.H │ │ ├── buoyancyForce │ │ │ ├── buoyancyForce.C │ │ │ └── buoyancyForce.H │ │ ├── damping │ │ │ ├── damping │ │ │ │ ├── damping.C │ │ │ │ └── damping.H │ │ │ ├── isotropicDamping │ │ │ │ ├── isotropicDamping.C │ │ │ │ └── isotropicDamping.H │ │ │ └── verticalDamping │ │ │ │ ├── verticalDamping.C │ │ │ │ └── verticalDamping.H │ │ ├── effectivenessHeatExchangerSource │ │ │ ├── effectivenessHeatExchangerSource.C │ │ │ └── effectivenessHeatExchangerSource.H │ │ ├── explicitPorositySource │ │ │ ├── explicitPorositySource.C │ │ │ └── explicitPorositySource.H │ │ ├── heatSource │ │ │ ├── heatSource.C │ │ │ └── heatSource.H │ │ ├── heatTransfer │ │ │ ├── heatTransfer.C │ │ │ ├── heatTransfer.H │ │ │ └── heatTransferModels │ │ │ │ ├── constant │ │ │ │ ├── constant.C │ │ │ │ └── constant.H │ │ │ │ ├── function1 │ │ │ │ ├── function1.C │ │ │ │ └── function1.H │ │ │ │ ├── function2 │ │ │ │ ├── function2.C │ │ │ │ └── function2.H │ │ │ │ ├── heatTransferModel │ │ │ │ ├── heatTransferModel.C │ │ │ │ └── heatTransferModel.H │ │ │ │ └── variable │ │ │ │ ├── variable.C │ │ │ │ └── variable.H │ │ ├── massSource │ │ │ ├── massSource.C │ │ │ └── massSource.H │ │ ├── phaseLimitStabilisation │ │ │ ├── phaseLimitStabilisation.C │ │ │ └── phaseLimitStabilisation.H │ │ ├── radialActuationDiskSource │ │ │ ├── radialActuationDiskSource.C │ │ │ ├── radialActuationDiskSource.H │ │ │ └── radialActuationDiskSourceTemplates.C │ │ ├── rotorDiskSource │ │ │ ├── bladeModel │ │ │ │ ├── bladeModel.C │ │ │ │ └── bladeModel.H │ │ │ ├── profileModel │ │ │ │ ├── lookup │ │ │ │ │ ├── lookupProfile.C │ │ │ │ │ └── lookupProfile.H │ │ │ │ ├── profileModel.C │ │ │ │ ├── profileModel.H │ │ │ │ ├── profileModelList.C │ │ │ │ ├── profileModelList.H │ │ │ │ └── series │ │ │ │ │ ├── seriesProfile.C │ │ │ │ │ └── seriesProfile.H │ │ │ ├── rotorDiskSource.C │ │ │ ├── rotorDiskSource.H │ │ │ ├── rotorDiskSourceI.H │ │ │ ├── rotorDiskSourceTemplates.C │ │ │ └── trimModel │ │ │ │ ├── fixed │ │ │ │ ├── fixedTrim.C │ │ │ │ └── fixedTrim.H │ │ │ │ ├── targetCoeff │ │ │ │ ├── targetCoeffTrim.C │ │ │ │ └── targetCoeffTrim.H │ │ │ │ └── trimModel │ │ │ │ ├── trimModel.C │ │ │ │ ├── trimModel.H │ │ │ │ └── trimModelNew.C │ │ ├── sixDoFAccelerationSource │ │ │ ├── sixDoFAccelerationSource.C │ │ │ ├── sixDoFAccelerationSource.H │ │ │ └── sixDoFAccelerationSourceTemplates.C │ │ ├── solidEquilibriumEnergySource │ │ │ ├── solidEquilibriumEnergySource.C │ │ │ └── solidEquilibriumEnergySource.H │ │ ├── solidificationMeltingSource │ │ │ ├── solidificationMeltingSource.C │ │ │ ├── solidificationMeltingSource.H │ │ │ └── solidificationMeltingSourceTemplates.C │ │ └── volumeFractionSource │ │ │ ├── volumeFractionSource.C │ │ │ └── volumeFractionSource.H │ ├── general │ │ ├── codedFvModel │ │ │ ├── codedFvModel.C │ │ │ └── codedFvModel.H │ │ └── semiImplicitSource │ │ │ ├── semiImplicitSource.C │ │ │ └── semiImplicitSource.H │ └── interRegion │ │ ├── interRegionExplicitPorositySource │ │ ├── interRegionExplicitPorositySource.C │ │ └── interRegionExplicitPorositySource.H │ │ ├── interRegionHeatTransfer │ │ ├── interRegionHeatTransfer.C │ │ └── interRegionHeatTransfer.H │ │ └── interRegionModel │ │ ├── interRegionModel.C │ │ ├── interRegionModel.H │ │ ├── interRegionModelI.H │ │ └── interRegionModelTemplates.C ├── fvMotionSolver │ ├── Make │ │ ├── files │ │ └── options │ ├── fvMotionSolvers │ │ ├── componentDisplacement │ │ │ └── componentLaplacian │ │ │ │ ├── displacementComponentLaplacianFvMotionSolver.C │ │ │ │ └── displacementComponentLaplacianFvMotionSolver.H │ │ ├── componentVelocity │ │ │ └── componentLaplacian │ │ │ │ ├── velocityComponentLaplacianFvMotionSolver.C │ │ │ │ └── velocityComponentLaplacianFvMotionSolver.H │ │ ├── displacement │ │ │ ├── SBRStress │ │ │ │ ├── displacementSBRStressFvMotionSolver.C │ │ │ │ └── displacementSBRStressFvMotionSolver.H │ │ │ └── laplacian │ │ │ │ ├── displacementLaplacianFvMotionSolver.C │ │ │ │ └── displacementLaplacianFvMotionSolver.H │ │ ├── fvMotionSolver │ │ │ ├── fvMotionSolver.C │ │ │ ├── fvMotionSolver.H │ │ │ └── fvMotionSolverTemplates.C │ │ └── velocity │ │ │ └── laplacian │ │ │ ├── velocityLaplacianFvMotionSolver.C │ │ │ └── velocityLaplacianFvMotionSolver.H │ ├── fvPatchFields │ │ └── derived │ │ │ ├── cellMotion │ │ │ ├── cellMotionFvPatchField.C │ │ │ ├── cellMotionFvPatchField.H │ │ │ ├── cellMotionFvPatchFields.C │ │ │ ├── cellMotionFvPatchFields.H │ │ │ └── cellMotionFvPatchFieldsFwd.H │ │ │ └── surfaceSlipDisplacement │ │ │ ├── surfaceSlipDisplacementFvPatchField.H │ │ │ ├── surfaceSlipDisplacementFvPatchFields.C │ │ │ ├── surfaceSlipDisplacementFvPatchFields.H │ │ │ └── surfaceSlipDisplacementFvPatchFieldsFwd.H │ ├── motionDiffusivity │ │ ├── directional │ │ │ ├── directionalDiffusivity.C │ │ │ └── directionalDiffusivity.H │ │ ├── file │ │ │ ├── fileDiffusivity.C │ │ │ └── fileDiffusivity.H │ │ ├── inverseDistance │ │ │ ├── inverseDistanceDiffusivity.C │ │ │ └── inverseDistanceDiffusivity.H │ │ ├── inverseFaceDistance │ │ │ ├── inverseFaceDistanceDiffusivity.C │ │ │ └── inverseFaceDistanceDiffusivity.H │ │ ├── inversePointDistance │ │ │ ├── inversePointDistanceDiffusivity.C │ │ │ └── inversePointDistanceDiffusivity.H │ │ ├── inverseVolume │ │ │ ├── inverseVolumeDiffusivity.C │ │ │ └── inverseVolumeDiffusivity.H │ │ ├── manipulators │ │ │ ├── exponential │ │ │ │ ├── exponentialDiffusivity.C │ │ │ │ └── exponentialDiffusivity.H │ │ │ └── quadratic │ │ │ │ ├── quadraticDiffusivity.C │ │ │ │ └── quadraticDiffusivity.H │ │ ├── motionDiffusivity │ │ │ ├── motionDiffusivity.C │ │ │ └── motionDiffusivity.H │ │ ├── motionDirectional │ │ │ ├── motionDirectionalDiffusivity.C │ │ │ └── motionDirectionalDiffusivity.H │ │ └── uniform │ │ │ ├── uniformDiffusivity.C │ │ │ └── uniformDiffusivity.H │ └── pointPatchFields │ │ └── derived │ │ ├── angularOscillatingDisplacement │ │ ├── angularOscillatingDisplacementPointPatchVectorField.C │ │ └── angularOscillatingDisplacementPointPatchVectorField.H │ │ ├── angularOscillatingVelocity │ │ ├── angularOscillatingVelocityPointPatchVectorField.C │ │ └── angularOscillatingVelocityPointPatchVectorField.H │ │ ├── oscillatingDisplacement │ │ ├── oscillatingDisplacementPointPatchVectorField.C │ │ └── oscillatingDisplacementPointPatchVectorField.H │ │ ├── oscillatingVelocity │ │ ├── oscillatingVelocityPointPatchVectorField.C │ │ └── oscillatingVelocityPointPatchVectorField.H │ │ ├── surfaceDisplacement │ │ ├── surfaceDisplacementPointPatchVectorField.C │ │ └── surfaceDisplacementPointPatchVectorField.H │ │ ├── surfaceSlipDisplacement │ │ ├── surfaceSlipDisplacementPointPatchVectorField.C │ │ └── surfaceSlipDisplacementPointPatchVectorField.H │ │ ├── timeVaryingMappedFixedValue │ │ ├── timeVaryingMappedFixedValuePointPatchField.C │ │ ├── timeVaryingMappedFixedValuePointPatchField.H │ │ ├── timeVaryingMappedFixedValuePointPatchFields.C │ │ └── timeVaryingMappedFixedValuePointPatchFields.H │ │ ├── uniformInterpolatedDisplacement │ │ ├── uniformInterpolatedDisplacementPointPatchVectorField.C │ │ └── uniformInterpolatedDisplacementPointPatchVectorField.H │ │ └── waveDisplacement │ │ ├── waveDisplacementPointPatchVectorField.C │ │ └── waveDisplacementPointPatchVectorField.H ├── genericPatchFields │ ├── Make │ │ ├── files │ │ └── options │ ├── genericFvPatchField │ │ ├── genericFvPatchField.C │ │ ├── genericFvPatchField.H │ │ ├── genericFvPatchFields.C │ │ └── genericFvPatchFields.H │ ├── genericPatchField │ │ ├── genericPatchField.C │ │ └── genericPatchField.H │ └── genericPointPatchField │ │ ├── genericPointPatchField.C │ │ ├── genericPointPatchField.H │ │ ├── genericPointPatchFields.C │ │ └── genericPointPatchFields.H ├── lagrangian │ ├── Allwmake │ ├── DSMC │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── clouds │ │ │ ├── Templates │ │ │ │ └── DSMCCloud │ │ │ │ │ ├── DSMCCloud.C │ │ │ │ │ ├── DSMCCloud.H │ │ │ │ │ ├── DSMCCloudI.H │ │ │ │ │ └── DSMCCloudName.C │ │ │ └── derived │ │ │ │ └── dsmcCloud │ │ │ │ └── dsmcCloud.H │ │ ├── parcels │ │ │ ├── Templates │ │ │ │ └── DSMCParcel │ │ │ │ │ ├── DSMCParcel.C │ │ │ │ │ ├── DSMCParcel.H │ │ │ │ │ ├── DSMCParcelI.H │ │ │ │ │ └── DSMCParcelIO.C │ │ │ └── derived │ │ │ │ └── dsmcParcel │ │ │ │ ├── defineDSMCParcel.C │ │ │ │ ├── dsmcParcel.C │ │ │ │ ├── dsmcParcel.H │ │ │ │ ├── makeDSMCParcelBinaryCollisionModels.C │ │ │ │ ├── makeDSMCParcelInflowBoundaryModels.C │ │ │ │ └── makeDSMCParcelWallInteractionModels.C │ │ └── submodels │ │ │ ├── BinaryCollisionModel │ │ │ ├── BinaryCollisionModel │ │ │ │ ├── BinaryCollisionModel.C │ │ │ │ ├── BinaryCollisionModel.H │ │ │ │ └── BinaryCollisionModelNew.C │ │ │ ├── LarsenBorgnakkeVariableHardSphere │ │ │ │ ├── LarsenBorgnakkeVariableHardSphere.C │ │ │ │ └── LarsenBorgnakkeVariableHardSphere.H │ │ │ ├── NoBinaryCollision │ │ │ │ ├── NoBinaryCollision.C │ │ │ │ └── NoBinaryCollision.H │ │ │ └── VariableHardSphere │ │ │ │ ├── VariableHardSphere.C │ │ │ │ └── VariableHardSphere.H │ │ │ ├── InflowBoundaryModel │ │ │ ├── FreeStream │ │ │ │ ├── FreeStream.C │ │ │ │ └── FreeStream.H │ │ │ ├── InflowBoundaryModel │ │ │ │ ├── InflowBoundaryModel.C │ │ │ │ ├── InflowBoundaryModel.H │ │ │ │ └── InflowBoundaryModelNew.C │ │ │ └── NoInflow │ │ │ │ ├── NoInflow.C │ │ │ │ └── NoInflow.H │ │ │ └── WallInteractionModel │ │ │ ├── MaxwellianThermal │ │ │ ├── MaxwellianThermal.C │ │ │ └── MaxwellianThermal.H │ │ │ ├── MixedDiffuseSpecular │ │ │ ├── MixedDiffuseSpecular.C │ │ │ └── MixedDiffuseSpecular.H │ │ │ ├── SpecularReflection │ │ │ ├── SpecularReflection.C │ │ │ └── SpecularReflection.H │ │ │ └── WallInteractionModel │ │ │ ├── WallInteractionModel.C │ │ │ ├── WallInteractionModel.H │ │ │ └── WallInteractionModelNew.C │ ├── basic │ │ ├── Cloud │ │ │ ├── Cloud.C │ │ │ ├── Cloud.H │ │ │ └── CloudIO.C │ │ ├── IOPosition │ │ │ ├── IOPosition.C │ │ │ ├── IOPosition.H │ │ │ └── IOPositionName.C │ │ ├── InteractionLists │ │ │ ├── InteractionLists.C │ │ │ ├── InteractionLists.H │ │ │ ├── InteractionListsI.H │ │ │ └── referredWallFace │ │ │ │ ├── referredWallFace.C │ │ │ │ ├── referredWallFace.H │ │ │ │ └── referredWallFaceI.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── demandDrivenEntry │ │ │ ├── demandDrivenEntry.C │ │ │ ├── demandDrivenEntry.H │ │ │ └── demandDrivenEntryI.H │ │ ├── indexedParticle │ │ │ ├── indexedParticle.H │ │ │ ├── indexedParticleCloud.C │ │ │ └── indexedParticleCloud.H │ │ ├── particle │ │ │ ├── particle.C │ │ │ ├── particle.H │ │ │ ├── particleI.H │ │ │ ├── particleIO.C │ │ │ ├── particleMacros.H │ │ │ └── particleTemplates.C │ │ └── passiveParticle │ │ │ ├── passiveParticle.H │ │ │ ├── passiveParticleCloud.C │ │ │ └── passiveParticleCloud.H │ ├── distributionModels │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── RosinRammler │ │ │ ├── RosinRammler.C │ │ │ └── RosinRammler.H │ │ ├── distributionModel │ │ │ ├── distributionModel.C │ │ │ ├── distributionModel.H │ │ │ └── distributionModelNew.C │ │ ├── exponential │ │ │ ├── exponential.C │ │ │ └── exponential.H │ │ ├── fixedValue │ │ │ ├── fixedValue.C │ │ │ └── fixedValue.H │ │ ├── general │ │ │ ├── general.C │ │ │ └── general.H │ │ ├── massRosinRammler │ │ │ ├── massRosinRammler.C │ │ │ └── massRosinRammler.H │ │ ├── multiNormal │ │ │ ├── multiNormal.C │ │ │ └── multiNormal.H │ │ ├── normal │ │ │ ├── normal.C │ │ │ └── normal.H │ │ └── uniform │ │ │ ├── uniform.C │ │ │ └── uniform.H │ ├── molecularDynamics │ │ ├── Allwmake │ │ ├── molecularMeasurements │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── bufferedAccumulator │ │ │ │ ├── bufferedAccumulator.C │ │ │ │ ├── bufferedAccumulator.H │ │ │ │ ├── bufferedAccumulatorI.H │ │ │ │ └── bufferedAccumulatorIO.C │ │ │ ├── correlationFunction │ │ │ │ ├── correlationFunction.C │ │ │ │ ├── correlationFunction.H │ │ │ │ ├── correlationFunctionI.H │ │ │ │ └── correlationFunctionIO.C │ │ │ └── distribution │ │ │ │ ├── distribution.C │ │ │ │ ├── distribution.H │ │ │ │ └── distributionI.H │ │ ├── molecule │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── mdTools │ │ │ │ ├── averageMDFields.H │ │ │ │ ├── calculateAutoCorrelationFunctions.H │ │ │ │ ├── calculateMDFields.H │ │ │ │ ├── calculateTransportProperties.H │ │ │ │ ├── createAutoCorrelationFunctions.H │ │ │ │ ├── createMDFields.H │ │ │ │ ├── createRefUnits.H │ │ │ │ ├── md.H │ │ │ │ ├── meanMomentumEnergyAndNMols.H │ │ │ │ ├── resetMDFields.H │ │ │ │ ├── temperatureAndPressure.H │ │ │ │ ├── temperatureAndPressureVariables.H │ │ │ │ └── temperatureEquilibration.H │ │ │ ├── molecule │ │ │ │ ├── molecule.C │ │ │ │ ├── molecule.H │ │ │ │ ├── moleculeI.H │ │ │ │ └── moleculeIO.C │ │ │ ├── moleculeCloud │ │ │ │ ├── moleculeCloud.C │ │ │ │ ├── moleculeCloud.H │ │ │ │ └── moleculeCloudI.H │ │ │ └── reducedUnits │ │ │ │ ├── reducedUnits.C │ │ │ │ ├── reducedUnits.H │ │ │ │ ├── reducedUnitsI.H │ │ │ │ └── reducedUnitsIO.C │ │ └── potential │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── electrostaticPotential │ │ │ ├── electrostaticPotential.C │ │ │ └── electrostaticPotential.H │ │ │ ├── energyScalingFunction │ │ │ ├── basic │ │ │ │ ├── energyScalingFunction.C │ │ │ │ ├── energyScalingFunction.H │ │ │ │ └── energyScalingFunctionNew.C │ │ │ └── derived │ │ │ │ ├── doubleSigmoid │ │ │ │ ├── doubleSigmoid.C │ │ │ │ └── doubleSigmoid.H │ │ │ │ ├── noScaling │ │ │ │ ├── noScaling.C │ │ │ │ └── noScaling.H │ │ │ │ ├── shifted │ │ │ │ ├── shifted.C │ │ │ │ └── shifted.H │ │ │ │ ├── shiftedForce │ │ │ │ ├── shiftedForce.C │ │ │ │ └── shiftedForce.H │ │ │ │ └── sigmoid │ │ │ │ ├── sigmoid.C │ │ │ │ └── sigmoid.H │ │ │ ├── pairPotential │ │ │ ├── basic │ │ │ │ ├── pairPotential.C │ │ │ │ ├── pairPotential.H │ │ │ │ ├── pairPotentialI.H │ │ │ │ ├── pairPotentialIO.C │ │ │ │ └── pairPotentialNew.C │ │ │ ├── derived │ │ │ │ ├── azizChen │ │ │ │ │ ├── azizChen.C │ │ │ │ │ └── azizChen.H │ │ │ │ ├── coulomb │ │ │ │ │ ├── coulomb.C │ │ │ │ │ └── coulomb.H │ │ │ │ ├── dampedCoulomb │ │ │ │ │ ├── dampedCoulomb.C │ │ │ │ │ └── dampedCoulomb.H │ │ │ │ ├── exponentialRepulsion │ │ │ │ │ ├── exponentialRepulsion.C │ │ │ │ │ └── exponentialRepulsion.H │ │ │ │ ├── lennardJones │ │ │ │ │ ├── lennardJones.C │ │ │ │ │ └── lennardJones.H │ │ │ │ ├── maitlandSmith │ │ │ │ │ ├── maitlandSmith.C │ │ │ │ │ └── maitlandSmith.H │ │ │ │ └── noInteraction │ │ │ │ │ ├── noInteraction.C │ │ │ │ │ └── noInteraction.H │ │ │ └── pairPotentialList │ │ │ │ ├── pairPotentialList.C │ │ │ │ ├── pairPotentialList.H │ │ │ │ └── pairPotentialListI.H │ │ │ ├── potential │ │ │ ├── potential.C │ │ │ ├── potential.H │ │ │ └── potentialI.H │ │ │ └── tetherPotential │ │ │ ├── basic │ │ │ ├── tetherPotential.C │ │ │ ├── tetherPotential.H │ │ │ └── tetherPotentialNew.C │ │ │ ├── derived │ │ │ ├── harmonicSpring │ │ │ │ ├── harmonicSpring.C │ │ │ │ └── harmonicSpring.H │ │ │ ├── pitchForkRing │ │ │ │ ├── pitchForkRing.C │ │ │ │ └── pitchForkRing.H │ │ │ └── restrainedHarmonicSpring │ │ │ │ ├── restrainedHarmonicSpring.C │ │ │ │ └── restrainedHarmonicSpring.H │ │ │ └── tetherPotentialList │ │ │ ├── tetherPotentialList.C │ │ │ ├── tetherPotentialList.H │ │ │ └── tetherPotentialListI.H │ ├── parcel │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── clouds │ │ │ ├── Templates │ │ │ │ ├── CollidingCloud │ │ │ │ │ ├── CollidingCloud.C │ │ │ │ │ ├── CollidingCloud.H │ │ │ │ │ ├── CollidingCloudI.H │ │ │ │ │ └── CollidingCloudName.C │ │ │ │ ├── MPPICCloud │ │ │ │ │ ├── MPPICCloud.C │ │ │ │ │ ├── MPPICCloud.H │ │ │ │ │ ├── MPPICCloudI.H │ │ │ │ │ └── MPPICCloudName.C │ │ │ │ ├── MomentumCloud │ │ │ │ │ ├── MomentumCloud.C │ │ │ │ │ ├── MomentumCloud.H │ │ │ │ │ ├── MomentumCloudI.H │ │ │ │ │ ├── MomentumCloudName.C │ │ │ │ │ └── cloudSolution │ │ │ │ │ │ ├── cloudSolution.C │ │ │ │ │ │ ├── cloudSolution.H │ │ │ │ │ │ └── cloudSolutionI.H │ │ │ │ ├── ReactingCloud │ │ │ │ │ ├── ReactingCloud.C │ │ │ │ │ ├── ReactingCloud.H │ │ │ │ │ ├── ReactingCloudI.H │ │ │ │ │ └── ReactingCloudName.C │ │ │ │ ├── ReactingMultiphaseCloud │ │ │ │ │ ├── ReactingMultiphaseCloud.C │ │ │ │ │ ├── ReactingMultiphaseCloud.H │ │ │ │ │ ├── ReactingMultiphaseCloudI.H │ │ │ │ │ └── ReactingMultiphaseCloudName.C │ │ │ │ ├── SprayCloud │ │ │ │ │ ├── SprayCloud.C │ │ │ │ │ ├── SprayCloud.H │ │ │ │ │ ├── SprayCloudI.H │ │ │ │ │ └── SprayCloudName.C │ │ │ │ └── ThermoCloud │ │ │ │ │ ├── ThermoCloud.C │ │ │ │ │ ├── ThermoCloud.H │ │ │ │ │ ├── ThermoCloudI.H │ │ │ │ │ └── ThermoCloudName.C │ │ │ └── derived │ │ │ │ ├── collidingCloud │ │ │ │ ├── collidingCloud.C │ │ │ │ └── collidingCloud.H │ │ │ │ ├── momentumCloud │ │ │ │ ├── momentumCloud.C │ │ │ │ └── momentumCloud.H │ │ │ │ ├── mppicCloud │ │ │ │ ├── mppicCloud.C │ │ │ │ └── mppicCloud.H │ │ │ │ ├── reactingCloud │ │ │ │ ├── reactingCloud.C │ │ │ │ └── reactingCloud.H │ │ │ │ ├── reactingMultiphaseCloud │ │ │ │ ├── reactingMultiphaseCloud.C │ │ │ │ └── reactingMultiphaseCloud.H │ │ │ │ ├── sprayCloud │ │ │ │ ├── sprayCloud.C │ │ │ │ └── sprayCloud.H │ │ │ │ └── thermoCloud │ │ │ │ ├── thermoCloud.C │ │ │ │ └── thermoCloud.H │ │ ├── fvModels │ │ │ └── clouds │ │ │ │ ├── clouds.C │ │ │ │ └── clouds.H │ │ ├── integrationScheme │ │ │ ├── Euler │ │ │ │ ├── Euler.C │ │ │ │ └── Euler.H │ │ │ ├── analytical │ │ │ │ ├── analytical.C │ │ │ │ └── analytical.H │ │ │ └── integrationScheme │ │ │ │ ├── integrationScheme.C │ │ │ │ ├── integrationScheme.H │ │ │ │ ├── integrationSchemeNew.C │ │ │ │ └── integrationSchemeTemplates.C │ │ ├── parcelCloud │ │ │ ├── ParcelCloud.H │ │ │ ├── ParcelCloudBase.H │ │ │ ├── parcelCloud.C │ │ │ ├── parcelCloud.H │ │ │ ├── parcelCloudBase.C │ │ │ ├── parcelCloudBase.H │ │ │ └── parcelCloudNew.C │ │ ├── parcelCloudList │ │ │ ├── parcelCloudList.C │ │ │ └── parcelCloudList.H │ │ ├── parcelThermo │ │ │ ├── parcelThermo.C │ │ │ └── parcelThermo.H │ │ ├── parcels │ │ │ ├── Templates │ │ │ │ ├── CollidingParcel │ │ │ │ │ ├── CollidingParcel.C │ │ │ │ │ ├── CollidingParcel.H │ │ │ │ │ ├── CollidingParcelI.H │ │ │ │ │ ├── CollidingParcelIO.C │ │ │ │ │ ├── CollidingParcelName.C │ │ │ │ │ ├── CollidingParcelTrackingDataI.H │ │ │ │ │ └── CollisionRecordList │ │ │ │ │ │ ├── CollisionRecordList.C │ │ │ │ │ │ ├── CollisionRecordList.H │ │ │ │ │ │ ├── CollisionRecordListI.H │ │ │ │ │ │ ├── PairCollisionRecord │ │ │ │ │ │ ├── PairCollisionRecord.C │ │ │ │ │ │ ├── PairCollisionRecord.H │ │ │ │ │ │ ├── PairCollisionRecordI.H │ │ │ │ │ │ └── PairCollisionRecordIO.C │ │ │ │ │ │ └── WallCollisionRecord │ │ │ │ │ │ ├── WallCollisionRecord.C │ │ │ │ │ │ ├── WallCollisionRecord.H │ │ │ │ │ │ ├── WallCollisionRecordI.H │ │ │ │ │ │ └── WallCollisionRecordIO.C │ │ │ │ ├── MPPICParcel │ │ │ │ │ ├── MPPICParcel.C │ │ │ │ │ ├── MPPICParcel.H │ │ │ │ │ ├── MPPICParcelI.H │ │ │ │ │ ├── MPPICParcelIO.C │ │ │ │ │ ├── MPPICParcelName.C │ │ │ │ │ └── MPPICParcelTrackingDataI.H │ │ │ │ ├── MomentumParcel │ │ │ │ │ ├── MomentumParcel.C │ │ │ │ │ ├── MomentumParcel.H │ │ │ │ │ ├── MomentumParcelI.H │ │ │ │ │ ├── MomentumParcelIO.C │ │ │ │ │ ├── MomentumParcelName.C │ │ │ │ │ └── MomentumParcelTrackingDataI.H │ │ │ │ ├── ReactingMultiphaseParcel │ │ │ │ │ ├── ReactingMultiphaseParcel.C │ │ │ │ │ ├── ReactingMultiphaseParcel.H │ │ │ │ │ ├── ReactingMultiphaseParcelI.H │ │ │ │ │ ├── ReactingMultiphaseParcelIO.C │ │ │ │ │ └── ReactingMultiphaseParcelName.C │ │ │ │ ├── ReactingParcel │ │ │ │ │ ├── ReactingParcel.C │ │ │ │ │ ├── ReactingParcel.H │ │ │ │ │ ├── ReactingParcelI.H │ │ │ │ │ ├── ReactingParcelIO.C │ │ │ │ │ └── ReactingParcelName.C │ │ │ │ ├── SprayParcel │ │ │ │ │ ├── SprayParcel.C │ │ │ │ │ ├── SprayParcel.H │ │ │ │ │ ├── SprayParcelI.H │ │ │ │ │ ├── SprayParcelIO.C │ │ │ │ │ └── SprayParcelName.C │ │ │ │ └── ThermoParcel │ │ │ │ │ ├── ThermoParcel.C │ │ │ │ │ ├── ThermoParcel.H │ │ │ │ │ ├── ThermoParcelI.H │ │ │ │ │ ├── ThermoParcelIO.C │ │ │ │ │ ├── ThermoParcelName.C │ │ │ │ │ └── ThermoParcelTrackingDataI.H │ │ │ ├── derived │ │ │ │ ├── collidingParcel │ │ │ │ │ ├── collidingParcel.H │ │ │ │ │ └── makeCollidingParcelSubmodels.C │ │ │ │ ├── momentumParcel │ │ │ │ │ ├── makeMomentumParcelSubmodels.C │ │ │ │ │ └── momentumParcel.H │ │ │ │ ├── mppicParcel │ │ │ │ │ ├── makeMppicParcelSubmodels.C │ │ │ │ │ └── mppicParcel.H │ │ │ │ ├── reactingMultiphaseParcel │ │ │ │ │ ├── makeReactingMultiphaseParcelSubmodels.C │ │ │ │ │ └── reactingMultiphaseParcel.H │ │ │ │ ├── reactingParcel │ │ │ │ │ ├── makeReactingParcelSubmodels.C │ │ │ │ │ └── reactingParcel.H │ │ │ │ ├── sprayParcel │ │ │ │ │ ├── makeSprayParcelSubmodels.C │ │ │ │ │ └── sprayParcel.H │ │ │ │ └── thermoParcel │ │ │ │ │ ├── makeThermoParcelSubmodels.C │ │ │ │ │ └── thermoParcel.H │ │ │ └── include │ │ │ │ ├── makeMPPICParcelDampingModels.H │ │ │ │ ├── makeMPPICParcelIsotropyModels.H │ │ │ │ ├── makeMPPICParcelPackingModels.H │ │ │ │ ├── makeParcelCloudFunctionObjects.H │ │ │ │ ├── makeParcelCollisionModels.H │ │ │ │ ├── makeParcelCompositionModels.H │ │ │ │ ├── makeParcelDispersionModels.H │ │ │ │ ├── makeParcelForces.H │ │ │ │ ├── makeParcelHeatTransferModels.H │ │ │ │ ├── makeParcelInjectionModels.H │ │ │ │ ├── makeParcelPatchInteractionModels.H │ │ │ │ ├── makeParcelStochasticCollisionModels.H │ │ │ │ ├── makeParcelSurfaceFilmModels.H │ │ │ │ ├── makeReactingMultiphaseParcelCompositionModels.H │ │ │ │ ├── makeReactingMultiphaseParcelDevolatilisationModels.H │ │ │ │ ├── makeReactingMultiphaseParcelInjectionModels.H │ │ │ │ ├── makeReactingMultiphaseParcelStochasticCollisionModels.H │ │ │ │ ├── makeReactingMultiphaseParcelSurfaceReactionModels.H │ │ │ │ ├── makeReactingParcelInjectionModels.H │ │ │ │ ├── makeReactingParcelPhaseChangeModels.H │ │ │ │ ├── makeReactingParcelSurfaceFilmModels.H │ │ │ │ ├── makeSprayParcelAtomisationModels.H │ │ │ │ ├── makeSprayParcelBreakupModels.H │ │ │ │ ├── makeSprayParcelInjectionModels.H │ │ │ │ ├── makeSprayParcelStochasticCollisionModels.H │ │ │ │ ├── makeThermoParcelInjectionModels.H │ │ │ │ └── makeThermoParcelSurfaceFilmModels.H │ │ ├── phaseProperties │ │ │ ├── phaseProperties │ │ │ │ ├── phaseProperties.C │ │ │ │ ├── phaseProperties.H │ │ │ │ └── phasePropertiesIO.C │ │ │ └── phasePropertiesList │ │ │ │ ├── phasePropertiesList.C │ │ │ │ └── phasePropertiesList.H │ │ └── submodels │ │ │ ├── CloudFunctionObjects │ │ │ ├── CloudFunctionObject │ │ │ │ ├── CloudFunctionObject.C │ │ │ │ ├── CloudFunctionObject.H │ │ │ │ └── CloudFunctionObjectNew.C │ │ │ ├── CloudFunctionObjectList │ │ │ │ ├── CloudFunctionObjectList.C │ │ │ │ ├── CloudFunctionObjectList.H │ │ │ │ └── CloudFunctionObjectListI.H │ │ │ ├── FacePostProcessing │ │ │ │ ├── FacePostProcessing.C │ │ │ │ ├── FacePostProcessing.H │ │ │ │ └── FacePostProcessingI.H │ │ │ ├── ParticleCollector │ │ │ │ ├── ParticleCollector.C │ │ │ │ ├── ParticleCollector.H │ │ │ │ └── ParticleCollectorI.H │ │ │ ├── ParticleErosion │ │ │ │ ├── ParticleErosion.C │ │ │ │ └── ParticleErosion.H │ │ │ ├── ParticleTracks │ │ │ │ ├── ParticleTracks.C │ │ │ │ ├── ParticleTracks.H │ │ │ │ └── ParticleTracksI.H │ │ │ ├── ParticleTrap │ │ │ │ ├── ParticleTrap.C │ │ │ │ └── ParticleTrap.H │ │ │ ├── PatchCollisionDensity │ │ │ │ ├── PatchCollisionDensity.C │ │ │ │ └── PatchCollisionDensity.H │ │ │ ├── PatchPostProcessing │ │ │ │ ├── PatchPostProcessing.C │ │ │ │ ├── PatchPostProcessing.H │ │ │ │ └── PatchPostProcessingI.H │ │ │ ├── RelativeVelocity │ │ │ │ ├── RelativeVelocity.C │ │ │ │ └── RelativeVelocity.H │ │ │ └── VoidFraction │ │ │ │ ├── VoidFraction.C │ │ │ │ └── VoidFraction.H │ │ │ ├── CloudSubModelBase.C │ │ │ ├── CloudSubModelBase.H │ │ │ ├── ForceTypes │ │ │ └── ParticleForceList │ │ │ │ ├── ParticleForceList.C │ │ │ │ ├── ParticleForceList.H │ │ │ │ └── ParticleForceListI.H │ │ │ ├── MPPIC │ │ │ ├── AveragingMethods │ │ │ │ ├── AveragingMethod │ │ │ │ │ ├── AveragingMethod.C │ │ │ │ │ ├── AveragingMethod.H │ │ │ │ │ └── AveragingMethodI.H │ │ │ │ ├── Basic │ │ │ │ │ ├── Basic.C │ │ │ │ │ └── Basic.H │ │ │ │ ├── Dual │ │ │ │ │ ├── Dual.C │ │ │ │ │ └── Dual.H │ │ │ │ ├── Moment │ │ │ │ │ ├── Moment.C │ │ │ │ │ └── Moment.H │ │ │ │ └── makeAveragingMethods.C │ │ │ ├── CorrectionLimitingMethods │ │ │ │ ├── CorrectionLimitingMethod │ │ │ │ │ ├── CorrectionLimitingMethod.C │ │ │ │ │ └── CorrectionLimitingMethod.H │ │ │ │ ├── absolute │ │ │ │ │ ├── absolute.C │ │ │ │ │ └── absolute.H │ │ │ │ ├── noCorrectionLimiting │ │ │ │ │ ├── noCorrectionLimiting.C │ │ │ │ │ └── noCorrectionLimiting.H │ │ │ │ └── relative │ │ │ │ │ ├── relative.C │ │ │ │ │ └── relative.H │ │ │ ├── DampingModels │ │ │ │ ├── DampingModel │ │ │ │ │ ├── DampingModel.C │ │ │ │ │ └── DampingModel.H │ │ │ │ ├── NoDamping │ │ │ │ │ ├── NoDamping.C │ │ │ │ │ └── NoDamping.H │ │ │ │ └── Relaxation │ │ │ │ │ ├── Relaxation.C │ │ │ │ │ └── Relaxation.H │ │ │ ├── IsotropyModels │ │ │ │ ├── IsotropyModel │ │ │ │ │ ├── IsotropyModel.C │ │ │ │ │ └── IsotropyModel.H │ │ │ │ ├── NoIsotropy │ │ │ │ │ ├── NoIsotropy.C │ │ │ │ │ └── NoIsotropy.H │ │ │ │ └── Stochastic │ │ │ │ │ ├── Stochastic.C │ │ │ │ │ └── Stochastic.H │ │ │ ├── PackingModels │ │ │ │ ├── Explicit │ │ │ │ │ ├── Explicit.C │ │ │ │ │ └── Explicit.H │ │ │ │ ├── Implicit │ │ │ │ │ ├── Implicit.C │ │ │ │ │ └── Implicit.H │ │ │ │ ├── NoPacking │ │ │ │ │ ├── NoPacking.C │ │ │ │ │ └── NoPacking.H │ │ │ │ └── PackingModel │ │ │ │ │ ├── PackingModel.C │ │ │ │ │ └── PackingModel.H │ │ │ ├── ParticleStressModels │ │ │ │ ├── HarrisCrighton │ │ │ │ │ ├── HarrisCrighton.C │ │ │ │ │ └── HarrisCrighton.H │ │ │ │ ├── Lun │ │ │ │ │ ├── Lun.C │ │ │ │ │ └── Lun.H │ │ │ │ ├── ParticleStressModel │ │ │ │ │ ├── ParticleStressModel.C │ │ │ │ │ └── ParticleStressModel.H │ │ │ │ └── exponential │ │ │ │ │ ├── exponential.C │ │ │ │ │ └── exponential.H │ │ │ └── TimeScaleModels │ │ │ │ ├── TimeScaleModel │ │ │ │ ├── TimeScaleModel.C │ │ │ │ └── TimeScaleModel.H │ │ │ │ ├── equilibrium │ │ │ │ ├── equilibrium.C │ │ │ │ └── equilibrium.H │ │ │ │ ├── isotropic │ │ │ │ ├── isotropic.C │ │ │ │ └── isotropic.H │ │ │ │ └── nonEquilibrium │ │ │ │ ├── nonEquilibrium.C │ │ │ │ └── nonEquilibrium.H │ │ │ ├── Momentum │ │ │ ├── CollisionModel │ │ │ │ ├── CollisionModel │ │ │ │ │ ├── CollisionModel.C │ │ │ │ │ ├── CollisionModel.H │ │ │ │ │ └── CollisionModelNew.C │ │ │ │ ├── NoCollision │ │ │ │ │ ├── NoCollision.C │ │ │ │ │ └── NoCollision.H │ │ │ │ └── PairCollision │ │ │ │ │ ├── PairCollision.C │ │ │ │ │ ├── PairCollision.H │ │ │ │ │ ├── PairModel │ │ │ │ │ ├── PairModel │ │ │ │ │ │ ├── PairModel.C │ │ │ │ │ │ ├── PairModel.H │ │ │ │ │ │ └── PairModelNew.C │ │ │ │ │ └── PairSpringSliderDashpot │ │ │ │ │ │ ├── PairSpringSliderDashpot.C │ │ │ │ │ │ └── PairSpringSliderDashpot.H │ │ │ │ │ ├── WallModel │ │ │ │ │ ├── WallLocalSpringSliderDashpot │ │ │ │ │ │ ├── WallLocalSpringSliderDashpot.C │ │ │ │ │ │ └── WallLocalSpringSliderDashpot.H │ │ │ │ │ ├── WallModel │ │ │ │ │ │ ├── WallModel.C │ │ │ │ │ │ ├── WallModel.H │ │ │ │ │ │ └── WallModelNew.C │ │ │ │ │ └── WallSpringSliderDashpot │ │ │ │ │ │ ├── WallSpringSliderDashpot.C │ │ │ │ │ │ └── WallSpringSliderDashpot.H │ │ │ │ │ └── WallSiteData │ │ │ │ │ ├── WallSiteData.C │ │ │ │ │ ├── WallSiteData.H │ │ │ │ │ └── WallSiteDataI.H │ │ │ ├── DispersionModel │ │ │ │ ├── DispersionModel │ │ │ │ │ ├── DispersionModel.C │ │ │ │ │ ├── DispersionModel.H │ │ │ │ │ └── DispersionModelNew.C │ │ │ │ └── NoDispersion │ │ │ │ │ ├── NoDispersion.C │ │ │ │ │ └── NoDispersion.H │ │ │ ├── InjectionModel │ │ │ │ ├── CellZoneInjection │ │ │ │ │ ├── CellZoneInjection.C │ │ │ │ │ └── CellZoneInjection.H │ │ │ │ ├── ConeInjection │ │ │ │ │ ├── ConeInjection.C │ │ │ │ │ └── ConeInjection.H │ │ │ │ ├── FieldActivatedInjection │ │ │ │ │ ├── FieldActivatedInjection.C │ │ │ │ │ └── FieldActivatedInjection.H │ │ │ │ ├── InflationInjection │ │ │ │ │ ├── InflationInjection.C │ │ │ │ │ └── InflationInjection.H │ │ │ │ ├── InjectionModel │ │ │ │ │ ├── InjectionModel.C │ │ │ │ │ ├── InjectionModel.H │ │ │ │ │ ├── InjectionModelI.H │ │ │ │ │ ├── InjectionModelList.C │ │ │ │ │ ├── InjectionModelList.H │ │ │ │ │ └── InjectionModelNew.C │ │ │ │ ├── ManualInjection │ │ │ │ │ ├── ManualInjection.C │ │ │ │ │ └── ManualInjection.H │ │ │ │ ├── MomentumLookupTableInjection │ │ │ │ │ ├── MomentumLookupTableInjection.C │ │ │ │ │ ├── MomentumLookupTableInjection.H │ │ │ │ │ ├── momentumParcelInjectionData.C │ │ │ │ │ ├── momentumParcelInjectionData.H │ │ │ │ │ ├── momentumParcelInjectionDataI.H │ │ │ │ │ ├── momentumParcelInjectionDataIO.C │ │ │ │ │ ├── momentumParcelInjectionDataIOList.C │ │ │ │ │ └── momentumParcelInjectionDataIOList.H │ │ │ │ ├── NoInjection │ │ │ │ │ ├── NoInjection.C │ │ │ │ │ └── NoInjection.H │ │ │ │ ├── PatchFlowRateInjection │ │ │ │ │ ├── PatchFlowRateInjection.C │ │ │ │ │ └── PatchFlowRateInjection.H │ │ │ │ └── PatchInjection │ │ │ │ │ ├── PatchInjection.C │ │ │ │ │ ├── PatchInjection.H │ │ │ │ │ ├── patchInjectionBase.C │ │ │ │ │ └── patchInjectionBase.H │ │ │ ├── ParticleForces │ │ │ │ ├── Drag │ │ │ │ │ ├── DenseDrag │ │ │ │ │ │ ├── DenseDragForce.C │ │ │ │ │ │ └── DenseDragForce.H │ │ │ │ │ ├── DistortedSphereDrag │ │ │ │ │ │ ├── DistortedSphereDragForce.C │ │ │ │ │ │ └── DistortedSphereDragForce.H │ │ │ │ │ ├── ErgunWenYuDrag │ │ │ │ │ │ ├── ErgunWenYuDragForce.C │ │ │ │ │ │ └── ErgunWenYuDragForce.H │ │ │ │ │ ├── NonSphereDrag │ │ │ │ │ │ ├── NonSphereDragForce.C │ │ │ │ │ │ └── NonSphereDragForce.H │ │ │ │ │ ├── PlessisMasliyahDrag │ │ │ │ │ │ ├── PlessisMasliyahDragForce.C │ │ │ │ │ │ └── PlessisMasliyahDragForce.H │ │ │ │ │ ├── SchillerNaumannDrag │ │ │ │ │ │ ├── SchillerNaumannDragForce.C │ │ │ │ │ │ └── SchillerNaumannDragForce.H │ │ │ │ │ ├── SphereDrag │ │ │ │ │ │ ├── SphereDragForce.C │ │ │ │ │ │ └── SphereDragForce.H │ │ │ │ │ └── WenYuDrag │ │ │ │ │ │ ├── WenYuDragForce.C │ │ │ │ │ │ └── WenYuDragForce.H │ │ │ │ ├── Gravity │ │ │ │ │ ├── GravityForce.C │ │ │ │ │ ├── GravityForce.H │ │ │ │ │ └── GravityForceI.H │ │ │ │ ├── Lift │ │ │ │ │ ├── LiftForce │ │ │ │ │ │ ├── LiftForce.C │ │ │ │ │ │ ├── LiftForce.H │ │ │ │ │ │ └── LiftForceI.H │ │ │ │ │ ├── SaffmanMeiLift │ │ │ │ │ │ ├── SaffmanMeiLiftForce.C │ │ │ │ │ │ └── SaffmanMeiLiftForce.H │ │ │ │ │ └── TomiyamaLift │ │ │ │ │ │ ├── TomiyamaLiftForce.C │ │ │ │ │ │ └── TomiyamaLiftForce.H │ │ │ │ ├── NonInertialFrame │ │ │ │ │ ├── NonInertialFrameForce.C │ │ │ │ │ ├── NonInertialFrameForce.H │ │ │ │ │ └── NonInertialFrameForceI.H │ │ │ │ ├── Paramagnetic │ │ │ │ │ ├── ParamagneticForce.C │ │ │ │ │ ├── ParamagneticForce.H │ │ │ │ │ └── ParamagneticForceI.H │ │ │ │ ├── ParticleForce │ │ │ │ │ ├── ParticleForce.C │ │ │ │ │ ├── ParticleForce.H │ │ │ │ │ ├── ParticleForceI.H │ │ │ │ │ └── ParticleForceNew.C │ │ │ │ ├── PressureGradient │ │ │ │ │ ├── PressureGradientForce.C │ │ │ │ │ ├── PressureGradientForce.H │ │ │ │ │ └── PressureGradientForceI.H │ │ │ │ ├── SRF │ │ │ │ │ ├── SRFForce.C │ │ │ │ │ └── SRFForce.H │ │ │ │ ├── Scaled │ │ │ │ │ ├── ScaledForce.C │ │ │ │ │ └── ScaledForce.H │ │ │ │ ├── VirtualMass │ │ │ │ │ ├── VirtualMassForce.C │ │ │ │ │ └── VirtualMassForce.H │ │ │ │ └── forceSuSp │ │ │ │ │ ├── forceSuSp.H │ │ │ │ │ └── forceSuSpI.H │ │ │ ├── PatchInteractionModel │ │ │ │ ├── LocalInteraction │ │ │ │ │ ├── LocalInteraction.C │ │ │ │ │ ├── LocalInteraction.H │ │ │ │ │ ├── patchInteractionData.C │ │ │ │ │ ├── patchInteractionData.H │ │ │ │ │ ├── patchInteractionDataList.C │ │ │ │ │ └── patchInteractionDataList.H │ │ │ │ ├── NoInteraction │ │ │ │ │ ├── NoInteraction.C │ │ │ │ │ └── NoInteraction.H │ │ │ │ ├── PatchInteractionModel │ │ │ │ │ ├── PatchInteractionModel.C │ │ │ │ │ ├── PatchInteractionModel.H │ │ │ │ │ └── PatchInteractionModelNew.C │ │ │ │ ├── Rebound │ │ │ │ │ ├── Rebound.C │ │ │ │ │ └── Rebound.H │ │ │ │ └── StandardWallInteraction │ │ │ │ │ ├── StandardWallInteraction.C │ │ │ │ │ └── StandardWallInteraction.H │ │ │ ├── StochasticCollision │ │ │ │ ├── NoStochasticCollision │ │ │ │ │ ├── NoStochasticCollision.C │ │ │ │ │ └── NoStochasticCollision.H │ │ │ │ └── StochasticCollisionModel │ │ │ │ │ ├── StochasticCollisionModel.C │ │ │ │ │ ├── StochasticCollisionModel.H │ │ │ │ │ └── StochasticCollisionModelNew.C │ │ │ └── SurfaceFilmModel │ │ │ │ ├── NoSurfaceFilm │ │ │ │ ├── NoSurfaceFilm.C │ │ │ │ └── NoSurfaceFilm.H │ │ │ │ └── SurfaceFilmModel │ │ │ │ ├── SurfaceFilmModel.C │ │ │ │ ├── SurfaceFilmModel.H │ │ │ │ ├── SurfaceFilmModelI.H │ │ │ │ └── SurfaceFilmModelNew.C │ │ │ ├── Reacting │ │ │ ├── CompositionModel │ │ │ │ ├── CompositionModel │ │ │ │ │ ├── CompositionModel.C │ │ │ │ │ ├── CompositionModel.H │ │ │ │ │ └── CompositionModelNew.C │ │ │ │ ├── NoComposition │ │ │ │ │ ├── NoComposition.C │ │ │ │ │ └── NoComposition.H │ │ │ │ ├── SingleMixtureFraction │ │ │ │ │ ├── SingleMixtureFraction.C │ │ │ │ │ └── SingleMixtureFraction.H │ │ │ │ └── SinglePhaseMixture │ │ │ │ │ ├── SinglePhaseMixture.C │ │ │ │ │ └── SinglePhaseMixture.H │ │ │ ├── InjectionModel │ │ │ │ └── ReactingLookupTableInjection │ │ │ │ │ ├── ReactingLookupTableInjection.C │ │ │ │ │ ├── ReactingLookupTableInjection.H │ │ │ │ │ ├── reactingParcelInjectionData.C │ │ │ │ │ ├── reactingParcelInjectionData.H │ │ │ │ │ ├── reactingParcelInjectionDataI.H │ │ │ │ │ ├── reactingParcelInjectionDataIO.C │ │ │ │ │ ├── reactingParcelInjectionDataIOList.C │ │ │ │ │ └── reactingParcelInjectionDataIOList.H │ │ │ └── PhaseChangeModel │ │ │ │ ├── LiquidEvaporation │ │ │ │ ├── LiquidEvaporation.C │ │ │ │ └── LiquidEvaporation.H │ │ │ │ ├── LiquidEvaporationBoil │ │ │ │ ├── LiquidEvaporationBoil.C │ │ │ │ └── LiquidEvaporationBoil.H │ │ │ │ ├── NoPhaseChange │ │ │ │ ├── NoPhaseChange.C │ │ │ │ └── NoPhaseChange.H │ │ │ │ └── PhaseChangeModel │ │ │ │ ├── PhaseChangeModel.C │ │ │ │ ├── PhaseChangeModel.H │ │ │ │ └── PhaseChangeModelNew.C │ │ │ ├── ReactingMultiphase │ │ │ ├── DevolatilisationModel │ │ │ │ ├── ConstantRateDevolatilisation │ │ │ │ │ ├── ConstantRateDevolatilisation.C │ │ │ │ │ └── ConstantRateDevolatilisation.H │ │ │ │ ├── DevolatilisationModel │ │ │ │ │ ├── DevolatilisationModel.C │ │ │ │ │ ├── DevolatilisationModel.H │ │ │ │ │ └── DevolatilisationModelNew.C │ │ │ │ ├── NoDevolatilisation │ │ │ │ │ ├── NoDevolatilisation.C │ │ │ │ │ └── NoDevolatilisation.H │ │ │ │ └── SingleKineticRateDevolatilisation │ │ │ │ │ ├── SingleKineticRateDevolatilisation.C │ │ │ │ │ └── SingleKineticRateDevolatilisation.H │ │ │ ├── InjectionModel │ │ │ │ └── ReactingMultiphaseLookupTableInjection │ │ │ │ │ ├── ReactingMultiphaseLookupTableInjection.C │ │ │ │ │ ├── ReactingMultiphaseLookupTableInjection.H │ │ │ │ │ ├── reactingMultiphaseParcelInjectionData.C │ │ │ │ │ ├── reactingMultiphaseParcelInjectionData.H │ │ │ │ │ ├── reactingMultiphaseParcelInjectionDataI.H │ │ │ │ │ ├── reactingMultiphaseParcelInjectionDataIO.C │ │ │ │ │ ├── reactingMultiphaseParcelInjectionDataIOList.C │ │ │ │ │ └── reactingMultiphaseParcelInjectionDataIOList.H │ │ │ ├── StochasticCollision │ │ │ │ └── SuppressionCollision │ │ │ │ │ ├── SuppressionCollision.C │ │ │ │ │ └── SuppressionCollision.H │ │ │ └── SurfaceReactionModel │ │ │ │ ├── COxidationDiffusionLimitedRate │ │ │ │ ├── COxidationDiffusionLimitedRate.C │ │ │ │ └── COxidationDiffusionLimitedRate.H │ │ │ │ ├── COxidationHurtMitchell │ │ │ │ ├── COxidationHurtMitchell.C │ │ │ │ └── COxidationHurtMitchell.H │ │ │ │ ├── COxidationIntrinsicRate │ │ │ │ ├── COxidationIntrinsicRate.C │ │ │ │ └── COxidationIntrinsicRate.H │ │ │ │ ├── COxidationKineticDiffusionLimitedRate │ │ │ │ ├── COxidationKineticDiffusionLimitedRate.C │ │ │ │ └── COxidationKineticDiffusionLimitedRate.H │ │ │ │ ├── COxidationMurphyShaddix │ │ │ │ ├── COxidationMurphyShaddix.C │ │ │ │ └── COxidationMurphyShaddix.H │ │ │ │ ├── NoSurfaceReaction │ │ │ │ ├── NoSurfaceReaction.C │ │ │ │ └── NoSurfaceReaction.H │ │ │ │ └── SurfaceReactionModel │ │ │ │ ├── SurfaceReactionModel.C │ │ │ │ ├── SurfaceReactionModel.H │ │ │ │ └── SurfaceReactionModelNew.C │ │ │ ├── Spray │ │ │ ├── AtomisationModel │ │ │ │ ├── AtomisationModel │ │ │ │ │ ├── AtomisationModel.C │ │ │ │ │ ├── AtomisationModel.H │ │ │ │ │ └── AtomisationModelNew.C │ │ │ │ ├── BlobsSheetAtomisation │ │ │ │ │ ├── BlobsSheetAtomisation.C │ │ │ │ │ └── BlobsSheetAtomisation.H │ │ │ │ ├── LISAAtomisation │ │ │ │ │ ├── LISAAtomisation.C │ │ │ │ │ ├── LISAAtomisation.H │ │ │ │ │ ├── LISASMDCalcMethod1.H │ │ │ │ │ └── LISASMDCalcMethod2.H │ │ │ │ └── NoAtomisation │ │ │ │ │ ├── NoAtomisation.C │ │ │ │ │ └── NoAtomisation.H │ │ │ ├── BreakupModel │ │ │ │ ├── BreakupModel │ │ │ │ │ ├── BreakupModel.C │ │ │ │ │ ├── BreakupModel.H │ │ │ │ │ └── BreakupModelNew.C │ │ │ │ ├── ETAB │ │ │ │ │ ├── ETAB.C │ │ │ │ │ └── ETAB.H │ │ │ │ ├── NoBreakup │ │ │ │ │ ├── NoBreakup.C │ │ │ │ │ └── NoBreakup.H │ │ │ │ ├── PilchErdman │ │ │ │ │ ├── PilchErdman.C │ │ │ │ │ └── PilchErdman.H │ │ │ │ ├── ReitzDiwakar │ │ │ │ │ ├── ReitzDiwakar.C │ │ │ │ │ └── ReitzDiwakar.H │ │ │ │ ├── ReitzKHRT │ │ │ │ │ ├── ReitzKHRT.C │ │ │ │ │ └── ReitzKHRT.H │ │ │ │ ├── SHF │ │ │ │ │ ├── SHF.C │ │ │ │ │ └── SHF.H │ │ │ │ └── TAB │ │ │ │ │ ├── TAB.C │ │ │ │ │ ├── TAB.H │ │ │ │ │ ├── TABSMDCalcMethod1.H │ │ │ │ │ └── TABSMDCalcMethod2.H │ │ │ └── StochasticCollision │ │ │ │ ├── ORourkeCollision │ │ │ │ ├── ORourkeCollision.C │ │ │ │ └── ORourkeCollision.H │ │ │ │ └── TrajectoryCollision │ │ │ │ ├── TrajectoryCollision.C │ │ │ │ └── TrajectoryCollision.H │ │ │ ├── Thermodynamic │ │ │ ├── HeatTransferModel │ │ │ │ ├── HeatTransferModel │ │ │ │ │ ├── HeatTransferModel.C │ │ │ │ │ ├── HeatTransferModel.H │ │ │ │ │ └── HeatTransferModelNew.C │ │ │ │ ├── NoHeatTransfer │ │ │ │ │ ├── NoHeatTransfer.C │ │ │ │ │ └── NoHeatTransfer.H │ │ │ │ └── RanzMarshall │ │ │ │ │ ├── RanzMarshall.C │ │ │ │ │ └── RanzMarshall.H │ │ │ ├── InjectionModel │ │ │ │ └── ThermoLookupTableInjection │ │ │ │ │ ├── ThermoLookupTableInjection.C │ │ │ │ │ ├── ThermoLookupTableInjection.H │ │ │ │ │ ├── thermoParcelInjectionData.C │ │ │ │ │ ├── thermoParcelInjectionData.H │ │ │ │ │ ├── thermoParcelInjectionDataI.H │ │ │ │ │ ├── thermoParcelInjectionDataIO.C │ │ │ │ │ ├── thermoParcelInjectionDataIOList.C │ │ │ │ │ └── thermoParcelInjectionDataIOList.H │ │ │ └── SurfaceFilmModel │ │ │ │ └── ThermoSurfaceFilm │ │ │ │ ├── ThermoSurfaceFilm.C │ │ │ │ └── ThermoSurfaceFilm.H │ │ │ └── addOns │ │ │ └── radiation │ │ │ ├── absorptionEmission │ │ │ └── cloudAbsorptionEmission │ │ │ │ ├── cloudAbsorptionEmission.C │ │ │ │ └── cloudAbsorptionEmission.H │ │ │ └── scatter │ │ │ └── cloudScatter │ │ │ ├── cloudScatter.C │ │ │ └── cloudScatter.H │ ├── parcelTurbulence │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── parcels │ │ │ ├── derived │ │ │ │ ├── collidingParcel │ │ │ │ │ └── makeCollidingParcelSubmodels.C │ │ │ │ ├── momentumParcel │ │ │ │ │ └── makeMomentumParcelSubmodels.C │ │ │ │ ├── mppicParcel │ │ │ │ │ └── makeMppicParcelSubmodels.C │ │ │ │ ├── reactingMultiphaseParcel │ │ │ │ │ └── makeReactingMultiphaseParcelSubmodels.C │ │ │ │ ├── reactingParcel │ │ │ │ │ └── makeReactingParcelSubmodels.C │ │ │ │ ├── sprayParcel │ │ │ │ │ └── makeSprayParcelSubmodels.C │ │ │ │ └── thermoParcel │ │ │ │ │ └── makeThermoParcelSubmodels.C │ │ │ └── include │ │ │ │ ├── makeParcelTurbulenceDispersionModels.H │ │ │ │ └── makeThermoParcelTurbulenceForces.H │ │ └── submodels │ │ │ ├── Kinematic │ │ │ └── DispersionModel │ │ │ │ ├── DispersionRASModel │ │ │ │ ├── DispersionRASModel.C │ │ │ │ └── DispersionRASModel.H │ │ │ │ ├── GradientDispersionRAS │ │ │ │ ├── GradientDispersionRAS.C │ │ │ │ └── GradientDispersionRAS.H │ │ │ │ └── StochasticDispersionRAS │ │ │ │ ├── StochasticDispersionRAS.C │ │ │ │ └── StochasticDispersionRAS.H │ │ │ └── Thermodynamic │ │ │ └── ParticleForces │ │ │ └── BrownianMotion │ │ │ ├── BrownianMotionForce.C │ │ │ ├── BrownianMotionForce.H │ │ │ └── BrownianMotionForceI.H │ └── solidParticle │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── solidParticle.C │ │ ├── solidParticle.H │ │ ├── solidParticleCloud.C │ │ ├── solidParticleCloud.H │ │ ├── solidParticleCloudI.H │ │ ├── solidParticleI.H │ │ └── solidParticleIO.C ├── mesh │ ├── Allwmake │ ├── blockMesh │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── blockDescriptor │ │ │ ├── blockDescriptor.C │ │ │ ├── blockDescriptor.H │ │ │ ├── blockDescriptorEdges.C │ │ │ ├── blockDescriptorI.H │ │ │ └── blockDescriptorTest.C │ │ ├── blockEdges │ │ │ ├── BSplineEdge │ │ │ │ ├── BSpline.C │ │ │ │ ├── BSpline.H │ │ │ │ ├── BSplineEdge.C │ │ │ │ └── BSplineEdge.H │ │ │ ├── arcEdge │ │ │ │ ├── arcEdge.C │ │ │ │ └── arcEdge.H │ │ │ ├── blockEdge │ │ │ │ ├── blockEdge.C │ │ │ │ ├── blockEdge.H │ │ │ │ ├── blockEdgeI.H │ │ │ │ └── blockEdgeList.H │ │ │ ├── lineDivide │ │ │ │ ├── lineDivide.C │ │ │ │ └── lineDivide.H │ │ │ ├── lineEdge │ │ │ │ ├── lineEdge.C │ │ │ │ └── lineEdge.H │ │ │ ├── polyLineEdge │ │ │ │ ├── polyLine.C │ │ │ │ ├── polyLine.H │ │ │ │ ├── polyLineEdge.C │ │ │ │ └── polyLineEdge.H │ │ │ ├── projectCurveEdge │ │ │ │ ├── projectCurveEdge.C │ │ │ │ └── projectCurveEdge.H │ │ │ ├── projectEdge │ │ │ │ ├── projectEdge.C │ │ │ │ └── projectEdge.H │ │ │ └── splineEdge │ │ │ │ ├── CatmullRomSpline.C │ │ │ │ ├── CatmullRomSpline.H │ │ │ │ ├── splineEdge.C │ │ │ │ └── splineEdge.H │ │ ├── blockFaces │ │ │ ├── blockFace │ │ │ │ ├── blockFace.C │ │ │ │ ├── blockFace.H │ │ │ │ ├── blockFaceI.H │ │ │ │ └── blockFaceList.H │ │ │ └── projectFace │ │ │ │ ├── projectFace.C │ │ │ │ └── projectFace.H │ │ ├── blockMesh │ │ │ ├── blockMesh.C │ │ │ ├── blockMesh.H │ │ │ ├── blockMeshCheck.C │ │ │ ├── blockMeshCreate.C │ │ │ ├── blockMeshMerge.C │ │ │ ├── blockMeshMergeFast.C │ │ │ └── blockMeshTopology.C │ │ ├── blockMeshTools │ │ │ ├── blockMeshTools.C │ │ │ ├── blockMeshTools.H │ │ │ └── blockMeshToolsTemplates.C │ │ ├── blockVertices │ │ │ ├── blockVertex │ │ │ │ ├── blockVertex.C │ │ │ │ ├── blockVertex.H │ │ │ │ └── blockVertexList.H │ │ │ ├── namedVertex │ │ │ │ ├── namedVertex.C │ │ │ │ └── namedVertex.H │ │ │ ├── pointVertex │ │ │ │ ├── pointVertex.C │ │ │ │ └── pointVertex.H │ │ │ └── projectVertex │ │ │ │ ├── projectVertex.C │ │ │ │ └── projectVertex.H │ │ ├── blocks │ │ │ ├── block │ │ │ │ ├── block.C │ │ │ │ ├── block.H │ │ │ │ ├── blockCreate.C │ │ │ │ ├── blockI.H │ │ │ │ └── blockList.H │ │ │ └── namedBlock │ │ │ │ ├── namedBlock.C │ │ │ │ └── namedBlock.H │ │ └── gradingDescriptor │ │ │ ├── gradingDescriptor.C │ │ │ ├── gradingDescriptor.H │ │ │ ├── gradingDescriptors.C │ │ │ └── gradingDescriptors.H │ ├── extrudeModel │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cyclicSector │ │ │ ├── cyclicSector.C │ │ │ └── cyclicSector.H │ │ ├── extrudeModel │ │ │ ├── extrudeModel.C │ │ │ ├── extrudeModel.H │ │ │ └── extrudeModelNew.C │ │ ├── linearDirection │ │ │ ├── linearDirection.C │ │ │ └── linearDirection.H │ │ ├── linearNormal │ │ │ ├── linearNormal.C │ │ │ └── linearNormal.H │ │ ├── linearRadial │ │ │ ├── linearRadial.C │ │ │ └── linearRadial.H │ │ ├── planeExtrusion │ │ │ ├── planeExtrusion.C │ │ │ └── planeExtrusion.H │ │ ├── radial │ │ │ ├── radial.C │ │ │ └── radial.H │ │ ├── sector │ │ │ ├── sector.C │ │ │ └── sector.H │ │ ├── sigmaRadial │ │ │ ├── sigmaRadial.C │ │ │ └── sigmaRadial.H │ │ └── wedge │ │ │ ├── wedge.C │ │ │ └── wedge.H │ └── snappyHexMesh │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── externalDisplacementMeshMover │ │ ├── displacementMeshMoverMotionSolver.C │ │ ├── displacementMeshMoverMotionSolver.H │ │ ├── externalDisplacementMeshMover.C │ │ ├── externalDisplacementMeshMover.H │ │ ├── medialAxisMeshMover.C │ │ ├── medialAxisMeshMover.H │ │ └── zeroFixedValue │ │ │ ├── zeroFixedValuePointPatchField.C │ │ │ ├── zeroFixedValuePointPatchField.H │ │ │ ├── zeroFixedValuePointPatchFields.C │ │ │ └── zeroFixedValuePointPatchFields.H │ │ ├── meshRefinement │ │ ├── meshRefinement.C │ │ ├── meshRefinement.H │ │ ├── meshRefinementBaffles.C │ │ ├── meshRefinementMerge.C │ │ ├── meshRefinementProblemCells.C │ │ ├── meshRefinementRefine.C │ │ ├── meshRefinementTemplates.C │ │ ├── patchFaceOrientation.C │ │ ├── patchFaceOrientation.H │ │ └── patchFaceOrientationI.H │ │ ├── refinementFeatures │ │ ├── refinementFeatures.C │ │ └── refinementFeatures.H │ │ ├── refinementRegions │ │ ├── refinementRegions.C │ │ └── refinementRegions.H │ │ ├── refinementSurfaces │ │ ├── refinementSurfaces.C │ │ ├── refinementSurfaces.H │ │ ├── surfaceZonesInfo.C │ │ └── surfaceZonesInfo.H │ │ ├── snappyHexMeshDriver │ │ ├── layerParameters │ │ │ ├── layerParameters.C │ │ │ └── layerParameters.H │ │ ├── pointData │ │ │ ├── pointData.C │ │ │ ├── pointData.H │ │ │ └── pointDataI.H │ │ ├── refinementParameters │ │ │ ├── refinementParameters.C │ │ │ └── refinementParameters.H │ │ ├── snapParameters │ │ │ ├── snapParameters.C │ │ │ └── snapParameters.H │ │ ├── snappyLayerDriver.C │ │ ├── snappyLayerDriver.H │ │ ├── snappyLayerDriverShrink.C │ │ ├── snappyLayerDriverTemplates.C │ │ ├── snappyRefineDriver.C │ │ ├── snappyRefineDriver.H │ │ ├── snappySnapDriver.C │ │ ├── snappySnapDriver.H │ │ └── snappySnapDriverFeature.C │ │ └── trackedParticle │ │ ├── trackedParticle.C │ │ └── trackedParticle.H ├── meshTools │ ├── AMIInterpolation │ │ ├── AMIInterpolation │ │ │ ├── AMIInterpolation.C │ │ │ ├── AMIInterpolation.H │ │ │ ├── AMIInterpolationI.H │ │ │ ├── AMIInterpolationParallelOps.C │ │ │ ├── AMIInterpolationTemplates.C │ │ │ └── AMIMethod │ │ │ │ ├── AMIMethod │ │ │ │ ├── AMIMethod.C │ │ │ │ ├── AMIMethod.H │ │ │ │ ├── AMIMethodI.H │ │ │ │ └── AMIMethodNew.C │ │ │ │ ├── directAMI │ │ │ │ ├── directAMI.C │ │ │ │ └── directAMI.H │ │ │ │ ├── faceAreaWeightAMI │ │ │ │ ├── faceAreaWeightAMI.C │ │ │ │ └── faceAreaWeightAMI.H │ │ │ │ ├── mapNearestAMI │ │ │ │ ├── mapNearestAMI.C │ │ │ │ └── mapNearestAMI.H │ │ │ │ ├── partialFaceAreaWeightAMI │ │ │ │ ├── partialFaceAreaWeightAMI.C │ │ │ │ └── partialFaceAreaWeightAMI.H │ │ │ │ └── sweptFaceAreaWeightAMI │ │ │ │ ├── sweptFaceAreaWeightAMI.C │ │ │ │ └── sweptFaceAreaWeightAMI.H │ │ ├── GAMG │ │ │ ├── interfaceFields │ │ │ │ ├── cyclicACMIGAMGInterfaceField │ │ │ │ │ ├── cyclicACMIGAMGInterfaceField.C │ │ │ │ │ └── cyclicACMIGAMGInterfaceField.H │ │ │ │ ├── cyclicAMIGAMGInterfaceField │ │ │ │ │ ├── cyclicAMIGAMGInterfaceField.C │ │ │ │ │ └── cyclicAMIGAMGInterfaceField.H │ │ │ │ └── cyclicRepeatAMIGAMGInterfaceField │ │ │ │ │ ├── cyclicRepeatAMIGAMGInterfaceField.C │ │ │ │ │ └── cyclicRepeatAMIGAMGInterfaceField.H │ │ │ └── interfaces │ │ │ │ ├── cyclicACMIGAMGInterface │ │ │ │ ├── cyclicACMIGAMGInterface.C │ │ │ │ └── cyclicACMIGAMGInterface.H │ │ │ │ ├── cyclicAMIGAMGInterface │ │ │ │ ├── cyclicAMIGAMGInterface.C │ │ │ │ └── cyclicAMIGAMGInterface.H │ │ │ │ └── cyclicRepeatAMIGAMGInterface │ │ │ │ ├── cyclicRepeatAMIGAMGInterface.C │ │ │ │ └── cyclicRepeatAMIGAMGInterface.H │ │ ├── faceAreaIntersect │ │ │ ├── faceAreaIntersect.C │ │ │ ├── faceAreaIntersect.H │ │ │ └── faceAreaIntersectI.H │ │ └── patches │ │ │ ├── cyclicACMI │ │ │ ├── cyclicACMILduInterfaceField │ │ │ │ ├── cyclicACMILduInterface.C │ │ │ │ ├── cyclicACMILduInterface.H │ │ │ │ ├── cyclicACMILduInterfaceField.C │ │ │ │ └── cyclicACMILduInterfaceField.H │ │ │ ├── cyclicACMIPointPatch │ │ │ │ ├── cyclicACMIPointPatch.C │ │ │ │ └── cyclicACMIPointPatch.H │ │ │ ├── cyclicACMIPointPatchField │ │ │ │ ├── cyclicACMIPointPatchField.H │ │ │ │ ├── cyclicACMIPointPatchFields.C │ │ │ │ └── cyclicACMIPointPatchFields.H │ │ │ └── cyclicACMIPolyPatch │ │ │ │ ├── cyclicACMIPolyPatch.C │ │ │ │ ├── cyclicACMIPolyPatch.H │ │ │ │ └── cyclicACMIPolyPatchI.H │ │ │ ├── cyclicAMI │ │ │ ├── cyclicAMILduInterfaceField │ │ │ │ ├── cyclicAMILduInterface.C │ │ │ │ ├── cyclicAMILduInterface.H │ │ │ │ ├── cyclicAMILduInterfaceField.C │ │ │ │ └── cyclicAMILduInterfaceField.H │ │ │ ├── cyclicAMIPointPatch │ │ │ │ ├── cyclicAMIPointPatch.C │ │ │ │ └── cyclicAMIPointPatch.H │ │ │ ├── cyclicAMIPointPatchField │ │ │ │ ├── cyclicAMIPointPatchField.C │ │ │ │ ├── cyclicAMIPointPatchField.H │ │ │ │ ├── cyclicAMIPointPatchFields.C │ │ │ │ └── cyclicAMIPointPatchFields.H │ │ │ └── cyclicAMIPolyPatch │ │ │ │ ├── cyclicAMIPolyPatch.C │ │ │ │ ├── cyclicAMIPolyPatch.H │ │ │ │ ├── cyclicAMIPolyPatchI.H │ │ │ │ └── cyclicAMIPolyPatchTemplates.C │ │ │ └── cyclicRepeatAMI │ │ │ ├── cyclicRepeatAMILduInterfaceField │ │ │ ├── cyclicRepeatAMILduInterface.C │ │ │ ├── cyclicRepeatAMILduInterface.H │ │ │ ├── cyclicRepeatAMILduInterfaceField.C │ │ │ └── cyclicRepeatAMILduInterfaceField.H │ │ │ ├── cyclicRepeatAMIPointPatch │ │ │ ├── cyclicRepeatAMIPointPatch.C │ │ │ └── cyclicRepeatAMIPointPatch.H │ │ │ ├── cyclicRepeatAMIPointPatchField │ │ │ ├── cyclicRepeatAMIPointPatchField.H │ │ │ ├── cyclicRepeatAMIPointPatchFields.C │ │ │ └── cyclicRepeatAMIPointPatchFields.H │ │ │ └── cyclicRepeatAMIPolyPatch │ │ │ ├── cyclicRepeatAMIPolyPatch.C │ │ │ ├── cyclicRepeatAMIPolyPatch.H │ │ │ └── cyclicRepeatAMIPolyPatchI.H │ ├── Make │ │ ├── files │ │ └── options │ ├── algorithms │ │ ├── MeshWave │ │ │ ├── FaceCellWave.C │ │ │ ├── FaceCellWave.H │ │ │ ├── FaceCellWaveName.C │ │ │ ├── MeshWave.C │ │ │ ├── MeshWave.H │ │ │ └── MeshWaveName.C │ │ ├── PatchEdgeFaceWave │ │ │ ├── PatchEdgeFaceWave.C │ │ │ ├── PatchEdgeFaceWave.H │ │ │ ├── PatchEdgeFaceWaveName.C │ │ │ ├── patchEdgeFaceInfo.C │ │ │ ├── patchEdgeFaceInfo.H │ │ │ ├── patchEdgeFaceInfoI.H │ │ │ ├── patchEdgeFaceRegion.C │ │ │ ├── patchEdgeFaceRegion.H │ │ │ ├── patchEdgeFaceRegionI.H │ │ │ ├── patchEdgeFaceRegions.C │ │ │ ├── patchEdgeFaceRegions.H │ │ │ ├── patchEdgeFaceRegionsI.H │ │ │ ├── patchPatchDist.C │ │ │ └── patchPatchDist.H │ │ └── PointEdgeWave │ │ │ ├── PointEdgeWave.C │ │ │ ├── PointEdgeWave.H │ │ │ ├── PointEdgeWaveName.C │ │ │ ├── pointEdgePoint.C │ │ │ ├── pointEdgePoint.H │ │ │ └── pointEdgePointI.H │ ├── cellClassification │ │ ├── cellClassification.C │ │ ├── cellClassification.H │ │ ├── cellInfo.C │ │ ├── cellInfo.H │ │ └── cellInfoI.H │ ├── cellDist │ │ ├── cellDistFuncs.C │ │ ├── cellDistFuncs.H │ │ ├── cellDistFuncsTemplates.C │ │ ├── patchWave │ │ │ ├── patchDataWave.C │ │ │ ├── patchDataWave.H │ │ │ ├── patchWave.C │ │ │ └── patchWave.H │ │ └── wallPoint │ │ │ ├── wallPoint.C │ │ │ ├── wallPoint.H │ │ │ ├── wallPointData.C │ │ │ ├── wallPointData.H │ │ │ ├── wallPointDataI.H │ │ │ └── wallPointI.H │ ├── cellFeatures │ │ ├── cellFeatures.C │ │ └── cellFeatures.H │ ├── cellQuality │ │ ├── cellQuality.C │ │ └── cellQuality.H │ ├── coordinateSystems │ │ ├── cartesianCS.C │ │ ├── cartesianCS.H │ │ ├── coordinateRotation │ │ │ ├── EulerCoordinateRotation.C │ │ │ ├── EulerCoordinateRotation.H │ │ │ ├── STARCDCoordinateRotation.C │ │ │ ├── STARCDCoordinateRotation.H │ │ │ ├── axesRotation.C │ │ │ ├── axesRotation.H │ │ │ ├── coordinateRotation.C │ │ │ ├── coordinateRotation.H │ │ │ ├── coordinateRotationNew.C │ │ │ ├── cylindrical.C │ │ │ └── cylindrical.H │ │ ├── coordinateSystem.C │ │ ├── coordinateSystem.H │ │ ├── coordinateSystemNew.C │ │ ├── coordinateSystems.C │ │ ├── coordinateSystems.H │ │ ├── cylindricalCS.C │ │ └── cylindricalCS.H │ ├── edgeFaceCirculator │ │ ├── edgeFaceCirculator.C │ │ ├── edgeFaceCirculator.H │ │ └── edgeFaceCirculatorI.H │ ├── edgeMesh │ │ ├── edgeMesh.C │ │ ├── edgeMesh.H │ │ ├── edgeMeshFormats │ │ │ ├── edgeMesh │ │ │ │ ├── edgeMeshFormat.C │ │ │ │ ├── edgeMeshFormat.H │ │ │ │ └── edgeMeshFormatRunTime.C │ │ │ ├── edgeMeshFormatsCore.C │ │ │ ├── edgeMeshFormatsCore.H │ │ │ ├── extendedFeatureEdgeMesh │ │ │ │ ├── extendedFeatureEdgeMeshFormat.C │ │ │ │ ├── extendedFeatureEdgeMeshFormat.H │ │ │ │ └── extendedFeatureEdgeMeshFormatRunTime.C │ │ │ ├── nas │ │ │ │ ├── NASedgeFormat.C │ │ │ │ ├── NASedgeFormat.H │ │ │ │ └── NASedgeFormatRunTime.C │ │ │ ├── obj │ │ │ │ ├── OBJedgeFormat.C │ │ │ │ ├── OBJedgeFormat.H │ │ │ │ └── OBJedgeFormatRunTime.C │ │ │ ├── starcd │ │ │ │ ├── STARCDedgeFormat.C │ │ │ │ ├── STARCDedgeFormat.H │ │ │ │ └── STARCDedgeFormatRunTime.C │ │ │ └── vtk │ │ │ │ ├── VTKedgeFormat.C │ │ │ │ ├── VTKedgeFormat.H │ │ │ │ └── VTKedgeFormatRunTime.C │ │ ├── edgeMeshI.H │ │ ├── edgeMeshIO.C │ │ ├── edgeMeshNew.C │ │ ├── extendedEdgeMesh │ │ │ ├── extendedEdgeMesh.C │ │ │ ├── extendedEdgeMesh.H │ │ │ ├── extendedEdgeMeshFormats │ │ │ │ └── extendedEdgeMeshFormat │ │ │ │ │ ├── extendedEdgeMeshFormat.C │ │ │ │ │ ├── extendedEdgeMeshFormat.H │ │ │ │ │ └── extendedEdgeMeshFormatRunTime.C │ │ │ ├── extendedEdgeMeshI.H │ │ │ ├── extendedEdgeMeshNew.C │ │ │ ├── extendedEdgeMeshTemplates.C │ │ │ └── extendedFeatureEdgeMesh │ │ │ │ ├── extendedFeatureEdgeMesh.C │ │ │ │ ├── extendedFeatureEdgeMesh.H │ │ │ │ ├── extendedFeatureEdgeMeshI.H │ │ │ │ └── extendedFeatureEdgeMeshTemplates.C │ │ └── featureEdgeMesh │ │ │ ├── featureEdgeMesh.C │ │ │ └── featureEdgeMesh.H │ ├── indexedOctree │ │ ├── treeDataEdge.C │ │ ├── treeDataEdge.H │ │ ├── treeDataFace.C │ │ ├── treeDataFace.H │ │ ├── treeDataPoint.C │ │ ├── treeDataPoint.H │ │ ├── treeDataPrimitivePatch.C │ │ ├── treeDataPrimitivePatch.H │ │ ├── treeDataPrimitivePatchName.C │ │ ├── treeDataTriSurface.C │ │ └── treeDataTriSurface.H │ ├── mappedPatches │ │ ├── mappedPointPatch │ │ │ ├── mappedPointPatch.C │ │ │ ├── mappedPointPatch.H │ │ │ ├── mappedWallPointPatch.C │ │ │ └── mappedWallPointPatch.H │ │ └── mappedPolyPatch │ │ │ ├── mappedPatchBase.C │ │ │ ├── mappedPatchBase.H │ │ │ ├── mappedPatchBaseI.H │ │ │ ├── mappedPatchBaseTemplates.C │ │ │ ├── mappedPolyPatch.C │ │ │ ├── mappedPolyPatch.H │ │ │ ├── mappedVariableThicknessWallPolyPatch.C │ │ │ ├── mappedVariableThicknessWallPolyPatch.H │ │ │ ├── mappedWallPolyPatch.C │ │ │ └── mappedWallPolyPatch.H │ ├── meshSearch │ │ ├── meshSearch.C │ │ ├── meshSearch.H │ │ ├── meshSearchFACE_CENTRE_TRISMeshObject.C │ │ ├── meshSearchFACE_CENTRE_TRISMeshObject.H │ │ ├── meshSearchMeshObject.C │ │ └── meshSearchMeshObject.H │ ├── meshStructure │ │ ├── meshStructure.C │ │ ├── meshStructure.H │ │ ├── meshStructureI.H │ │ ├── pointTopoDistanceData.C │ │ ├── pointTopoDistanceData.H │ │ ├── pointTopoDistanceDataI.H │ │ ├── topoDistanceData.C │ │ ├── topoDistanceData.H │ │ └── topoDistanceDataI.H │ ├── meshTools │ │ ├── meshTools.C │ │ ├── meshTools.H │ │ └── meshToolsTemplates.C │ ├── momentOfInertia │ │ ├── momentOfInertia.C │ │ ├── momentOfInertia.H │ │ ├── volInt.ps.gz │ │ └── volumeIntegration │ │ │ ├── README │ │ │ ├── cube │ │ │ ├── icosa │ │ │ ├── tetra │ │ │ └── volInt.c │ ├── polyMeshZipUpCells │ │ ├── polyMeshZipUpCells.C │ │ └── polyMeshZipUpCells.H │ ├── regionCoupled │ │ ├── GAMG │ │ │ ├── interfaceFields │ │ │ │ └── regionCoupledGAMGInterfaceField │ │ │ │ │ ├── regionCoupledGAMGInterfaceField.C │ │ │ │ │ ├── regionCoupledGAMGInterfaceField.H │ │ │ │ │ ├── regionCoupledWallGAMGInterfaceField.C │ │ │ │ │ └── regionCoupledWallGAMGInterfaceField.H │ │ │ └── interfaces │ │ │ │ └── regionCoupledGAMGInterface │ │ │ │ ├── regionCoupledBaseGAMGInterface.C │ │ │ │ ├── regionCoupledBaseGAMGInterface.H │ │ │ │ ├── regionCoupledGAMGInterface.C │ │ │ │ ├── regionCoupledGAMGInterface.H │ │ │ │ ├── regionCoupledWallGAMGInterface.C │ │ │ │ └── regionCoupledWallGAMGInterface.H │ │ └── patches │ │ │ ├── regionCoupledLduInterface │ │ │ ├── regionCoupledLduInterface.C │ │ │ └── regionCoupledLduInterface.H │ │ │ ├── regionCoupledPointPatch │ │ │ ├── regionCoupledPointPatch.C │ │ │ ├── regionCoupledPointPatch.H │ │ │ ├── regionCoupledWallPointPatch.C │ │ │ └── regionCoupledWallPointPatch.H │ │ │ └── regionCoupledPolyPatch │ │ │ ├── regionCoupledBase.C │ │ │ ├── regionCoupledBase.H │ │ │ ├── regionCoupledBaseTemplates.C │ │ │ ├── regionCoupledPolyPatch.C │ │ │ ├── regionCoupledPolyPatch.H │ │ │ ├── regionCoupledWallPolyPatch.C │ │ │ └── regionCoupledWallPolyPatch.H │ ├── regionSplit │ │ ├── localPointRegion.C │ │ ├── localPointRegion.H │ │ ├── minData.H │ │ ├── minDataI.H │ │ ├── regionSplit.C │ │ └── regionSplit.H │ ├── searchableSurfaces │ │ ├── closedTriSurfaceMesh │ │ │ ├── closedTriSurfaceMesh.C │ │ │ └── closedTriSurfaceMesh.H │ │ ├── searchableBox │ │ │ ├── searchableBox.C │ │ │ └── searchableBox.H │ │ ├── searchableCylinder │ │ │ ├── searchableCylinder.C │ │ │ └── searchableCylinder.H │ │ ├── searchableDisk │ │ │ ├── searchableDisk.C │ │ │ └── searchableDisk.H │ │ ├── searchableExtrudedCircle │ │ │ ├── searchableExtrudedCircle.C │ │ │ └── searchableExtrudedCircle.H │ │ ├── searchablePlane │ │ │ ├── searchablePlane.C │ │ │ └── searchablePlane.H │ │ ├── searchablePlate │ │ │ ├── searchablePlate.C │ │ │ └── searchablePlate.H │ │ ├── searchableSphere │ │ │ ├── searchableSphere.C │ │ │ └── searchableSphere.H │ │ ├── searchableSurface │ │ │ ├── searchableSurface.C │ │ │ └── searchableSurface.H │ │ ├── searchableSurfaceCollection │ │ │ ├── searchableSurfaceCollection.C │ │ │ └── searchableSurfaceCollection.H │ │ ├── searchableSurfaceWithGaps │ │ │ ├── searchableSurfaceWithGaps.C │ │ │ └── searchableSurfaceWithGaps.H │ │ ├── searchableSurfaces │ │ │ ├── searchableSurfaces.C │ │ │ └── searchableSurfaces.H │ │ ├── searchableSurfacesQueries │ │ │ ├── searchableSurfacesQueries.C │ │ │ └── searchableSurfacesQueries.H │ │ └── triSurfaceMesh │ │ │ ├── extractCloseness.C │ │ │ ├── triSurfaceMesh.C │ │ │ └── triSurfaceMesh.H │ ├── sets │ │ ├── cellSources │ │ │ ├── boxToCell │ │ │ │ ├── boxToCell.C │ │ │ │ └── boxToCell.H │ │ │ ├── cellToCell │ │ │ │ ├── cellToCell.C │ │ │ │ └── cellToCell.H │ │ │ ├── cylinderAnnulusToCell │ │ │ │ ├── cylinderAnnulusToCell.C │ │ │ │ └── cylinderAnnulusToCell.H │ │ │ ├── cylinderToCell │ │ │ │ ├── cylinderToCell.C │ │ │ │ └── cylinderToCell.H │ │ │ ├── faceToCell │ │ │ │ ├── faceToCell.C │ │ │ │ └── faceToCell.H │ │ │ ├── faceZoneToCell │ │ │ │ ├── faceZoneToCell.C │ │ │ │ └── faceZoneToCell.H │ │ │ ├── fieldToCell │ │ │ │ ├── fieldDictionary.H │ │ │ │ ├── fieldToCell.C │ │ │ │ └── fieldToCell.H │ │ │ ├── labelToCell │ │ │ │ ├── labelToCell.C │ │ │ │ └── labelToCell.H │ │ │ ├── nbrToCell │ │ │ │ ├── nbrToCell.C │ │ │ │ └── nbrToCell.H │ │ │ ├── nearestToCell │ │ │ │ ├── nearestToCell.C │ │ │ │ └── nearestToCell.H │ │ │ ├── patchDistanceToCell │ │ │ │ ├── patchDistanceToCell.C │ │ │ │ └── patchDistanceToCell.H │ │ │ ├── pointToCell │ │ │ │ ├── pointToCell.C │ │ │ │ └── pointToCell.H │ │ │ ├── regionToCell │ │ │ │ ├── regionToCell.C │ │ │ │ └── regionToCell.H │ │ │ ├── rotatedBoxToCell │ │ │ │ ├── rotatedBoxToCell.C │ │ │ │ └── rotatedBoxToCell.H │ │ │ ├── shapeToCell │ │ │ │ ├── shapeToCell.C │ │ │ │ └── shapeToCell.H │ │ │ ├── sphereToCell │ │ │ │ ├── sphereToCell.C │ │ │ │ └── sphereToCell.H │ │ │ ├── surfaceToCell │ │ │ │ ├── surfaceToCell.C │ │ │ │ └── surfaceToCell.H │ │ │ ├── targetVolumeToCell │ │ │ │ ├── targetVolumeToCell.C │ │ │ │ └── targetVolumeToCell.H │ │ │ └── zoneToCell │ │ │ │ ├── zoneToCell.C │ │ │ │ └── zoneToCell.H │ │ ├── cellZoneSources │ │ │ └── setToCellZone │ │ │ │ ├── setToCellZone.C │ │ │ │ └── setToCellZone.H │ │ ├── faceSources │ │ │ ├── boundaryToFace │ │ │ │ ├── boundaryToFace.C │ │ │ │ └── boundaryToFace.H │ │ │ ├── boxToFace │ │ │ │ ├── boxToFace.C │ │ │ │ └── boxToFace.H │ │ │ ├── cellToFace │ │ │ │ ├── cellToFace.C │ │ │ │ └── cellToFace.H │ │ │ ├── cylinderAnnulusToFace │ │ │ │ ├── cylinderAnnulusToFace.C │ │ │ │ └── cylinderAnnulusToFace.H │ │ │ ├── cylinderToFace │ │ │ │ ├── cylinderToFace.C │ │ │ │ └── cylinderToFace.H │ │ │ ├── faceToFace │ │ │ │ ├── faceToFace.C │ │ │ │ └── faceToFace.H │ │ │ ├── labelToFace │ │ │ │ ├── labelToFace.C │ │ │ │ └── labelToFace.H │ │ │ ├── normalToFace │ │ │ │ ├── normalToFace.C │ │ │ │ └── normalToFace.H │ │ │ ├── patchToFace │ │ │ │ ├── patchToFace.C │ │ │ │ └── patchToFace.H │ │ │ ├── pointToFace │ │ │ │ ├── pointToFace.C │ │ │ │ └── pointToFace.H │ │ │ ├── regionToFace │ │ │ │ ├── regionToFace.C │ │ │ │ └── regionToFace.H │ │ │ └── zoneToFace │ │ │ │ ├── zoneToFace.C │ │ │ │ └── zoneToFace.H │ │ ├── faceZoneSources │ │ │ ├── faceZoneToFaceZone │ │ │ │ ├── faceZoneToFaceZone.C │ │ │ │ └── faceZoneToFaceZone.H │ │ │ ├── planeToFaceZone │ │ │ │ ├── planeToFaceZone.C │ │ │ │ └── planeToFaceZone.H │ │ │ ├── searchableSurfaceToFaceZone │ │ │ │ ├── searchableSurfaceToFaceZone.C │ │ │ │ └── searchableSurfaceToFaceZone.H │ │ │ ├── setAndNormalToFaceZone │ │ │ │ ├── setAndNormalToFaceZone.C │ │ │ │ └── setAndNormalToFaceZone.H │ │ │ ├── setToFaceZone │ │ │ │ ├── setToFaceZone.C │ │ │ │ └── setToFaceZone.H │ │ │ └── setsToFaceZone │ │ │ │ ├── setsToFaceZone.C │ │ │ │ └── setsToFaceZone.H │ │ ├── pointSources │ │ │ ├── boxToPoint │ │ │ │ ├── boxToPoint.C │ │ │ │ └── boxToPoint.H │ │ │ ├── cellToPoint │ │ │ │ ├── cellToPoint.C │ │ │ │ └── cellToPoint.H │ │ │ ├── faceToPoint │ │ │ │ ├── faceToPoint.C │ │ │ │ └── faceToPoint.H │ │ │ ├── labelToPoint │ │ │ │ ├── labelToPoint.C │ │ │ │ └── labelToPoint.H │ │ │ ├── nearestToPoint │ │ │ │ ├── nearestToPoint.C │ │ │ │ └── nearestToPoint.H │ │ │ ├── pointToPoint │ │ │ │ ├── pointToPoint.C │ │ │ │ └── pointToPoint.H │ │ │ ├── surfaceToPoint │ │ │ │ ├── surfaceToPoint.C │ │ │ │ └── surfaceToPoint.H │ │ │ └── zoneToPoint │ │ │ │ ├── zoneToPoint.C │ │ │ │ └── zoneToPoint.H │ │ ├── pointZoneSources │ │ │ └── setToPointZone │ │ │ │ ├── setToPointZone.C │ │ │ │ └── setToPointZone.H │ │ ├── topoSetSource │ │ │ ├── topoSetSource.C │ │ │ └── topoSetSource.H │ │ └── topoSets │ │ │ ├── cellSet.C │ │ │ ├── cellSet.H │ │ │ ├── cellZoneSet.C │ │ │ ├── cellZoneSet.H │ │ │ ├── faceSet.C │ │ │ ├── faceSet.H │ │ │ ├── faceZoneSet.C │ │ │ ├── faceZoneSet.H │ │ │ ├── pointSet.C │ │ │ ├── pointSet.H │ │ │ ├── pointZoneSet.C │ │ │ ├── pointZoneSet.H │ │ │ ├── topoSet.C │ │ │ └── topoSet.H │ ├── surfaceSets │ │ ├── surfaceSets.C │ │ └── surfaceSets.H │ ├── tetOverlapVolume │ │ ├── tetOverlapVolume.C │ │ └── tetOverlapVolume.H │ ├── triSurface │ │ ├── booleanOps │ │ │ ├── booleanSurface │ │ │ │ ├── booleanSurface.C │ │ │ │ └── booleanSurface.H │ │ │ ├── intersectedSurface │ │ │ │ ├── edgeSurface.C │ │ │ │ ├── edgeSurface.H │ │ │ │ ├── intersectedSurface.C │ │ │ │ └── intersectedSurface.H │ │ │ └── surfaceIntersection │ │ │ │ ├── edgeIntersections.C │ │ │ │ ├── edgeIntersections.H │ │ │ │ ├── surfaceIntersection.C │ │ │ │ ├── surfaceIntersection.H │ │ │ │ ├── surfaceIntersectionFuncs.C │ │ │ │ └── surfaceIntersectionTemplates.C │ │ ├── orientedSurface │ │ │ ├── orientedSurface.C │ │ │ └── orientedSurface.H │ │ ├── surfaceFeatures │ │ │ ├── surfaceFeatures.C │ │ │ └── surfaceFeatures.H │ │ ├── surfaceLocation │ │ │ ├── surfaceLocation.C │ │ │ └── surfaceLocation.H │ │ ├── triSurfaceSearch │ │ │ ├── triSurfaceRegionSearch.C │ │ │ ├── triSurfaceRegionSearch.H │ │ │ ├── triSurfaceSearch.C │ │ │ └── triSurfaceSearch.H │ │ ├── triSurfaceTools │ │ │ ├── geompack │ │ │ │ ├── geompack.C │ │ │ │ └── geompack.H │ │ │ ├── pointToPointPlanarInterpolation.C │ │ │ ├── pointToPointPlanarInterpolation.H │ │ │ ├── pointToPointPlanarInterpolationTemplates.C │ │ │ ├── triSurfaceTools.C │ │ │ └── triSurfaceTools.H │ │ └── triangleFuncs │ │ │ ├── triangleFuncs.C │ │ │ └── triangleFuncs.H │ └── twoDPointCorrector │ │ ├── twoDPointCorrector.C │ │ └── twoDPointCorrector.H ├── parallel │ ├── Allwmake │ ├── decompose │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── decompose │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── decompositionModel.C │ │ │ ├── decompositionModel.H │ │ │ ├── fvFieldDecomposer.C │ │ │ ├── fvFieldDecomposer.H │ │ │ └── fvFieldDecomposerDecomposeFields.C │ │ ├── decompositionMethods │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── decompositionConstraints │ │ │ │ ├── decompositionConstraint │ │ │ │ │ ├── decompositionConstraint.C │ │ │ │ │ └── decompositionConstraint.H │ │ │ │ ├── preserveBaffles │ │ │ │ │ ├── preserveBafflesConstraint.C │ │ │ │ │ └── preserveBafflesConstraint.H │ │ │ │ ├── preserveFaceZones │ │ │ │ │ ├── preserveFaceZonesConstraint.C │ │ │ │ │ └── preserveFaceZonesConstraint.H │ │ │ │ ├── preservePatches │ │ │ │ │ ├── preservePatchesConstraint.C │ │ │ │ │ └── preservePatchesConstraint.H │ │ │ │ ├── refinementHistory │ │ │ │ │ ├── refinementHistoryConstraint.C │ │ │ │ │ └── refinementHistoryConstraint.H │ │ │ │ └── singleProcessorFaceSets │ │ │ │ │ ├── singleProcessorFaceSetsConstraint.C │ │ │ │ │ └── singleProcessorFaceSetsConstraint.H │ │ │ ├── decompositionMethod │ │ │ │ ├── decompositionMethod.C │ │ │ │ └── decompositionMethod.H │ │ │ ├── geomDecomp │ │ │ │ ├── geomDecomp.C │ │ │ │ └── geomDecomp.H │ │ │ ├── hierarchGeomDecomp │ │ │ │ ├── hierarchGeomDecomp.C │ │ │ │ └── hierarchGeomDecomp.H │ │ │ ├── manualDecomp │ │ │ │ ├── manualDecomp.C │ │ │ │ └── manualDecomp.H │ │ │ ├── multiLevelDecomp │ │ │ │ ├── multiLevelDecomp.C │ │ │ │ └── multiLevelDecomp.H │ │ │ ├── noDecomp │ │ │ │ ├── noDecomp.C │ │ │ │ └── noDecomp.H │ │ │ ├── simpleGeomDecomp │ │ │ │ ├── simpleGeomDecomp.C │ │ │ │ └── simpleGeomDecomp.H │ │ │ └── structuredDecomp │ │ │ │ ├── structuredDecomp.C │ │ │ │ └── structuredDecomp.H │ │ ├── metisDecomp │ │ │ ├── Allwmake │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── metisDecomp.C │ │ │ └── metisDecomp.H │ │ ├── ptscotchDecomp │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── ptscotchDecomp.C │ │ │ └── ptscotchDecomp.H │ │ └── scotchDecomp │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── scotchDecomp.C │ │ │ └── scotchDecomp.H │ ├── distributed │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── distributedTriSurfaceMesh │ │ │ ├── distributedTriSurfaceMesh.C │ │ │ ├── distributedTriSurfaceMesh.H │ │ │ └── distributedTriSurfaceMeshTemplates.C │ └── reconstruct │ │ ├── Allwmake │ │ └── reconstruct │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── fvFieldReconstructor.C │ │ ├── fvFieldReconstructor.H │ │ ├── fvFieldReconstructorReconstructFields.C │ │ ├── pointFieldReconstructor.C │ │ ├── pointFieldReconstructor.H │ │ ├── pointFieldReconstructorReconstructFields.C │ │ ├── processorMeshes.C │ │ ├── processorMeshes.H │ │ ├── reconstructLagrangian.H │ │ ├── reconstructLagrangianFields.C │ │ └── reconstructLagrangianPositions.C ├── radiationModels │ ├── Make │ │ ├── files │ │ └── options │ ├── absorptionEmissionModels │ │ ├── absorptionEmissionModel │ │ │ ├── absorptionEmissionModel.C │ │ │ ├── absorptionEmissionModel.H │ │ │ └── absorptionEmissionModelNew.C │ │ ├── binary │ │ │ ├── binary.C │ │ │ └── binary.H │ │ ├── constantAbsorptionEmission │ │ │ ├── constantAbsorptionEmission.C │ │ │ └── constantAbsorptionEmission.H │ │ ├── greyMean │ │ │ ├── greyMean.C │ │ │ └── greyMean.H │ │ ├── interpolationLookUpTable │ │ │ ├── interpolationLookUpTable.C │ │ │ ├── interpolationLookUpTable.H │ │ │ └── interpolationLookUpTableI.H │ │ ├── noAbsorptionEmission │ │ │ ├── noAbsorptionEmission.C │ │ │ └── noAbsorptionEmission.H │ │ └── wideBand │ │ │ ├── wideBand.C │ │ │ └── wideBand.H │ ├── derivedFvPatchFields │ │ ├── MarshakRadiation │ │ │ ├── MarshakRadiationFvPatchScalarField.C │ │ │ └── MarshakRadiationFvPatchScalarField.H │ │ ├── MarshakRadiationFixedTemperature │ │ │ ├── MarshakRadiationFixedTemperatureFvPatchScalarField.C │ │ │ └── MarshakRadiationFixedTemperatureFvPatchScalarField.H │ │ ├── greyDiffusiveRadiation │ │ │ ├── greyDiffusiveRadiationMixedFvPatchScalarField.C │ │ │ └── greyDiffusiveRadiationMixedFvPatchScalarField.H │ │ ├── greyDiffusiveViewFactor │ │ │ ├── greyDiffusiveViewFactorFixedValueFvPatchScalarField.C │ │ │ └── greyDiffusiveViewFactorFixedValueFvPatchScalarField.H │ │ ├── radiationCoupledBase │ │ │ ├── radiationCoupledBase.C │ │ │ └── radiationCoupledBase.H │ │ └── wideBandDiffusiveRadiation │ │ │ ├── wideBandDiffusiveRadiationMixedFvPatchScalarField.C │ │ │ └── wideBandDiffusiveRadiationMixedFvPatchScalarField.H │ ├── fvModels │ │ └── radiation │ │ │ ├── radiation.C │ │ │ └── radiation.H │ ├── include │ │ ├── createIncompressibleRadiationModel.H │ │ └── createRadiationModel.H │ ├── radiationModels │ │ ├── P1 │ │ │ ├── P1.C │ │ │ └── P1.H │ │ ├── fvDOM │ │ │ ├── absorptionCoeffs │ │ │ │ ├── absorptionCoeffs.C │ │ │ │ ├── absorptionCoeffs.H │ │ │ │ └── absorptionCoeffsI.H │ │ │ ├── blackBodyEmission │ │ │ │ ├── blackBodyEmission.C │ │ │ │ └── blackBodyEmission.H │ │ │ ├── fvDOM.C │ │ │ ├── fvDOM.H │ │ │ ├── fvDOMI.H │ │ │ └── radiativeIntensityRay │ │ │ │ ├── radiativeIntensityRay.C │ │ │ │ ├── radiativeIntensityRay.H │ │ │ │ └── radiativeIntensityRayI.H │ │ ├── noRadiation │ │ │ ├── noRadiation.C │ │ │ └── noRadiation.H │ │ ├── opaqueSolid │ │ │ ├── opaqueSolid.C │ │ │ └── opaqueSolid.H │ │ ├── radiationModel │ │ │ ├── radiationModel.C │ │ │ ├── radiationModel.H │ │ │ └── radiationModelNew.C │ │ └── viewFactor │ │ │ ├── viewFactor.C │ │ │ ├── viewFactor.H │ │ │ └── viewFactorI.H │ ├── scatterModels │ │ ├── constantScatter │ │ │ ├── constantScatter.C │ │ │ └── constantScatter.H │ │ ├── noScatter │ │ │ ├── noScatter.C │ │ │ └── noScatter.H │ │ └── scatterModel │ │ │ ├── scatterModel.C │ │ │ ├── scatterModel.H │ │ │ └── scatterModelNew.C │ └── sootModels │ │ ├── noSoot │ │ ├── noSoot.C │ │ └── noSoot.H │ │ └── sootModel │ │ ├── makeThermoSootModel.H │ │ ├── sootModel.C │ │ ├── sootModel.H │ │ └── sootModelNew.C ├── randomProcesses │ ├── Kmesh │ │ ├── Kmesh.C │ │ └── Kmesh.H │ ├── Make │ │ ├── files │ │ └── options │ ├── fft │ │ ├── calcEk.C │ │ ├── calcEk.H │ │ ├── fft.C │ │ ├── fft.H │ │ ├── fftRenumber.C │ │ ├── fftRenumber.H │ │ ├── kShellIntegration.C │ │ └── kShellIntegration.H │ ├── noise │ │ ├── noiseFFT.C │ │ └── noiseFFT.H │ ├── processes │ │ └── UOprocess │ │ │ ├── UOprocess.C │ │ │ └── UOprocess.H │ └── turbulence │ │ ├── Ek.H │ │ ├── turbGen.C │ │ └── turbGen.H ├── regionModels │ ├── Allwclean │ ├── Allwmake │ ├── regionModel │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── derivedFvPatches │ │ │ └── mappedVariableThicknessWall │ │ │ │ ├── mappedVariableThicknessWallFvPatch.C │ │ │ │ └── mappedVariableThicknessWallFvPatch.H │ │ ├── regionModel │ │ │ ├── regionModel.C │ │ │ ├── regionModel.H │ │ │ ├── regionModelI.H │ │ │ └── regionModelTemplates.C │ │ ├── regionModel1D │ │ │ ├── regionModel1D.C │ │ │ ├── regionModel1D.H │ │ │ └── regionModel1DI.H │ │ ├── regionModelFunctionObject │ │ │ └── regionModelFunctionObject │ │ │ │ ├── regionModelFunctionObject.C │ │ │ │ ├── regionModelFunctionObject.H │ │ │ │ ├── regionModelFunctionObjectList.C │ │ │ │ ├── regionModelFunctionObjectList.H │ │ │ │ ├── regionModelFunctionObjectListI.H │ │ │ │ └── regionModelFunctionObjectNew.C │ │ ├── regionProperties │ │ │ ├── regionProperties.C │ │ │ └── regionProperties.H │ │ └── singleLayerRegion │ │ │ ├── singleLayerRegion.C │ │ │ ├── singleLayerRegion.H │ │ │ └── singleLayerRegionTemplates.C │ ├── surfaceFilmModels │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── derivedFvPatchFields │ │ │ ├── filmHeightInletVelocity │ │ │ │ ├── filmHeightInletVelocityFvPatchVectorField.C │ │ │ │ └── filmHeightInletVelocityFvPatchVectorField.H │ │ │ ├── inclinedFilmNusseltHeight │ │ │ │ ├── inclinedFilmNusseltHeightFvPatchScalarField.C │ │ │ │ └── inclinedFilmNusseltHeightFvPatchScalarField.H │ │ │ ├── inclinedFilmNusseltInletVelocity │ │ │ │ ├── inclinedFilmNusseltInletVelocityFvPatchVectorField.C │ │ │ │ └── inclinedFilmNusseltInletVelocityFvPatchVectorField.H │ │ │ └── wallFunctions │ │ │ │ ├── alphatFilmWallFunction │ │ │ │ ├── alphatFilmWallFunctionFvPatchScalarField.C │ │ │ │ └── alphatFilmWallFunctionFvPatchScalarField.H │ │ │ │ └── nutkFilmWallFunction │ │ │ │ ├── nutkFilmWallFunctionFvPatchScalarField.C │ │ │ │ └── nutkFilmWallFunctionFvPatchScalarField.H │ │ ├── fvModels │ │ │ └── surfaceFilm │ │ │ │ ├── surfaceFilm.C │ │ │ │ └── surfaceFilm.H │ │ ├── kinematicSingleLayer │ │ │ ├── kinematicSingleLayer.C │ │ │ ├── kinematicSingleLayer.H │ │ │ ├── kinematicSingleLayerI.H │ │ │ └── kinematicSingleLayerTemplates.C │ │ ├── noFilm │ │ │ ├── noFilm.C │ │ │ └── noFilm.H │ │ ├── submodels │ │ │ ├── filmSubModelBase.C │ │ │ ├── filmSubModelBase.H │ │ │ ├── filmSubModelBaseI.H │ │ │ ├── filmSubModelBaseTemplates.C │ │ │ ├── kinematic │ │ │ │ ├── ejectionModel │ │ │ │ │ ├── BrunDrippingEjection │ │ │ │ │ │ ├── BrunDrippingEjection.C │ │ │ │ │ │ └── BrunDrippingEjection.H │ │ │ │ │ ├── curvatureSeparation │ │ │ │ │ │ ├── curvatureSeparation.C │ │ │ │ │ │ └── curvatureSeparation.H │ │ │ │ │ ├── drippingEjection │ │ │ │ │ │ ├── drippingEjection.C │ │ │ │ │ │ └── drippingEjection.H │ │ │ │ │ ├── ejectionModel │ │ │ │ │ │ ├── ejectionModel.C │ │ │ │ │ │ ├── ejectionModel.H │ │ │ │ │ │ └── ejectionModelNew.C │ │ │ │ │ ├── ejectionModelList │ │ │ │ │ │ ├── ejectionModelList.C │ │ │ │ │ │ └── ejectionModelList.H │ │ │ │ │ └── patchEjection │ │ │ │ │ │ ├── patchEjection.C │ │ │ │ │ │ └── patchEjection.H │ │ │ │ ├── filmMomentumTransportModel │ │ │ │ │ ├── filmMomentumTransportModel │ │ │ │ │ │ ├── filmMomentumTransportModel.C │ │ │ │ │ │ ├── filmMomentumTransportModel.H │ │ │ │ │ │ └── filmMomentumTransportModelNew.C │ │ │ │ │ └── laminar │ │ │ │ │ │ ├── laminar.C │ │ │ │ │ │ └── laminar.H │ │ │ │ ├── filmViscosityModel │ │ │ │ │ ├── Arrhenius │ │ │ │ │ │ ├── ArrheniusViscosity.C │ │ │ │ │ │ └── ArrheniusViscosity.H │ │ │ │ │ ├── Newtonian │ │ │ │ │ │ ├── NewtonianViscosity.C │ │ │ │ │ │ └── NewtonianViscosity.H │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── constantViscosity.C │ │ │ │ │ │ └── constantViscosity.H │ │ │ │ │ ├── filmViscosityModel │ │ │ │ │ │ ├── filmViscosityModel.C │ │ │ │ │ │ ├── filmViscosityModel.H │ │ │ │ │ │ └── filmViscosityModelNew.C │ │ │ │ │ ├── function1 │ │ │ │ │ │ ├── function1Viscosity.C │ │ │ │ │ │ └── function1Viscosity.H │ │ │ │ │ ├── thixotropic │ │ │ │ │ │ ├── thixotropicViscosity.C │ │ │ │ │ │ └── thixotropicViscosity.H │ │ │ │ │ └── waxSolvent │ │ │ │ │ │ ├── waxSolventViscosity.C │ │ │ │ │ │ └── waxSolventViscosity.H │ │ │ │ ├── force │ │ │ │ │ ├── contactAngleForces │ │ │ │ │ │ ├── contactAngleForce │ │ │ │ │ │ │ ├── contactAngleForce.C │ │ │ │ │ │ │ └── contactAngleForce.H │ │ │ │ │ │ ├── distribution │ │ │ │ │ │ │ ├── distributionContactAngleForce.C │ │ │ │ │ │ │ └── distributionContactAngleForce.H │ │ │ │ │ │ ├── perturbedTemperatureDependent │ │ │ │ │ │ │ ├── perturbedTemperatureDependentContactAngleForce.C │ │ │ │ │ │ │ └── perturbedTemperatureDependentContactAngleForce.H │ │ │ │ │ │ └── temperatureDependent │ │ │ │ │ │ │ ├── temperatureDependentContactAngleForce.C │ │ │ │ │ │ │ └── temperatureDependentContactAngleForce.H │ │ │ │ │ ├── force │ │ │ │ │ │ ├── force.C │ │ │ │ │ │ ├── force.H │ │ │ │ │ │ └── forceNew.C │ │ │ │ │ ├── forceList │ │ │ │ │ │ ├── forceList.C │ │ │ │ │ │ └── forceList.H │ │ │ │ │ └── thermocapillaryForce │ │ │ │ │ │ ├── thermocapillaryForce.C │ │ │ │ │ │ └── thermocapillaryForce.H │ │ │ │ └── transferModels │ │ │ │ │ ├── transferModel │ │ │ │ │ ├── transferModel.C │ │ │ │ │ ├── transferModel.H │ │ │ │ │ └── transferModelNew.C │ │ │ │ │ └── transferModelList │ │ │ │ │ ├── transferModelList.C │ │ │ │ │ └── transferModelList.H │ │ │ └── thermo │ │ │ │ ├── filmRadiationModel │ │ │ │ ├── constantRadiation │ │ │ │ │ ├── constantRadiation.C │ │ │ │ │ └── constantRadiation.H │ │ │ │ ├── filmRadiationModel │ │ │ │ │ ├── filmRadiationModel.C │ │ │ │ │ ├── filmRadiationModel.H │ │ │ │ │ └── filmRadiationModelNew.C │ │ │ │ ├── noRadiation │ │ │ │ │ ├── noRadiation.C │ │ │ │ │ └── noRadiation.H │ │ │ │ ├── primaryRadiation │ │ │ │ │ ├── primaryRadiation.C │ │ │ │ │ └── primaryRadiation.H │ │ │ │ └── standardRadiation │ │ │ │ │ ├── standardRadiation.C │ │ │ │ │ └── standardRadiation.H │ │ │ │ ├── heatTransferModel │ │ │ │ ├── constantHeatTransfer │ │ │ │ │ ├── constantHeatTransfer.C │ │ │ │ │ └── constantHeatTransfer.H │ │ │ │ ├── heatTransferModel │ │ │ │ │ ├── heatTransferModel.C │ │ │ │ │ ├── heatTransferModel.H │ │ │ │ │ └── heatTransferModelNew.C │ │ │ │ └── mappedConvectiveHeatTransfer │ │ │ │ │ ├── mappedConvectiveHeatTransfer.C │ │ │ │ │ └── mappedConvectiveHeatTransfer.H │ │ │ │ └── phaseChangeModel │ │ │ │ ├── noPhaseChange │ │ │ │ ├── noPhaseChange.C │ │ │ │ └── noPhaseChange.H │ │ │ │ ├── phaseChangeModel │ │ │ │ ├── phaseChangeModel.C │ │ │ │ ├── phaseChangeModel.H │ │ │ │ └── phaseChangeModelNew.C │ │ │ │ ├── solidification │ │ │ │ ├── solidification.C │ │ │ │ └── solidification.H │ │ │ │ ├── speciePhaseChange │ │ │ │ ├── speciePhaseChange.C │ │ │ │ └── speciePhaseChange.H │ │ │ │ ├── standardPhaseChange │ │ │ │ ├── standardPhaseChange.C │ │ │ │ └── standardPhaseChange.H │ │ │ │ └── waxSolventEvaporation │ │ │ │ ├── waxSolventEvaporation.C │ │ │ │ └── waxSolventEvaporation.H │ │ ├── surfaceFilmModel │ │ │ ├── surfaceFilmModel.C │ │ │ ├── surfaceFilmModel.H │ │ │ └── surfaceFilmModelNew.C │ │ ├── surfaceFilmRegionModel │ │ │ ├── surfaceFilmRegionModel.C │ │ │ ├── surfaceFilmRegionModel.H │ │ │ └── surfaceFilmRegionModelI.H │ │ └── thermoSingleLayer │ │ │ ├── thermoSingleLayer.C │ │ │ ├── thermoSingleLayer.H │ │ │ └── thermoSingleLayerI.H │ └── thermalBaffleModels │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── derivedFvPatchFields │ │ └── thermalBaffle │ │ │ ├── thermalBaffleFvPatchScalarField.C │ │ │ └── thermalBaffleFvPatchScalarField.H │ │ ├── noThermo │ │ ├── noThermo.C │ │ └── noThermo.H │ │ ├── thermalBaffle │ │ ├── thermalBaffle.C │ │ ├── thermalBaffle.H │ │ └── thermalBaffleI.H │ │ └── thermalBaffleModel │ │ ├── thermalBaffleModel.C │ │ ├── thermalBaffleModel.H │ │ └── thermalBaffleModelNew.C ├── renumber │ ├── Allwmake │ ├── SloanRenumber │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── SloanRenumber.C │ │ └── SloanRenumber.H │ ├── renumberMethods │ │ ├── CuthillMcKeeRenumber │ │ │ ├── CuthillMcKeeRenumber.C │ │ │ └── CuthillMcKeeRenumber.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── manualRenumber │ │ │ ├── manualRenumber.C │ │ │ └── manualRenumber.H │ │ ├── randomRenumber │ │ │ ├── randomRenumber.C │ │ │ └── randomRenumber.H │ │ ├── renumberMethod │ │ │ ├── renumberMethod.C │ │ │ └── renumberMethod.H │ │ ├── springRenumber │ │ │ ├── springRenumber.C │ │ │ └── springRenumber.H │ │ └── structuredRenumber │ │ │ ├── OppositeFaceCellWave.C │ │ │ ├── OppositeFaceCellWave.H │ │ │ ├── OppositeFaceCellWaveName.C │ │ │ ├── structuredRenumber.C │ │ │ └── structuredRenumber.H │ └── zoltanRenumber │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── zoltanRenumber.C │ │ └── zoltanRenumber.H ├── rigidBodyDynamics │ ├── Make │ │ ├── files │ │ └── options │ ├── bodies │ │ ├── compositeBody │ │ │ ├── compositeBody.C │ │ │ ├── compositeBody.H │ │ │ └── compositeBodyI.H │ │ ├── cuboid │ │ │ ├── cuboid.C │ │ │ ├── cuboid.H │ │ │ └── cuboidI.H │ │ ├── jointBody │ │ │ ├── jointBody.C │ │ │ ├── jointBody.H │ │ │ └── jointBodyI.H │ │ ├── masslessBody │ │ │ ├── masslessBody.C │ │ │ ├── masslessBody.H │ │ │ └── masslessBodyI.H │ │ ├── rigidBody │ │ │ ├── rigidBody.C │ │ │ ├── rigidBody.H │ │ │ └── rigidBodyI.H │ │ ├── sphere │ │ │ ├── sphere.C │ │ │ ├── sphere.H │ │ │ └── sphereI.H │ │ └── subBody │ │ │ ├── subBody.C │ │ │ ├── subBody.H │ │ │ └── subBodyI.H │ ├── joints │ │ ├── Pa │ │ │ ├── Pa.C │ │ │ └── Pa.H │ │ ├── Px │ │ │ ├── Px.C │ │ │ └── Px.H │ │ ├── Pxyz │ │ │ ├── Pxyz.C │ │ │ └── Pxyz.H │ │ ├── Py │ │ │ ├── Py.C │ │ │ └── Py.H │ │ ├── Pz │ │ │ ├── Pz.C │ │ │ └── Pz.H │ │ ├── Ra │ │ │ ├── Ra.C │ │ │ └── Ra.H │ │ ├── Rs │ │ │ ├── Rs.C │ │ │ └── Rs.H │ │ ├── Rx │ │ │ ├── Rx.C │ │ │ └── Rx.H │ │ ├── Rxyz │ │ │ ├── Rxyz.C │ │ │ └── Rxyz.H │ │ ├── Ry │ │ │ ├── Ry.C │ │ │ └── Ry.H │ │ ├── Ryxz │ │ │ ├── Ryxz.C │ │ │ └── Ryxz.H │ │ ├── Rz │ │ │ ├── Rz.C │ │ │ └── Rz.H │ │ ├── Rzyx │ │ │ ├── Rzyx.C │ │ │ └── Rzyx.H │ │ ├── composite │ │ │ ├── compositeJoint.C │ │ │ └── compositeJoint.H │ │ ├── floating │ │ │ ├── floatingJoint.C │ │ │ └── floatingJoint.H │ │ ├── function │ │ │ ├── function.C │ │ │ └── function.H │ │ ├── functionDot │ │ │ ├── functionDot.C │ │ │ └── functionDot.H │ │ ├── joint │ │ │ ├── joint.C │ │ │ ├── joint.H │ │ │ └── jointI.H │ │ ├── joints.H │ │ ├── null │ │ │ ├── nullJoint.C │ │ │ └── nullJoint.H │ │ └── rigid │ │ │ ├── rigid.C │ │ │ └── rigid.H │ ├── restraints │ │ ├── externalForce │ │ │ ├── externalForce.C │ │ │ └── externalForce.H │ │ ├── linearAxialAngularSpring │ │ │ ├── linearAxialAngularSpring.C │ │ │ └── linearAxialAngularSpring.H │ │ ├── linearDamper │ │ │ ├── linearDamper.C │ │ │ └── linearDamper.H │ │ ├── linearSpring │ │ │ ├── linearSpring.C │ │ │ └── linearSpring.H │ │ ├── restraint │ │ │ ├── rigidBodyRestraint.C │ │ │ ├── rigidBodyRestraint.H │ │ │ ├── rigidBodyRestraintI.H │ │ │ └── rigidBodyRestraintNew.C │ │ └── sphericalAngularDamper │ │ │ ├── sphericalAngularDamper.C │ │ │ └── sphericalAngularDamper.H │ ├── rigidBodyInertia │ │ ├── rigidBodyInertia.H │ │ └── rigidBodyInertiaI.H │ ├── rigidBodyModel │ │ ├── forwardDynamics.C │ │ ├── rigidBodyModel.C │ │ ├── rigidBodyModel.H │ │ └── rigidBodyModelI.H │ ├── rigidBodyModelState │ │ ├── rigidBodyModelState.C │ │ ├── rigidBodyModelState.H │ │ ├── rigidBodyModelStateI.H │ │ └── rigidBodyModelStateIO.C │ ├── rigidBodyMotion │ │ ├── rigidBodyMotion.C │ │ ├── rigidBodyMotion.H │ │ ├── rigidBodyMotionI.H │ │ └── rigidBodyMotionIO.C │ └── rigidBodySolvers │ │ ├── CrankNicolson │ │ ├── CrankNicolson.C │ │ └── CrankNicolson.H │ │ ├── Newmark │ │ ├── Newmark.C │ │ └── Newmark.H │ │ ├── rigidBodySolver │ │ ├── rigidBodySolver.C │ │ ├── rigidBodySolver.H │ │ ├── rigidBodySolverI.H │ │ └── rigidBodySolverNew.C │ │ └── symplectic │ │ ├── symplectic.C │ │ └── symplectic.H ├── rigidBodyMeshMotion │ ├── Make │ │ ├── files │ │ └── options │ ├── rigidBodyMeshMotion │ │ ├── rigidBodyMeshMotion.C │ │ └── rigidBodyMeshMotion.H │ └── rigidBodyMeshMotionSolver │ │ ├── rigidBodyMeshMotionSolver.C │ │ └── rigidBodyMeshMotionSolver.H ├── rigidBodyState │ ├── Make │ │ ├── files │ │ └── options │ ├── rigidBodyState.C │ └── rigidBodyState.H ├── sampling │ ├── Make │ │ ├── files │ │ └── options │ ├── coordSet │ │ ├── coordSet.C │ │ └── coordSet.H │ ├── cuttingPlane │ │ ├── cuttingPlane.C │ │ ├── cuttingPlane.H │ │ └── cuttingPlaneTemplates.C │ ├── graphField │ │ ├── makeGraph.C │ │ ├── makeGraph.H │ │ ├── writeCellGraph.C │ │ ├── writeCellGraph.H │ │ ├── writePatchGraph.C │ │ └── writePatchGraph.H │ ├── meshToMesh │ │ ├── calcMethod │ │ │ ├── cellVolumeWeight │ │ │ │ ├── cellVolumeWeightMethod.C │ │ │ │ └── cellVolumeWeightMethod.H │ │ │ ├── direct │ │ │ │ ├── directMethod.C │ │ │ │ └── directMethod.H │ │ │ ├── mapNearest │ │ │ │ ├── mapNearestMethod.C │ │ │ │ └── mapNearestMethod.H │ │ │ └── meshToMeshMethod │ │ │ │ ├── meshToMeshMethod.C │ │ │ │ ├── meshToMeshMethod.H │ │ │ │ ├── meshToMeshMethodI.H │ │ │ │ └── meshToMeshMethodNew.C │ │ ├── distributedWeightedFvPatchFieldMapper.C │ │ ├── distributedWeightedFvPatchFieldMapper.H │ │ ├── distributedWeightedFvPatchFieldMapperTemplates.C │ │ ├── meshToMesh.C │ │ ├── meshToMesh.H │ │ ├── meshToMeshI.H │ │ ├── meshToMeshParallelOps.C │ │ ├── meshToMeshTemplates.C │ │ └── weightedFvPatchFieldMapper.H │ ├── meshToMesh0 │ │ ├── calculateMeshToMesh0Addressing.C │ │ ├── calculateMeshToMesh0Weights.C │ │ ├── meshToMesh0.C │ │ ├── meshToMesh0.H │ │ └── meshToMesh0Templates.C │ ├── probes │ │ ├── IOprobes.H │ │ ├── patchProbes.C │ │ ├── patchProbes.H │ │ ├── patchProbesTemplates.C │ │ ├── probes.C │ │ ├── probes.H │ │ ├── probesDict │ │ ├── probesGrouping.C │ │ └── probesTemplates.C │ ├── sampledSet │ │ ├── arcUniform │ │ │ ├── arcUniform.C │ │ │ └── arcUniform.H │ │ ├── boundaryPoints │ │ │ ├── boundaryPoints.C │ │ │ └── boundaryPoints.H │ │ ├── boundaryRandom │ │ │ ├── boundaryRandom.C │ │ │ └── boundaryRandom.H │ │ ├── boxUniform │ │ │ ├── boxUniform.C │ │ │ └── boxUniform.H │ │ ├── cellSetSampledSet │ │ │ ├── cellSetSampledSet.C │ │ │ └── cellSetSampledSet.H │ │ ├── circleRandom │ │ │ ├── circleRandom.C │ │ │ └── circleRandom.H │ │ ├── faceSetSampledSet │ │ │ ├── faceSetSampledSet.C │ │ │ └── faceSetSampledSet.H │ │ ├── lineCell │ │ │ ├── lineCell.C │ │ │ └── lineCell.H │ │ ├── lineCellFace │ │ │ ├── lineCellFace.C │ │ │ └── lineCellFace.H │ │ ├── lineFace │ │ │ ├── lineFace.C │ │ │ └── lineFace.H │ │ ├── lineUniform │ │ │ ├── lineUniform.C │ │ │ └── lineUniform.H │ │ ├── points │ │ │ ├── points.C │ │ │ └── points.H │ │ ├── sampledSet │ │ │ ├── sampledSet.C │ │ │ └── sampledSet.H │ │ ├── sampledSets │ │ │ ├── IOsampledSets.H │ │ │ ├── sampledSets.C │ │ │ ├── sampledSets.H │ │ │ ├── sampledSetsGrouping.C │ │ │ └── sampledSetsTemplates.C │ │ ├── sphereRandom │ │ │ ├── sphereRandom.C │ │ │ └── sphereRandom.H │ │ ├── triSurfaceMeshSampledSet │ │ │ ├── triSurfaceMeshSampledSet.C │ │ │ └── triSurfaceMeshSampledSet.H │ │ └── writers │ │ │ ├── csv │ │ │ ├── csvSetWriter.C │ │ │ ├── csvSetWriter.H │ │ │ └── csvSetWriterRunTime.C │ │ │ ├── ensight │ │ │ ├── ensightSetWriter.C │ │ │ ├── ensightSetWriter.H │ │ │ └── ensightSetWriterRunTime.C │ │ │ ├── gnuplot │ │ │ ├── gnuplotSetWriter.C │ │ │ ├── gnuplotSetWriter.H │ │ │ └── gnuplotSetWriterRunTime.C │ │ │ ├── jplot │ │ │ ├── jplotSetWriter.C │ │ │ ├── jplotSetWriter.H │ │ │ └── jplotSetWriterRunTime.C │ │ │ ├── raw │ │ │ ├── rawSetWriter.C │ │ │ ├── rawSetWriter.H │ │ │ └── rawSetWriterRunTime.C │ │ │ ├── setWriter.C │ │ │ ├── setWriter.H │ │ │ ├── setWriters.C │ │ │ ├── setWriters.H │ │ │ ├── vtk │ │ │ ├── vtkSetWriter.C │ │ │ ├── vtkSetWriter.H │ │ │ └── vtkSetWriterRunTime.C │ │ │ └── xmgrace │ │ │ ├── xmgraceSetWriter.C │ │ │ ├── xmgraceSetWriter.H │ │ │ └── xmgraceSetWriterRunTime.C │ └── sampledSurface │ │ ├── distanceSurface │ │ ├── distanceSurface.C │ │ ├── distanceSurface.H │ │ └── distanceSurfaceTemplates.C │ │ ├── isoSurface │ │ ├── isoSurface.C │ │ ├── isoSurface.H │ │ ├── isoSurfaceTemplates.C │ │ ├── sampledIsoSurface.C │ │ ├── sampledIsoSurface.H │ │ └── sampledIsoSurfaceTemplates.C │ │ ├── sampledCuttingPlane │ │ ├── sampledCuttingPlane.C │ │ ├── sampledCuttingPlane.H │ │ └── sampledCuttingPlaneTemplates.C │ │ ├── sampledPatch │ │ ├── sampledPatch.C │ │ ├── sampledPatch.H │ │ └── sampledPatchTemplates.C │ │ ├── sampledPatchInternalField │ │ ├── sampledPatchInternalField.C │ │ ├── sampledPatchInternalField.H │ │ └── sampledPatchInternalFieldTemplates.C │ │ ├── sampledPlane │ │ ├── sampledPlane.C │ │ ├── sampledPlane.H │ │ └── sampledPlaneTemplates.C │ │ ├── sampledSurface │ │ ├── sampledSurface.C │ │ ├── sampledSurface.H │ │ └── sampledSurfaceTemplates.C │ │ ├── sampledSurfaces │ │ ├── sampledSurfaces.C │ │ ├── sampledSurfaces.H │ │ ├── sampledSurfacesGrouping.C │ │ └── sampledSurfacesTemplates.C │ │ ├── sampledTriSurfaceMesh │ │ ├── sampledTriSurfaceMesh.C │ │ ├── sampledTriSurfaceMesh.H │ │ └── sampledTriSurfaceMeshTemplates.C │ │ ├── thresholdCellFaces │ │ ├── sampledThresholdCellFaces.C │ │ ├── sampledThresholdCellFaces.H │ │ ├── sampledThresholdCellFacesTemplates.C │ │ ├── thresholdCellFaces.C │ │ └── thresholdCellFaces.H │ │ └── writers │ │ ├── ensight │ │ ├── ensightPTraits.C │ │ ├── ensightPTraits.H │ │ ├── ensightSurfaceWriter.C │ │ └── ensightSurfaceWriter.H │ │ ├── foam │ │ ├── foamSurfaceWriter.C │ │ └── foamSurfaceWriter.H │ │ ├── makeSurfaceWriterMethods.H │ │ ├── nastran │ │ ├── nastranSurfaceWriter.C │ │ ├── nastranSurfaceWriter.H │ │ └── nastranSurfaceWriterTemplates.C │ │ ├── none │ │ ├── noSurfaceWriter.C │ │ └── noSurfaceWriter.H │ │ ├── proxy │ │ ├── proxySurfaceWriter.C │ │ └── proxySurfaceWriter.H │ │ ├── raw │ │ ├── rawSurfaceWriter.C │ │ └── rawSurfaceWriter.H │ │ ├── starcd │ │ ├── starcdSurfaceWriter.C │ │ └── starcdSurfaceWriter.H │ │ ├── surfaceWriter.C │ │ ├── surfaceWriter.H │ │ └── vtk │ │ ├── vtkSurfaceWriter.C │ │ └── vtkSurfaceWriter.H ├── sixDoFRigidBodyMotion │ ├── Make │ │ ├── files │ │ └── options │ ├── sixDoFRigidBodyMotion │ │ ├── constraints │ │ │ ├── axis │ │ │ │ ├── sixDoFRigidBodyMotionAxisConstraint.C │ │ │ │ └── sixDoFRigidBodyMotionAxisConstraint.H │ │ │ ├── line │ │ │ │ ├── sixDoFRigidBodyMotionLineConstraint.C │ │ │ │ └── sixDoFRigidBodyMotionLineConstraint.H │ │ │ ├── orientation │ │ │ │ ├── sixDoFRigidBodyMotionOrientationConstraint.C │ │ │ │ └── sixDoFRigidBodyMotionOrientationConstraint.H │ │ │ ├── plane │ │ │ │ ├── sixDoFRigidBodyMotionPlaneConstraint.C │ │ │ │ └── sixDoFRigidBodyMotionPlaneConstraint.H │ │ │ ├── point │ │ │ │ ├── sixDoFRigidBodyMotionPointConstraint.C │ │ │ │ └── sixDoFRigidBodyMotionPointConstraint.H │ │ │ └── sixDoFRigidBodyMotionConstraint │ │ │ │ ├── sixDoFRigidBodyMotionConstraint.C │ │ │ │ ├── sixDoFRigidBodyMotionConstraint.H │ │ │ │ └── sixDoFRigidBodyMotionConstraintNew.C │ │ ├── restraints │ │ │ ├── axialAngularSpring │ │ │ │ ├── axialAngularSpring.C │ │ │ │ └── axialAngularSpring.H │ │ │ ├── linearAxialAngularSpring │ │ │ │ ├── linearAxialAngularSpring.C │ │ │ │ └── linearAxialAngularSpring.H │ │ │ ├── linearDamper │ │ │ │ ├── linearDamper.C │ │ │ │ └── linearDamper.H │ │ │ ├── linearSpring │ │ │ │ ├── linearSpring.C │ │ │ │ └── linearSpring.H │ │ │ ├── sixDoFRigidBodyMotionRestraint │ │ │ │ ├── sixDoFRigidBodyMotionRestraint.C │ │ │ │ ├── sixDoFRigidBodyMotionRestraint.H │ │ │ │ └── sixDoFRigidBodyMotionRestraintNew.C │ │ │ ├── sphericalAngularDamper │ │ │ │ ├── sphericalAngularDamper.C │ │ │ │ └── sphericalAngularDamper.H │ │ │ └── sphericalAngularSpring │ │ │ │ ├── sphericalAngularSpring.C │ │ │ │ └── sphericalAngularSpring.H │ │ ├── sixDoFRigidBodyMotion.C │ │ ├── sixDoFRigidBodyMotion.H │ │ ├── sixDoFRigidBodyMotionI.H │ │ ├── sixDoFRigidBodyMotionIO.C │ │ ├── sixDoFRigidBodyMotionState.C │ │ ├── sixDoFRigidBodyMotionState.H │ │ ├── sixDoFRigidBodyMotionStateI.H │ │ └── sixDoFRigidBodyMotionStateIO.C │ ├── sixDoFRigidBodyMotionSolver │ │ ├── sixDoFRigidBodyMotionSolver.C │ │ └── sixDoFRigidBodyMotionSolver.H │ └── sixDoFSolvers │ │ ├── CrankNicolson │ │ ├── CrankNicolson.C │ │ └── CrankNicolson.H │ │ ├── Newmark │ │ ├── Newmark.C │ │ └── Newmark.H │ │ ├── sixDoFSolver │ │ ├── sixDoFSolver.C │ │ ├── sixDoFSolver.H │ │ ├── sixDoFSolverI.H │ │ └── sixDoFSolverNew.C │ │ └── symplectic │ │ ├── symplectic.C │ │ └── symplectic.H ├── sixDoFRigidBodyState │ ├── Make │ │ ├── files │ │ └── options │ ├── sixDoFRigidBodyControl │ │ ├── sixDoFRigidBodyControl.C │ │ └── sixDoFRigidBodyControl.H │ └── sixDoFRigidBodyState │ │ ├── sixDoFRigidBodyState.C │ │ └── sixDoFRigidBodyState.H ├── specieTransfer │ ├── Make │ │ ├── files │ │ └── options │ └── derivedFvPatchFields │ │ ├── adsorptionMassFraction │ │ ├── adsorptionMassFractionFvPatchScalarField.C │ │ └── adsorptionMassFractionFvPatchScalarField.H │ │ ├── semiPermeableBaffleMassFraction │ │ ├── semiPermeableBaffleMassFractionFvPatchScalarField.C │ │ └── semiPermeableBaffleMassFractionFvPatchScalarField.H │ │ ├── specieTransferMassFraction │ │ ├── specieTransferMassFractionFvPatchScalarField.C │ │ └── specieTransferMassFractionFvPatchScalarField.H │ │ ├── specieTransferTemperature │ │ ├── specieTransferTemperatureFvPatchScalarField.C │ │ └── specieTransferTemperatureFvPatchScalarField.H │ │ └── specieTransferVelocity │ │ ├── specieTransferVelocityFvPatchVectorField.C │ │ └── specieTransferVelocityFvPatchVectorField.H ├── surfMesh │ ├── Make │ │ ├── files │ │ └── options │ ├── MeshedSurface │ │ ├── MeshedSurface.C │ │ ├── MeshedSurface.H │ │ ├── MeshedSurfaceCore.C │ │ ├── MeshedSurfaceIO.C │ │ ├── MeshedSurfaceNew.C │ │ ├── MeshedSurfaceZones.C │ │ ├── MeshedSurfaces.C │ │ ├── MeshedSurfaces.H │ │ └── MeshedSurfacesFwd.H │ ├── MeshedSurfaceAllocator │ │ ├── MeshedSurfaceIOAllocator.C │ │ └── MeshedSurfaceIOAllocator.H │ ├── MeshedSurfaceProxy │ │ ├── MeshedSurfaceProxy.C │ │ ├── MeshedSurfaceProxy.H │ │ └── MeshedSurfaceProxyCore.C │ ├── UnsortedMeshedSurface │ │ ├── UnsortedMeshedSurface.C │ │ ├── UnsortedMeshedSurface.H │ │ ├── UnsortedMeshedSurfaceNew.C │ │ ├── UnsortedMeshedSurfaces.C │ │ ├── UnsortedMeshedSurfaces.H │ │ └── UnsortedMeshedSurfacesFwd.H │ ├── surfFields │ │ ├── surfFields │ │ │ ├── surfFields.C │ │ │ ├── surfFields.H │ │ │ ├── surfFieldsFwd.H │ │ │ └── surfGeoMesh.H │ │ └── surfPointFields │ │ │ ├── surfPointFields.C │ │ │ ├── surfPointFields.H │ │ │ ├── surfPointFieldsFwd.H │ │ │ └── surfPointGeoMesh.H │ ├── surfMesh │ │ ├── surfMesh.C │ │ ├── surfMesh.H │ │ ├── surfMeshClear.C │ │ └── surfMeshIO.C │ ├── surfZone │ │ ├── surfZone │ │ │ ├── surfZone.C │ │ │ ├── surfZone.H │ │ │ ├── surfZoneIOList.C │ │ │ ├── surfZoneIOList.H │ │ │ └── surfZoneList.H │ │ └── surfZoneIdentifier │ │ │ ├── surfZoneIdentifier.C │ │ │ ├── surfZoneIdentifier.H │ │ │ └── surfZoneIdentifierList.H │ ├── surfaceFormats │ │ ├── ac3d │ │ │ ├── AC3DsurfaceFormat.C │ │ │ ├── AC3DsurfaceFormat.H │ │ │ ├── AC3DsurfaceFormatCore.C │ │ │ ├── AC3DsurfaceFormatCore.H │ │ │ ├── AC3DsurfaceFormatCoreTemplates.C │ │ │ └── AC3DsurfaceFormatRunTime.C │ │ ├── gts │ │ │ ├── GTSsurfaceFormat.C │ │ │ ├── GTSsurfaceFormat.H │ │ │ └── GTSsurfaceFormatRunTime.C │ │ ├── nas │ │ │ ├── NASsurfaceFormat.C │ │ │ ├── NASsurfaceFormat.H │ │ │ └── NASsurfaceFormatRunTime.C │ │ ├── obj │ │ │ ├── OBJsurfaceFormat.C │ │ │ ├── OBJsurfaceFormat.H │ │ │ └── OBJsurfaceFormatRunTime.C │ │ ├── off │ │ │ ├── OFFsurfaceFormat.C │ │ │ ├── OFFsurfaceFormat.H │ │ │ └── OFFsurfaceFormatRunTime.C │ │ ├── ofs │ │ │ ├── OFSsurfaceFormat.C │ │ │ ├── OFSsurfaceFormat.H │ │ │ ├── OFSsurfaceFormatCore.C │ │ │ ├── OFSsurfaceFormatCore.H │ │ │ └── OFSsurfaceFormatRunTime.C │ │ ├── smesh │ │ │ ├── SMESHsurfaceFormat.C │ │ │ ├── SMESHsurfaceFormat.H │ │ │ └── SMESHsurfaceFormatRunTime.C │ │ ├── starcd │ │ │ ├── STARCDsurfaceFormat.C │ │ │ ├── STARCDsurfaceFormat.H │ │ │ ├── STARCDsurfaceFormatCore.C │ │ │ ├── STARCDsurfaceFormatCore.H │ │ │ └── STARCDsurfaceFormatRunTime.C │ │ ├── stl │ │ │ ├── STLpoint.H │ │ │ ├── STLsurfaceFormat.C │ │ │ ├── STLsurfaceFormat.H │ │ │ ├── STLsurfaceFormatASCII.L │ │ │ ├── STLsurfaceFormatCore.C │ │ │ ├── STLsurfaceFormatCore.H │ │ │ ├── STLsurfaceFormatRunTime.C │ │ │ ├── STLtriangle.H │ │ │ └── STLtriangleI.H │ │ ├── surfaceFormatsCore.C │ │ ├── surfaceFormatsCore.H │ │ ├── tri │ │ │ ├── TRIsurfaceFormat.C │ │ │ ├── TRIsurfaceFormat.H │ │ │ ├── TRIsurfaceFormatCore.C │ │ │ ├── TRIsurfaceFormatCore.H │ │ │ └── TRIsurfaceFormatRunTime.C │ │ ├── vtk │ │ │ ├── VTKsurfaceFormat.C │ │ │ ├── VTKsurfaceFormat.H │ │ │ ├── VTKsurfaceFormatCore.C │ │ │ ├── VTKsurfaceFormatCore.H │ │ │ └── VTKsurfaceFormatRunTime.C │ │ ├── wrl │ │ │ ├── WRLsurfaceFormat.C │ │ │ ├── WRLsurfaceFormat.H │ │ │ ├── WRLsurfaceFormatCore.C │ │ │ ├── WRLsurfaceFormatCore.H │ │ │ └── WRLsurfaceFormatRunTime.C │ │ └── x3d │ │ │ ├── X3DsurfaceFormat.C │ │ │ ├── X3DsurfaceFormat.H │ │ │ ├── X3DsurfaceFormatCore.C │ │ │ ├── X3DsurfaceFormatCore.H │ │ │ └── X3DsurfaceFormatRunTime.C │ └── surfaceRegistry │ │ ├── surfaceRegistry.C │ │ └── surfaceRegistry.H ├── thermophysicalModels │ ├── Allwmake │ ├── barotropicCompressibilityModel │ │ ├── Chung │ │ │ ├── Chung.C │ │ │ └── Chung.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Wallis │ │ │ ├── Wallis.C │ │ │ └── Wallis.H │ │ ├── barotropicCompressibilityModel │ │ │ ├── barotropicCompressibilityModel.C │ │ │ ├── barotropicCompressibilityModel.H │ │ │ └── barotropicCompressibilityModelNew.C │ │ └── linear │ │ │ ├── linear.C │ │ │ └── linear.H │ ├── basic │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── basicThermo │ │ │ ├── basicThermo.C │ │ │ ├── basicThermo.H │ │ │ └── basicThermoTemplates.C │ │ ├── derivedFvPatchFields │ │ │ ├── energyJump │ │ │ │ ├── energyJump │ │ │ │ │ ├── energyJumpFvPatchScalarField.C │ │ │ │ │ └── energyJumpFvPatchScalarField.H │ │ │ │ └── energyJumpAMI │ │ │ │ │ ├── energyJumpAMIFvPatchScalarField.C │ │ │ │ │ └── energyJumpAMIFvPatchScalarField.H │ │ │ ├── fixedEnergy │ │ │ │ ├── fixedEnergyFvPatchScalarField.C │ │ │ │ └── fixedEnergyFvPatchScalarField.H │ │ │ ├── gradientEnergy │ │ │ │ ├── gradientEnergyCalculatedTemperatureFvPatchScalarField.C │ │ │ │ ├── gradientEnergyCalculatedTemperatureFvPatchScalarField.H │ │ │ │ ├── gradientEnergyFvPatchScalarField.C │ │ │ │ └── gradientEnergyFvPatchScalarField.H │ │ │ └── mixedEnergy │ │ │ │ ├── mixedEnergyCalculatedTemperatureFvPatchScalarField.C │ │ │ │ ├── mixedEnergyCalculatedTemperatureFvPatchScalarField.H │ │ │ │ ├── mixedEnergyFvPatchScalarField.C │ │ │ │ └── mixedEnergyFvPatchScalarField.H │ │ ├── fluidThermo │ │ │ ├── fluidThermo.C │ │ │ ├── fluidThermo.H │ │ │ ├── hydrostaticInitialisation.C │ │ │ └── hydrostaticInitialisation.H │ │ ├── heThermo │ │ │ ├── heThermo.C │ │ │ └── heThermo.H │ │ ├── mixtures │ │ │ ├── basicMixture │ │ │ │ └── basicMixture.H │ │ │ └── pureMixture │ │ │ │ ├── pureMixture.C │ │ │ │ └── pureMixture.H │ │ ├── psiThermo │ │ │ ├── hePsiThermo.C │ │ │ ├── hePsiThermo.H │ │ │ ├── psiThermo.C │ │ │ ├── psiThermo.H │ │ │ └── psiThermos.C │ │ └── rhoThermo │ │ │ ├── heRhoThermo.C │ │ │ ├── heRhoThermo.H │ │ │ ├── liquidThermo.C │ │ │ ├── liquidThermo.H │ │ │ ├── rhoThermo.C │ │ │ ├── rhoThermo.H │ │ │ └── rhoThermos.C │ ├── chemistryModel │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── chemistryModel │ │ │ ├── TDACChemistryModel │ │ │ │ ├── TDACChemistryModel.C │ │ │ │ ├── TDACChemistryModel.H │ │ │ │ ├── TDACChemistryModelI.H │ │ │ │ ├── reduction │ │ │ │ │ ├── DAC │ │ │ │ │ │ ├── DAC.C │ │ │ │ │ │ ├── DAC.H │ │ │ │ │ │ └── DACChemistryReductionMethods.C │ │ │ │ │ ├── DRG │ │ │ │ │ │ ├── DRG.C │ │ │ │ │ │ ├── DRG.H │ │ │ │ │ │ └── DRGChemistryReductionMethods.C │ │ │ │ │ ├── DRGEP │ │ │ │ │ │ ├── DRGEP.C │ │ │ │ │ │ ├── DRGEP.H │ │ │ │ │ │ ├── DRGEPChemistryReductionMethods.C │ │ │ │ │ │ ├── SortableListDRGEP.C │ │ │ │ │ │ └── SortableListDRGEP.H │ │ │ │ │ ├── EFA │ │ │ │ │ │ ├── EFA.C │ │ │ │ │ │ ├── EFA.H │ │ │ │ │ │ ├── EFAChemistryReductionMethods.C │ │ │ │ │ │ ├── SortableListEFA.C │ │ │ │ │ │ └── SortableListEFA.H │ │ │ │ │ ├── PFA │ │ │ │ │ │ ├── PFA.C │ │ │ │ │ │ ├── PFA.H │ │ │ │ │ │ └── PFAChemistryReductionMethods.C │ │ │ │ │ ├── chemistryReductionMethod │ │ │ │ │ │ ├── chemistryReductionMethod.C │ │ │ │ │ │ ├── chemistryReductionMethod.H │ │ │ │ │ │ ├── chemistryReductionMethodI.H │ │ │ │ │ │ ├── chemistryReductionMethodNew.C │ │ │ │ │ │ └── chemistryReductionMethods.C │ │ │ │ │ ├── makeChemistryReductionMethod.H │ │ │ │ │ └── noChemistryReduction │ │ │ │ │ │ ├── noChemistryReduction.C │ │ │ │ │ │ ├── noChemistryReduction.H │ │ │ │ │ │ └── noChemistryReductionMethods.C │ │ │ │ └── tabulation │ │ │ │ │ ├── ISAT │ │ │ │ │ ├── ISAT.C │ │ │ │ │ ├── ISAT.H │ │ │ │ │ ├── ISATChemistryTabulationMethods.C │ │ │ │ │ ├── binaryNode │ │ │ │ │ │ ├── binaryNode.C │ │ │ │ │ │ └── binaryNode.H │ │ │ │ │ ├── binaryTree │ │ │ │ │ │ ├── binaryTree.C │ │ │ │ │ │ └── binaryTree.H │ │ │ │ │ └── chemPointISAT │ │ │ │ │ │ ├── chemPointISAT.C │ │ │ │ │ │ └── chemPointISAT.H │ │ │ │ │ ├── chemistryTabulationMethod │ │ │ │ │ ├── chemistryTabulationMethod.C │ │ │ │ │ ├── chemistryTabulationMethod.H │ │ │ │ │ ├── chemistryTabulationMethodNew.C │ │ │ │ │ └── chemistryTabulationMethods.C │ │ │ │ │ ├── makeChemistryTabulationMethod.H │ │ │ │ │ └── noChemistryTabulation │ │ │ │ │ ├── noChemistryTabulation.C │ │ │ │ │ ├── noChemistryTabulation.H │ │ │ │ │ └── noChemistryTabulationMethods.C │ │ │ ├── basicChemistryModel │ │ │ │ ├── basicChemistryModel.C │ │ │ │ ├── basicChemistryModel.H │ │ │ │ ├── basicChemistryModelI.H │ │ │ │ └── basicChemistryModelNew.C │ │ │ └── standardChemistryModel │ │ │ │ ├── standardChemistryModel.C │ │ │ │ ├── standardChemistryModel.H │ │ │ │ └── standardChemistryModelI.H │ │ ├── chemistrySolver │ │ │ ├── EulerImplicit │ │ │ │ ├── EulerImplicit.C │ │ │ │ ├── EulerImplicit.H │ │ │ │ └── EulerImplicitChemistrySolvers.C │ │ │ ├── chemistrySolver │ │ │ │ ├── chemistrySolver.C │ │ │ │ ├── chemistrySolver.H │ │ │ │ └── chemistrySolvers.C │ │ │ ├── makeChemistrySolver.H │ │ │ ├── noChemistrySolver │ │ │ │ ├── noChemistrySolver.C │ │ │ │ ├── noChemistrySolver.H │ │ │ │ └── noChemistrySolvers.C │ │ │ └── ode │ │ │ │ ├── ode.C │ │ │ │ ├── ode.H │ │ │ │ └── odeChemistrySolvers.C │ │ ├── functionObjects │ │ │ └── specieReactionRates │ │ │ │ ├── specieReactionRates.C │ │ │ │ └── specieReactionRates.H │ │ └── reactions │ │ │ ├── fluxLimitedLangmuirHinshelwood │ │ │ ├── fluxLimitedLangmuirHinshelwoodReactionRate.H │ │ │ ├── fluxLimitedLangmuirHinshelwoodReactionRateI.H │ │ │ └── makefluxLimitedLangmuirHinshelwoodReactions.C │ │ │ ├── makeLangmuirHinshelwoodReactions.C │ │ │ ├── makeMichaelisMentenReactions.C │ │ │ ├── makeReaction.H │ │ │ ├── makeReactions.C │ │ │ └── surfaceArrheniusReactionRate │ │ │ ├── makesurfaceArrheniusReactions.C │ │ │ ├── surfaceArrheniusReactionRate.H │ │ │ └── surfaceArrheniusReactionRateI.H │ ├── laminarFlameSpeed │ │ ├── Gulders │ │ │ ├── Gulders.C │ │ │ └── Gulders.H │ │ ├── GuldersEGR │ │ │ ├── GuldersEGR.C │ │ │ └── GuldersEGR.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── RaviPetersen │ │ │ ├── RaviPetersen.C │ │ │ └── RaviPetersen.H │ │ ├── constant │ │ │ ├── constant.C │ │ │ └── constant.H │ │ └── laminarFlameSpeed │ │ │ ├── laminarFlameSpeed.C │ │ │ ├── laminarFlameSpeed.H │ │ │ └── laminarFlameSpeedNew.C │ ├── reactionThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── derivedFvPatchFields │ │ │ ├── fixedUnburntEnthalpy │ │ │ │ ├── fixedUnburntEnthalpyFvPatchScalarField.C │ │ │ │ └── fixedUnburntEnthalpyFvPatchScalarField.H │ │ │ ├── gradientUnburntEnthalpy │ │ │ │ ├── gradientUnburntEnthalpyFvPatchScalarField.C │ │ │ │ └── gradientUnburntEnthalpyFvPatchScalarField.H │ │ │ └── mixedUnburntEnthalpy │ │ │ │ ├── mixedUnburntEnthalpyFvPatchScalarField.C │ │ │ │ └── mixedUnburntEnthalpyFvPatchScalarField.H │ │ ├── fluidReactionThermo │ │ │ ├── fluidReactionThermo.C │ │ │ └── fluidReactionThermo.H │ │ ├── functionObjects │ │ │ └── moleFractions │ │ │ │ ├── moleFractions.C │ │ │ │ ├── moleFractions.H │ │ │ │ ├── moleFractionsFunctionObjects.C │ │ │ │ └── moleFractionsFunctionObjects.H │ │ ├── makeReactionThermo.H │ │ ├── mixtures │ │ │ ├── SpecieMixture │ │ │ │ ├── SpecieMixture.C │ │ │ │ └── SpecieMixture.H │ │ │ ├── basicCombustionMixture │ │ │ │ ├── basicCombustionMixture.C │ │ │ │ ├── basicCombustionMixture.H │ │ │ │ └── basicCombustionMixtureI.H │ │ │ ├── basicSpecieMixture │ │ │ │ ├── basicSpecieMixture.C │ │ │ │ ├── basicSpecieMixture.H │ │ │ │ └── basicSpecieMixtureI.H │ │ │ ├── coefficientMultiComponentMixture │ │ │ │ ├── coefficientMultiComponentMixture.C │ │ │ │ └── coefficientMultiComponentMixture.H │ │ │ ├── coefficientWilkeMultiComponentMixture │ │ │ │ ├── coefficientWilkeMultiComponentMixture.C │ │ │ │ └── coefficientWilkeMultiComponentMixture.H │ │ │ ├── egrMixture │ │ │ │ ├── egrMixture.C │ │ │ │ └── egrMixture.H │ │ │ ├── homogeneousMixture │ │ │ │ ├── homogeneousMixture.C │ │ │ │ └── homogeneousMixture.H │ │ │ ├── inhomogeneousMixture │ │ │ │ ├── inhomogeneousMixture.C │ │ │ │ └── inhomogeneousMixture.H │ │ │ ├── multiComponentMixture │ │ │ │ ├── multiComponentMixture.C │ │ │ │ └── multiComponentMixture.H │ │ │ ├── singleComponentMixture │ │ │ │ ├── singleComponentMixture.C │ │ │ │ └── singleComponentMixture.H │ │ │ ├── valueMultiComponentMixture │ │ │ │ ├── valueMultiComponentMixture.C │ │ │ │ └── valueMultiComponentMixture.H │ │ │ └── veryInhomogeneousMixture │ │ │ │ ├── veryInhomogeneousMixture.C │ │ │ │ └── veryInhomogeneousMixture.H │ │ ├── psiReactionThermo │ │ │ ├── psiReactionThermo.C │ │ │ ├── psiReactionThermo.H │ │ │ └── psiReactionThermos.C │ │ ├── psiuReactionThermo │ │ │ ├── heheuPsiThermo.C │ │ │ ├── heheuPsiThermo.H │ │ │ ├── psiuReactionThermo.C │ │ │ ├── psiuReactionThermo.H │ │ │ └── psiuReactionThermos.C │ │ └── rhoReactionThermo │ │ │ ├── rhoReactionThermo.C │ │ │ ├── rhoReactionThermo.H │ │ │ └── rhoReactionThermos.C │ ├── solidSpecie │ │ ├── include │ │ │ └── forSolids.H │ │ └── transport │ │ │ ├── const │ │ │ ├── constAnIsoSolidTransport.C │ │ │ ├── constAnIsoSolidTransport.H │ │ │ ├── constAnIsoSolidTransportI.H │ │ │ ├── constIsoSolidTransport.C │ │ │ ├── constIsoSolidTransport.H │ │ │ └── constIsoSolidTransportI.H │ │ │ ├── exponential │ │ │ ├── exponentialSolidTransport.C │ │ │ ├── exponentialSolidTransport.H │ │ │ └── exponentialSolidTransportI.H │ │ │ └── polynomial │ │ │ ├── polynomialSolidTransport.C │ │ │ ├── polynomialSolidTransport.H │ │ │ └── polynomialSolidTransportI.H │ ├── solidThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── makeSolidThermo.H │ │ └── solidThermo │ │ │ ├── heSolidThermo.C │ │ │ ├── heSolidThermo.H │ │ │ ├── solidThermo.C │ │ │ ├── solidThermo.H │ │ │ └── solidThermos.C │ ├── specie │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── atomicWeights │ │ │ ├── atomicWeights.C │ │ │ └── atomicWeights.H │ │ ├── equationOfState │ │ │ ├── Boussinesq │ │ │ │ ├── Boussinesq.C │ │ │ │ ├── Boussinesq.H │ │ │ │ └── BoussinesqI.H │ │ │ ├── PengRobinsonGas │ │ │ │ ├── PengRobinsonGas.C │ │ │ │ ├── PengRobinsonGas.H │ │ │ │ └── PengRobinsonGasI.H │ │ │ ├── adiabaticPerfectFluid │ │ │ │ ├── adiabaticPerfectFluid.C │ │ │ │ ├── adiabaticPerfectFluid.H │ │ │ │ └── adiabaticPerfectFluidI.H │ │ │ ├── icoPolynomial │ │ │ │ ├── icoPolynomial.C │ │ │ │ ├── icoPolynomial.H │ │ │ │ └── icoPolynomialI.H │ │ │ ├── icoTabulated │ │ │ │ ├── icoTabulated.C │ │ │ │ ├── icoTabulated.H │ │ │ │ └── icoTabulatedI.H │ │ │ ├── incompressiblePerfectGas │ │ │ │ ├── incompressiblePerfectGas.C │ │ │ │ ├── incompressiblePerfectGas.H │ │ │ │ └── incompressiblePerfectGasI.H │ │ │ ├── linear │ │ │ │ ├── linear.C │ │ │ │ ├── linear.H │ │ │ │ └── linearI.H │ │ │ ├── perfectFluid │ │ │ │ ├── perfectFluid.C │ │ │ │ ├── perfectFluid.H │ │ │ │ └── perfectFluidI.H │ │ │ ├── perfectGas │ │ │ │ ├── perfectGas.C │ │ │ │ ├── perfectGas.H │ │ │ │ └── perfectGasI.H │ │ │ ├── rPolynomial │ │ │ │ ├── rPolynomial.C │ │ │ │ ├── rPolynomial.H │ │ │ │ └── rPolynomialI.H │ │ │ ├── rhoConst │ │ │ │ ├── rhoConst.C │ │ │ │ ├── rhoConst.H │ │ │ │ └── rhoConstI.H │ │ │ └── rhoTabulated │ │ │ │ ├── rhoTabulated.C │ │ │ │ ├── rhoTabulated.H │ │ │ │ └── rhoTabulatedI.H │ │ ├── include │ │ │ ├── forAbsoluteGases.H │ │ │ ├── forGases.H │ │ │ ├── forLiquids.H │ │ │ ├── forTabulated.H │ │ │ ├── forThermo.H │ │ │ ├── makeThermo.H │ │ │ └── typedefThermo.H │ │ ├── reaction │ │ │ ├── Reactions │ │ │ │ ├── IrreversibleReaction │ │ │ │ │ ├── IrreversibleReaction.C │ │ │ │ │ └── IrreversibleReaction.H │ │ │ │ ├── NonEquilibriumReversibleReaction │ │ │ │ │ ├── NonEquilibriumReversibleReaction.C │ │ │ │ │ └── NonEquilibriumReversibleReaction.H │ │ │ │ ├── Reaction │ │ │ │ │ ├── Reaction.C │ │ │ │ │ ├── Reaction.H │ │ │ │ │ └── ReactionI.H │ │ │ │ ├── ReactionList │ │ │ │ │ ├── ReactionList.C │ │ │ │ │ └── ReactionList.H │ │ │ │ ├── ReactionProxy │ │ │ │ │ ├── ReactionProxy.C │ │ │ │ │ └── ReactionProxy.H │ │ │ │ └── ReversibleReaction │ │ │ │ │ ├── ReversibleReaction.C │ │ │ │ │ └── ReversibleReaction.H │ │ │ ├── reaction │ │ │ │ ├── reaction.C │ │ │ │ ├── reaction.H │ │ │ │ └── reactionI.H │ │ │ ├── reactionRate │ │ │ │ ├── ArrheniusReactionRate │ │ │ │ │ ├── ArrheniusReactionRate.H │ │ │ │ │ └── ArrheniusReactionRateI.H │ │ │ │ ├── ChemicallyActivatedReactionRate │ │ │ │ │ ├── ChemicallyActivatedReactionRate.H │ │ │ │ │ └── ChemicallyActivatedReactionRateI.H │ │ │ │ ├── FallOffReactionRate │ │ │ │ │ ├── FallOffReactionRate.H │ │ │ │ │ └── FallOffReactionRateI.H │ │ │ │ ├── JanevReactionRate │ │ │ │ │ ├── JanevReactionRate.H │ │ │ │ │ └── JanevReactionRateI.H │ │ │ │ ├── LandauTellerReactionRate │ │ │ │ │ ├── LandauTellerReactionRate.H │ │ │ │ │ └── LandauTellerReactionRateI.H │ │ │ │ ├── LangmuirHinshelwood │ │ │ │ │ ├── LangmuirHinshelwoodReactionRate.H │ │ │ │ │ └── LangmuirHinshelwoodReactionRateI.H │ │ │ │ ├── MichaelisMenten │ │ │ │ │ ├── MichaelisMentenReactionRate.H │ │ │ │ │ └── MichaelisMentenReactionRateI.H │ │ │ │ ├── fallOffFunctions │ │ │ │ │ ├── LindemannFallOffFunction │ │ │ │ │ │ ├── LindemannFallOffFunction.H │ │ │ │ │ │ └── LindemannFallOffFunctionI.H │ │ │ │ │ ├── SRIFallOffFunction │ │ │ │ │ │ ├── SRIFallOffFunction.H │ │ │ │ │ │ └── SRIFallOffFunctionI.H │ │ │ │ │ └── TroeFallOffFunction │ │ │ │ │ │ ├── TroeFallOffFunction.H │ │ │ │ │ │ └── TroeFallOffFunctionI.H │ │ │ │ ├── powerSeries │ │ │ │ │ ├── powerSeriesReactionRate.H │ │ │ │ │ └── powerSeriesReactionRateI.H │ │ │ │ ├── thirdBodyArrheniusReactionRate │ │ │ │ │ ├── thirdBodyArrheniusReactionRate.H │ │ │ │ │ └── thirdBodyArrheniusReactionRateI.H │ │ │ │ └── thirdBodyEfficiencies │ │ │ │ │ ├── thirdBodyEfficiencies.H │ │ │ │ │ └── thirdBodyEfficienciesI.H │ │ │ └── specieCoeffs │ │ │ │ ├── specieCoeffs.C │ │ │ │ └── specieCoeffs.H │ │ ├── specie │ │ │ ├── specie.C │ │ │ ├── specie.H │ │ │ └── specieI.H │ │ ├── specieElement │ │ │ ├── specieElement.H │ │ │ └── specieElementI.H │ │ ├── speciesTable │ │ │ └── speciesTable.H │ │ ├── thermo │ │ │ ├── absoluteEnthalpy │ │ │ │ └── absoluteEnthalpy.H │ │ │ ├── absoluteInternalEnergy │ │ │ │ └── absoluteInternalEnergy.H │ │ │ ├── eConst │ │ │ │ ├── eConstThermo.C │ │ │ │ ├── eConstThermo.H │ │ │ │ └── eConstThermoI.H │ │ │ ├── eIcoTabulated │ │ │ │ ├── eIcoTabulatedThermo.C │ │ │ │ ├── eIcoTabulatedThermo.H │ │ │ │ └── eIcoTabulatedThermoI.H │ │ │ ├── ePolynomial │ │ │ │ ├── ePolynomialThermo.C │ │ │ │ ├── ePolynomialThermo.H │ │ │ │ └── ePolynomialThermoI.H │ │ │ ├── ePower │ │ │ │ ├── ePowerThermo.C │ │ │ │ ├── ePowerThermo.H │ │ │ │ └── ePowerThermoI.H │ │ │ ├── eTabulated │ │ │ │ ├── eTabulatedThermo.C │ │ │ │ ├── eTabulatedThermo.H │ │ │ │ └── eTabulatedThermoI.H │ │ │ ├── hConst │ │ │ │ ├── hConstThermo.C │ │ │ │ ├── hConstThermo.H │ │ │ │ └── hConstThermoI.H │ │ │ ├── hIcoTabulated │ │ │ │ ├── hIcoTabulatedThermo.C │ │ │ │ ├── hIcoTabulatedThermo.H │ │ │ │ └── hIcoTabulatedThermoI.H │ │ │ ├── hPolynomial │ │ │ │ ├── hPolynomialThermo.C │ │ │ │ ├── hPolynomialThermo.H │ │ │ │ └── hPolynomialThermoI.H │ │ │ ├── hPower │ │ │ │ ├── hPowerThermo.C │ │ │ │ ├── hPowerThermo.H │ │ │ │ └── hPowerThermoI.H │ │ │ ├── hTabulated │ │ │ │ ├── hTabulatedThermo.C │ │ │ │ ├── hTabulatedThermo.H │ │ │ │ └── hTabulatedThermoI.H │ │ │ ├── janaf │ │ │ │ ├── janafThermo.C │ │ │ │ ├── janafThermo.H │ │ │ │ └── janafThermoI.H │ │ │ ├── sensibleEnthalpy │ │ │ │ └── sensibleEnthalpy.H │ │ │ ├── sensibleInternalEnergy │ │ │ │ └── sensibleInternalEnergy.H │ │ │ └── thermo │ │ │ │ ├── EtoHthermo.H │ │ │ │ ├── HtoEthermo.H │ │ │ │ ├── thermo.C │ │ │ │ ├── thermo.H │ │ │ │ └── thermoI.H │ │ ├── thermophysicalFunctions │ │ │ ├── APIdiffCoef │ │ │ │ ├── APIdiffCoef.C │ │ │ │ └── APIdiffCoef.H │ │ │ ├── NSRDS │ │ │ │ ├── NSRDS0 │ │ │ │ │ ├── NSRDS0.C │ │ │ │ │ └── NSRDS0.H │ │ │ │ ├── NSRDS1 │ │ │ │ │ ├── NSRDS1.C │ │ │ │ │ └── NSRDS1.H │ │ │ │ ├── NSRDS14 │ │ │ │ │ ├── NSRDS14.C │ │ │ │ │ └── NSRDS14.H │ │ │ │ ├── NSRDS2 │ │ │ │ │ ├── NSRDS2.C │ │ │ │ │ └── NSRDS2.H │ │ │ │ ├── NSRDS3 │ │ │ │ │ ├── NSRDS3.C │ │ │ │ │ └── NSRDS3.H │ │ │ │ ├── NSRDS4 │ │ │ │ │ ├── NSRDS4.C │ │ │ │ │ └── NSRDS4.H │ │ │ │ ├── NSRDS5 │ │ │ │ │ ├── NSRDS5.C │ │ │ │ │ └── NSRDS5.H │ │ │ │ ├── NSRDS6 │ │ │ │ │ ├── NSRDS6.C │ │ │ │ │ └── NSRDS6.H │ │ │ │ └── NSRDS7 │ │ │ │ │ ├── NSRDS7.C │ │ │ │ │ └── NSRDS7.H │ │ │ └── integratedNonUniformTable1 │ │ │ │ ├── integratedNonUniformTable1.C │ │ │ │ └── integratedNonUniformTable1.H │ │ └── transport │ │ │ ├── WLF │ │ │ ├── WLFTransport.C │ │ │ ├── WLFTransport.H │ │ │ └── WLFTransportI.H │ │ │ ├── const │ │ │ ├── constTransport.C │ │ │ ├── constTransport.H │ │ │ └── constTransportI.H │ │ │ ├── icoTabulated │ │ │ ├── icoTabulatedTransport.C │ │ │ ├── icoTabulatedTransport.H │ │ │ └── icoTabulatedTransportI.H │ │ │ ├── logPolynomial │ │ │ ├── logPolynomialTransport.C │ │ │ ├── logPolynomialTransport.H │ │ │ └── logPolynomialTransportI.H │ │ │ ├── polynomial │ │ │ ├── polynomialTransport.C │ │ │ ├── polynomialTransport.H │ │ │ └── polynomialTransportI.H │ │ │ ├── sutherland │ │ │ ├── sutherlandTransport.C │ │ │ ├── sutherlandTransport.H │ │ │ └── sutherlandTransportI.H │ │ │ └── tabulated │ │ │ ├── tabulatedTransport.C │ │ │ ├── tabulatedTransport.H │ │ │ └── tabulatedTransportI.H │ └── thermophysicalProperties │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── liquidProperties │ │ ├── Ar │ │ │ ├── Ar.C │ │ │ ├── Ar.H │ │ │ └── ArI.H │ │ ├── C10H22 │ │ │ ├── C10H22.C │ │ │ ├── C10H22.H │ │ │ └── C10H22I.H │ │ ├── C12H26 │ │ │ ├── C12H26.C │ │ │ ├── C12H26.H │ │ │ └── C12H26I.H │ │ ├── C13H28 │ │ │ ├── C13H28.C │ │ │ ├── C13H28.H │ │ │ └── C13H28I.H │ │ ├── C14H30 │ │ │ ├── C14H30.C │ │ │ ├── C14H30.H │ │ │ └── C14H30I.H │ │ ├── C16H34 │ │ │ ├── C16H34.C │ │ │ ├── C16H34.H │ │ │ └── C16H34I.H │ │ ├── C2H5OH │ │ │ ├── C2H5OH.C │ │ │ ├── C2H5OH.H │ │ │ └── C2H5OHI.H │ │ ├── C2H6 │ │ │ ├── C2H6.C │ │ │ ├── C2H6.H │ │ │ └── C2H6I.H │ │ ├── C2H6O │ │ │ ├── C2H6O.C │ │ │ ├── C2H6O.H │ │ │ └── C2H6OI.H │ │ ├── C3H6O │ │ │ ├── C3H6O.C │ │ │ ├── C3H6O.H │ │ │ └── C3H6OI.H │ │ ├── C3H8 │ │ │ ├── C3H8.C │ │ │ ├── C3H8.H │ │ │ └── C3H8I.H │ │ ├── C4H10O │ │ │ ├── C4H10O.C │ │ │ ├── C4H10O.H │ │ │ └── C4H10OI.H │ │ ├── C6H14 │ │ │ ├── C6H14.C │ │ │ ├── C6H14.H │ │ │ └── C6H14I.H │ │ ├── C6H6 │ │ │ ├── C6H6.C │ │ │ ├── C6H6.H │ │ │ └── C6H6I.H │ │ ├── C7H16 │ │ │ ├── C7H16.C │ │ │ ├── C7H16.H │ │ │ └── C7H16I.H │ │ ├── C7H8 │ │ │ ├── C7H8.C │ │ │ ├── C7H8.H │ │ │ └── C7H8I.H │ │ ├── C8H10 │ │ │ ├── C8H10.C │ │ │ ├── C8H10.H │ │ │ └── C8H10I.H │ │ ├── C8H18 │ │ │ ├── C8H18.C │ │ │ ├── C8H18.H │ │ │ └── C8H18I.H │ │ ├── C9H20 │ │ │ ├── C9H20.C │ │ │ ├── C9H20.H │ │ │ └── C9H20I.H │ │ ├── CH3OH │ │ │ ├── CH3OH.C │ │ │ ├── CH3OH.H │ │ │ └── CH3OHI.H │ │ ├── CH4N2O │ │ │ ├── CH4N2O.C │ │ │ ├── CH4N2O.H │ │ │ └── CH4N2OI.H │ │ ├── H2O │ │ │ ├── H2O.C │ │ │ ├── H2O.H │ │ │ └── H2OI.H │ │ ├── IC8H18 │ │ │ ├── IC8H18.C │ │ │ ├── IC8H18.H │ │ │ └── IC8H18I.H │ │ ├── IDEA │ │ │ ├── IDEA.C │ │ │ ├── IDEA.H │ │ │ ├── IDEA.thermo │ │ │ └── IDEAI.H │ │ ├── MB │ │ │ ├── MB.C │ │ │ ├── MB.H │ │ │ └── MBI.H │ │ ├── N2 │ │ │ ├── N2.C │ │ │ ├── N2.H │ │ │ └── N2I.H │ │ ├── aC10H7CH3 │ │ │ ├── aC10H7CH3.C │ │ │ ├── aC10H7CH3.H │ │ │ └── aC10H7CH3I.H │ │ ├── bC10H7CH3 │ │ │ ├── bC10H7CH3.C │ │ │ ├── bC10H7CH3.H │ │ │ └── bC10H7CH3I.H │ │ ├── iC3H8O │ │ │ ├── iC3H8O.C │ │ │ ├── iC3H8O.H │ │ │ └── iC3H8OI.H │ │ ├── liquid │ │ │ ├── liquid.C │ │ │ ├── liquid.H │ │ │ └── liquidI.H │ │ ├── liquidMixtureProperties │ │ │ ├── liquidMixtureProperties.C │ │ │ └── liquidMixtureProperties.H │ │ ├── liquidProperties │ │ │ ├── liquidProperties.C │ │ │ ├── liquidProperties.H │ │ │ └── liquidPropertiesI.H │ │ └── nC3H8O │ │ │ ├── nC3H8O.C │ │ │ ├── nC3H8O.H │ │ │ └── nC3H8OI.H │ │ ├── solidProperties │ │ ├── C │ │ │ ├── C.C │ │ │ └── C.H │ │ ├── CaCO3 │ │ │ ├── CaCO3.C │ │ │ └── CaCO3.H │ │ ├── ash │ │ │ ├── ash.C │ │ │ └── ash.H │ │ ├── solidMixtureProperties │ │ │ ├── solidMixtureProperties.C │ │ │ └── solidMixtureProperties.H │ │ └── solidProperties │ │ │ ├── solidProperties.C │ │ │ ├── solidProperties.H │ │ │ ├── solidPropertiesI.H │ │ │ └── solidPropertiesNew.C │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.C │ │ ├── thermophysicalProperties.H │ │ └── thermophysicalPropertiesI.H │ │ └── thermophysicalPropertiesSelector │ │ ├── thermophysicalPropertiesSelector.C │ │ ├── thermophysicalPropertiesSelector.H │ │ └── thermophysicalPropertiesSelectorI.H ├── topoChangerFvMesh │ ├── Make │ │ ├── files │ │ └── options │ ├── linearValveFvMesh │ │ ├── linearValveFvMesh.C │ │ └── linearValveFvMesh.H │ ├── linearValveLayersFvMesh │ │ ├── linearValveLayersFvMesh.C │ │ └── linearValveLayersFvMesh.H │ ├── mixerFvMesh │ │ ├── mixerFvMesh.C │ │ └── mixerFvMesh.H │ ├── movingConeTopoFvMesh │ │ ├── movingConeTopoFvMesh.C │ │ └── movingConeTopoFvMesh.H │ ├── rawTopoChangerFvMesh │ │ ├── rawTopoChangerFvMesh.C │ │ ├── rawTopoChangerFvMesh.H │ │ └── rawTopoChangerFvMeshTemplates.C │ └── topoChangerFvMesh │ │ ├── topoChangerFvMesh.C │ │ └── topoChangerFvMesh.H ├── transportModels │ ├── Make │ │ ├── files │ │ └── options │ ├── dynamicTransportModel │ │ ├── dynamicTransportModel.C │ │ └── dynamicTransportModel.H │ ├── kinematicTransportModel │ │ ├── kinematicTransportModel.C │ │ └── kinematicTransportModel.H │ ├── singlePhaseTransportModel │ │ ├── singlePhaseTransportModel.C │ │ └── singlePhaseTransportModel.H │ └── viscosityModels │ │ ├── BirdCarreau │ │ ├── BirdCarreau.C │ │ └── BirdCarreau.H │ │ ├── Casson │ │ ├── Casson.C │ │ └── Casson.H │ │ ├── CrossPowerLaw │ │ ├── CrossPowerLaw.C │ │ └── CrossPowerLaw.H │ │ ├── HerschelBulkley │ │ ├── HerschelBulkley.C │ │ └── HerschelBulkley.H │ │ ├── Newtonian │ │ ├── Newtonian.C │ │ └── Newtonian.H │ │ ├── powerLaw │ │ ├── powerLaw.C │ │ └── powerLaw.H │ │ ├── strainRateFunction │ │ ├── strainRateFunction.C │ │ └── strainRateFunction.H │ │ └── viscosityModel │ │ ├── viscosityModel.C │ │ ├── viscosityModel.H │ │ └── viscosityModelNew.C ├── triSurface │ ├── Make │ │ ├── files │ │ └── options │ ├── meshTriangulation │ │ ├── meshTriangulation.C │ │ └── meshTriangulation.H │ ├── tools │ │ ├── hashSignedLabel │ │ │ └── hashSignedLabel.H │ │ ├── labelPair │ │ │ └── labelPairLookup.H │ │ └── labelledTri │ │ │ ├── labelledTri.H │ │ │ ├── labelledTriI.H │ │ │ ├── sortLabelledTri.C │ │ │ └── sortLabelledTri.H │ ├── triSurface │ │ ├── geometricSurfacePatch │ │ │ ├── geometricSurfacePatch.C │ │ │ ├── geometricSurfacePatch.H │ │ │ └── geometricSurfacePatchList.H │ │ ├── interfaces │ │ │ ├── AC3D │ │ │ │ ├── readAC.C │ │ │ │ └── writeAC.C │ │ │ ├── GTS │ │ │ │ ├── readGTS.C │ │ │ │ └── writeGTS.C │ │ │ ├── NAS │ │ │ │ └── readNAS.C │ │ │ ├── OBJ │ │ │ │ ├── readOBJ.C │ │ │ │ └── writeOBJ.C │ │ │ ├── OFF │ │ │ │ ├── readOFF.C │ │ │ │ └── writeOFF.C │ │ │ ├── SMESH │ │ │ │ └── writeSMESH.C │ │ │ ├── STL │ │ │ │ ├── readSTL.C │ │ │ │ ├── readSTLASCII.L │ │ │ │ ├── readSTLBINARY.C │ │ │ │ └── writeSTL.C │ │ │ ├── TRI │ │ │ │ ├── readTRI.C │ │ │ │ └── writeTRI.C │ │ │ └── VTK │ │ │ │ ├── readVTK.C │ │ │ │ └── writeVTK.C │ │ ├── stitchTriangles.C │ │ ├── surfacePatch │ │ │ ├── surfacePatch.C │ │ │ ├── surfacePatch.H │ │ │ ├── surfacePatchIOList.C │ │ │ ├── surfacePatchIOList.H │ │ │ └── surfacePatchList.H │ │ ├── triSurface.C │ │ ├── triSurface.H │ │ └── triSurfaceAddressing.C │ └── triSurfaceFields │ │ ├── triSurfaceFields.C │ │ ├── triSurfaceFields.H │ │ ├── triSurfaceFieldsFwd.H │ │ ├── triSurfaceGeoMesh.H │ │ └── triSurfacePointGeoMesh.H ├── twoPhaseModels │ ├── Allwmake │ ├── immiscibleIncompressibleTwoPhaseMixture │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── immiscibleIncompressibleTwoPhaseMixture.C │ │ └── immiscibleIncompressibleTwoPhaseMixture.H │ ├── incompressibleTwoPhaseMixture │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── incompressibleTwoPhaseMixture.C │ │ └── incompressibleTwoPhaseMixture.H │ ├── interfaceProperties │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── interfaceProperties.C │ │ ├── interfaceProperties.H │ │ └── surfaceTensionModels │ │ │ ├── constant │ │ │ ├── constantSurfaceTension.C │ │ │ └── constantSurfaceTension.H │ │ │ ├── surfaceTensionModel │ │ │ ├── surfaceTensionModel.C │ │ │ ├── surfaceTensionModel.H │ │ │ └── surfaceTensionModelNew.C │ │ │ └── temperatureDependent │ │ │ ├── temperatureDependentSurfaceTension.C │ │ │ └── temperatureDependentSurfaceTension.H │ ├── twoPhaseChange │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cavitation │ │ │ ├── Kunz │ │ │ │ ├── Kunz.C │ │ │ │ └── Kunz.H │ │ │ ├── Merkle │ │ │ │ ├── Merkle.C │ │ │ │ └── Merkle.H │ │ │ ├── SchnerrSauer │ │ │ │ ├── SchnerrSauer.C │ │ │ │ └── SchnerrSauer.H │ │ │ └── cavitationModel │ │ │ │ ├── cavitationModel.C │ │ │ │ └── cavitationModel.H │ │ ├── noPhaseChange │ │ │ ├── noPhaseChange.C │ │ │ └── noPhaseChange.H │ │ └── twoPhaseChangeModel │ │ │ ├── twoPhaseChangeModel.C │ │ │ ├── twoPhaseChangeModel.H │ │ │ └── twoPhaseChangeModelNew.C │ ├── twoPhaseMixture │ │ ├── MPLIC │ │ │ ├── MPLIC.C │ │ │ ├── MPLIC.H │ │ │ ├── MPLICU.C │ │ │ ├── MPLICU.H │ │ │ ├── MPLICcell.C │ │ │ ├── MPLICcell.H │ │ │ ├── MPLICcellI.H │ │ │ ├── MPLICcellStorage.C │ │ │ ├── MPLICcellStorage.H │ │ │ ├── MPLICcellStorageI.H │ │ │ ├── MPLICface.C │ │ │ ├── MPLICface.H │ │ │ └── MPLICfaceI.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── PLIC │ │ │ ├── PLIC.C │ │ │ ├── PLIC.H │ │ │ ├── PLICU.C │ │ │ └── PLICU.H │ │ ├── VoF │ │ │ ├── alphaControls.H │ │ │ ├── alphaCourantNo.H │ │ │ ├── alphaEqn.H │ │ │ ├── alphaEqnSubCycle.H │ │ │ ├── alphaScheme.H │ │ │ ├── createAlphaFluxes.H │ │ │ ├── setDeltaT.H │ │ │ └── setRDeltaT.H │ │ ├── interfaceCompression │ │ │ ├── interfaceCompression.C │ │ │ └── interfaceCompression.H │ │ ├── noInterfaceCompression │ │ │ ├── noInterfaceCompression.C │ │ │ └── noInterfaceCompression.H │ │ └── twoPhaseMixture │ │ │ ├── twoPhaseMixture.C │ │ │ └── twoPhaseMixture.H │ └── twoPhaseProperties │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── alphaContactAngle │ │ ├── alphaContactAngle │ │ │ ├── alphaContactAngleFvPatchScalarField.C │ │ │ └── alphaContactAngleFvPatchScalarField.H │ │ ├── constantAlphaContactAngle │ │ │ ├── constantAlphaContactAngleFvPatchScalarField.C │ │ │ └── constantAlphaContactAngleFvPatchScalarField.H │ │ ├── dynamicAlphaContactAngle │ │ │ ├── dynamicAlphaContactAngleFvPatchScalarField.C │ │ │ └── dynamicAlphaContactAngleFvPatchScalarField.H │ │ ├── temperatureDependentAlphaContactAngle │ │ │ ├── temperatureDependentAlphaContactAngleFvPatchScalarField.C │ │ │ └── temperatureDependentAlphaContactAngleFvPatchScalarField.H │ │ └── timeVaryingAlphaContactAngle │ │ │ ├── timeVaryingAlphaContactAngleFvPatchScalarField.C │ │ │ └── timeVaryingAlphaContactAngleFvPatchScalarField.H │ │ └── alphaFixedPressure │ │ ├── alphaFixedPressureFvPatchScalarField.C │ │ └── alphaFixedPressureFvPatchScalarField.H └── waves │ ├── Make │ ├── files │ └── options │ ├── derivedFvPatchFields │ ├── waveAlpha │ │ ├── waveAlphaFvPatchScalarField.C │ │ └── waveAlphaFvPatchScalarField.H │ ├── waveInletOutlet │ │ ├── waveInletOutletFvPatchField.C │ │ ├── waveInletOutletFvPatchField.H │ │ ├── waveInletOutletFvPatchFields.C │ │ ├── waveInletOutletFvPatchFields.H │ │ └── waveInletOutletFvPatchFieldsFwd.H │ ├── wavePressure │ │ ├── wavePressureFvPatchScalarField.C │ │ └── wavePressureFvPatchScalarField.H │ └── waveVelocity │ │ ├── waveVelocityFvPatchVectorField.C │ │ └── waveVelocityFvPatchVectorField.H │ ├── waveModels │ ├── Airy │ │ ├── Airy.C │ │ └── Airy.H │ ├── Stokes2 │ │ ├── Stokes2.C │ │ └── Stokes2.H │ ├── Stokes5 │ │ ├── Stokes5.C │ │ └── Stokes5.H │ ├── solitary │ │ ├── solitary.C │ │ └── solitary.H │ └── waveModel │ │ ├── waveModel.C │ │ ├── waveModel.H │ │ └── waveModelNew.C │ └── waveSuperpositions │ ├── waveAtmBoundaryLayerSuperposition │ ├── waveAtmBoundaryLayerSuperposition.C │ └── waveAtmBoundaryLayerSuperposition.H │ └── waveSuperposition │ ├── waveSuperposition.C │ ├── waveSuperposition.H │ └── waveSuperpositionNew.C ├── test ├── Allclean ├── Allrun ├── IO │ └── fileHandler │ │ ├── 0 │ │ └── U │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── cloudPositions │ │ ├── cloudProperties │ │ ├── g │ │ ├── momentumTransport │ │ └── transportProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── fvMeshTools │ ├── Allrun │ ├── Test-fvMeshTools │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── Test-fvMeshTools.C │ └── cavity │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ └── pointDisplacement │ │ ├── Allclean │ │ ├── Allrun │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── multiphase │ └── multiphaseEulerFoam │ │ ├── interfaceComposition │ │ ├── waterAndIsopropanolEvaporation │ │ │ ├── 0 │ │ │ │ ├── C3H8O.liquid │ │ │ │ ├── H2O.liquid │ │ │ │ ├── T.gas │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.liquid │ │ │ │ ├── Ydefault.gas │ │ │ │ ├── Ydefault.liquid │ │ │ │ ├── air.gas │ │ │ │ ├── alpha.gas │ │ │ │ ├── alpha.liquid │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.gas │ │ │ │ ├── momentumTransport.liquid │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas.orig │ │ │ │ └── thermophysicalProperties.liquid.orig │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── continuity │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── plot │ │ └── waterEvaporation │ │ │ ├── 0 │ │ │ ├── T.gas │ │ │ ├── T.liquid │ │ │ ├── U.gas │ │ │ ├── U.liquid │ │ │ ├── Ydefault.gas │ │ │ ├── air.gas │ │ │ ├── alpha.gas │ │ │ ├── alpha.liquid │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── momentumTransport.gas │ │ │ ├── momentumTransport.liquid │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.gas.orig │ │ │ └── thermophysicalProperties.liquid.orig │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── continuity │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── plot │ │ ├── populationBalance │ │ ├── binaryBreakup │ │ │ ├── 0 │ │ │ │ ├── T.air1 │ │ │ │ ├── T.air2 │ │ │ │ ├── T.air3 │ │ │ │ ├── T.water │ │ │ │ ├── U.air1 │ │ │ │ ├── U.air2 │ │ │ │ ├── U.air3 │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air1 │ │ │ │ ├── alpha.air2 │ │ │ │ ├── alpha.air3 │ │ │ │ ├── alpha.water │ │ │ │ ├── f.air1 │ │ │ │ ├── f.air2 │ │ │ │ ├── f.air3 │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air1 │ │ │ │ ├── momentumTransport.air2 │ │ │ │ ├── momentumTransport.air3 │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air1 │ │ │ │ ├── thermophysicalProperties.air2 │ │ │ │ ├── thermophysicalProperties.air3 │ │ │ │ └── thermophysicalProperties.water │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ └── createGraphs │ │ ├── breakup │ │ │ ├── 0 │ │ │ │ ├── T.air1 │ │ │ │ ├── T.air2 │ │ │ │ ├── T.air3 │ │ │ │ ├── T.water │ │ │ │ ├── U.air1 │ │ │ │ ├── U.air2 │ │ │ │ ├── U.air3 │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air1 │ │ │ │ ├── alpha.air2 │ │ │ │ ├── alpha.air3 │ │ │ │ ├── alpha.water │ │ │ │ ├── f.air1 │ │ │ │ ├── f.air2 │ │ │ │ ├── f.air3 │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air1 │ │ │ │ ├── momentumTransport.air2 │ │ │ │ ├── momentumTransport.air3 │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air1 │ │ │ │ ├── thermophysicalProperties.air2 │ │ │ │ ├── thermophysicalProperties.air3 │ │ │ │ └── thermophysicalProperties.water │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ └── createGraphs │ │ ├── coalescence │ │ │ ├── 0 │ │ │ │ ├── T.air1 │ │ │ │ ├── T.air2 │ │ │ │ ├── T.air3 │ │ │ │ ├── T.water │ │ │ │ ├── U.air1 │ │ │ │ ├── U.air2 │ │ │ │ ├── U.air3 │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air1 │ │ │ │ ├── alpha.air2 │ │ │ │ ├── alpha.air3 │ │ │ │ ├── alpha.water │ │ │ │ ├── f.air1 │ │ │ │ ├── f.air2 │ │ │ │ ├── f.air3 │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air1 │ │ │ │ ├── momentumTransport.air2 │ │ │ │ ├── momentumTransport.air3 │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air1 │ │ │ │ ├── thermophysicalProperties.air2 │ │ │ │ ├── thermophysicalProperties.air3 │ │ │ │ └── thermophysicalProperties.water │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ └── createGraphs │ │ ├── drift │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air │ │ │ │ ├── f.air │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.water │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ └── createGraphs │ │ ├── isothermalGrowth │ │ │ ├── 0 │ │ │ │ ├── T.air1 │ │ │ │ ├── T.air2 │ │ │ │ ├── T.air3 │ │ │ │ ├── T.water │ │ │ │ ├── U.air1 │ │ │ │ ├── U.air2 │ │ │ │ ├── U.air3 │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air1 │ │ │ │ ├── alpha.air2 │ │ │ │ ├── alpha.air3 │ │ │ │ ├── alpha.water │ │ │ │ ├── f.air1 │ │ │ │ ├── f.air2 │ │ │ │ ├── f.air3 │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── hRef │ │ │ │ ├── momentumTransport.air1 │ │ │ │ ├── momentumTransport.air2 │ │ │ │ ├── momentumTransport.air3 │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air1 │ │ │ │ ├── thermophysicalProperties.air2 │ │ │ │ ├── thermophysicalProperties.air3 │ │ │ │ └── thermophysicalProperties.water │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── cellZoneAverage │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ │ └── validation │ │ │ │ ├── createGraphs │ │ │ │ └── d.bubbles │ │ ├── negativeDrift │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air │ │ │ │ ├── f.air │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.water │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ └── createGraphs │ │ └── simultaneousCoalescenceAndBreakup │ │ │ ├── 0 │ │ │ ├── T.air1 │ │ │ ├── T.air2 │ │ │ ├── T.air3 │ │ │ ├── T.water │ │ │ ├── U.air1 │ │ │ ├── U.air2 │ │ │ ├── U.air3 │ │ │ ├── U.water │ │ │ ├── alpha.air1 │ │ │ ├── alpha.air2 │ │ │ ├── alpha.air3 │ │ │ ├── alpha.water │ │ │ ├── f.air1 │ │ │ ├── f.air2 │ │ │ ├── f.air3 │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── momentumTransport.air1 │ │ │ ├── momentumTransport.air2 │ │ │ ├── momentumTransport.air3 │ │ │ ├── momentumTransport.water │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air1 │ │ │ ├── thermophysicalProperties.air2 │ │ │ ├── thermophysicalProperties.air3 │ │ │ └── thermophysicalProperties.water │ │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── validation │ │ │ └── createGraphs │ │ └── thermal │ │ └── waterEvaporation │ │ ├── 0 │ │ ├── T.steam │ │ ├── T.water │ │ ├── U.steam │ │ ├── U.water │ │ ├── alpha.steam │ │ ├── alpha.water │ │ ├── p │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── momentumTransport.steam │ │ ├── momentumTransport.water │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.steam.orig │ │ └── thermophysicalProperties.water.orig │ │ └── system │ │ ├── blockMeshDict │ │ ├── continuity │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── plot └── postProcessing │ └── channel │ ├── 0 │ ├── T │ ├── U │ ├── alphat │ ├── epsilon │ ├── k │ ├── nut │ ├── p │ ├── p_rgh │ ├── s │ └── s.dummy │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── g │ ├── momentumTransport │ ├── thermophysicalProperties │ ├── thermophysicalTransport │ └── triSurface │ │ ├── mid.obj │ │ ├── nearInlet.obj │ │ └── nearOutlet.obj │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ └── topoSetDict ├── tutorials ├── Allclean ├── Allrun ├── Alltest ├── DNS │ └── dnsFoam │ │ └── boxTurb16 │ │ ├── 0 │ │ ├── U.orig │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── boxTurbDict │ │ ├── momentumTransport │ │ └── transportProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── basic │ ├── laplacianFoam │ │ └── flange │ │ │ ├── 0 │ │ │ └── T │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── transportProperties │ │ │ ├── flange.ans │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── potentialFoam │ │ ├── cylinder │ │ │ ├── 0 │ │ │ │ ├── U.orig │ │ │ │ └── p.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── pitzDaily │ │ │ ├── 0 │ │ │ ├── U.orig │ │ │ └── p.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── scalarTransportFoam │ │ └── pitzDaily │ │ ├── 0 │ │ ├── T │ │ └── U │ │ ├── Allrun │ │ ├── constant │ │ └── transportProperties │ │ └── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── combustion │ ├── PDRFoam │ │ └── flamePropagationWithObstacles │ │ │ ├── 0 │ │ │ ├── Aw.orig │ │ │ ├── B.orig │ │ │ ├── CR.orig │ │ │ ├── CT.orig │ │ │ ├── Lobs.orig │ │ │ ├── Nv.orig │ │ │ ├── Su.orig │ │ │ ├── T.orig │ │ │ ├── Tu.orig │ │ │ ├── U.orig │ │ │ ├── Xi.orig │ │ │ ├── alphat.orig │ │ │ ├── b.orig │ │ │ ├── betav.orig │ │ │ ├── epsilon.orig │ │ │ ├── ft.orig │ │ │ ├── k.orig │ │ │ ├── nsv.orig │ │ │ ├── nut.orig │ │ │ └── p.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ ├── PDRProperties │ │ │ ├── combustionProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ │ ├── fuels │ │ │ └── propane.dat │ │ │ └── system │ │ │ ├── PDRMeshDict │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ ├── XiEngineFoam │ │ └── kivaTest │ │ │ ├── -180 │ │ │ ├── Su │ │ │ ├── T │ │ │ ├── Tu │ │ │ ├── U │ │ │ ├── Xi │ │ │ ├── alphat │ │ │ ├── b │ │ │ ├── epsilon │ │ │ ├── ft │ │ │ ├── fu │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── combustionProperties │ │ │ ├── engineGeometry │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ │ ├── otape17 │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── XiFoam │ │ └── RAS │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── moriyoshiHomogeneous │ │ │ ├── 0 │ │ │ ├── Su │ │ │ ├── T │ │ │ ├── Tu │ │ │ ├── U │ │ │ ├── Xi │ │ │ ├── alphat │ │ │ ├── b │ │ │ ├── epsilon │ │ │ ├── ft │ │ │ ├── fu │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ │ ├── constant │ │ │ ├── combustionProperties │ │ │ ├── combustionPropertiesInclude │ │ │ ├── combustionPropertiesInclude.hydrogen │ │ │ ├── momentumTransport │ │ │ ├── thermophysicalProperties │ │ │ └── thermophysicalProperties.hydrogen │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict.orig │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── buoyantReactingFoam │ │ ├── Lagrangian │ │ │ ├── cylinder │ │ │ │ ├── 0 │ │ │ │ │ ├── H2O │ │ │ │ │ ├── N2 │ │ │ │ │ ├── O2 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── p_rgh │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ │ ├── T │ │ │ │ │ │ ├── U │ │ │ │ │ │ └── delta │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── cloudProperties │ │ │ │ │ ├── combustionProperties │ │ │ │ │ ├── fvModels │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── parcelInjectionProperties │ │ │ │ │ ├── speciesThermo │ │ │ │ │ ├── surfaceFilmProperties │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createPatchDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── extrudeToRegionMeshDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── topoSetDict │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── hotBoxes │ │ │ │ ├── 0 │ │ │ │ │ ├── H2O │ │ │ │ │ ├── N2 │ │ │ │ │ ├── O2 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── htcConv │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── p │ │ │ │ │ ├── p_rgh │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ │ ├── T │ │ │ │ │ │ ├── U │ │ │ │ │ │ └── delta │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── Allrun-parallel │ │ │ │ ├── constant │ │ │ │ │ ├── cloudProperties │ │ │ │ │ ├── combustionProperties │ │ │ │ │ ├── fvModels │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── speciesThermo │ │ │ │ │ ├── surfaceFilmProperties │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ │ └── thermophysicalProperties │ │ │ │ ├── createObstacle.setSet │ │ │ │ ├── createWallFilmZone.setSet │ │ │ │ ├── patchify.setSet │ │ │ │ ├── patchifyObstacles │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── extrudeToRegionMeshDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── topoSetDict │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── rivuletPanel │ │ │ │ ├── 0 │ │ │ │ │ ├── H2O │ │ │ │ │ ├── N2 │ │ │ │ │ ├── O2 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── p_rgh │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ │ ├── T │ │ │ │ │ │ ├── U │ │ │ │ │ │ └── delta │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── combustionProperties │ │ │ │ │ ├── fvModels │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── speciesThermo │ │ │ │ │ ├── surfaceFilmProperties │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ │ └── thermophysicalProperties │ │ │ │ ├── createWallFilmRegionPatches.setSet │ │ │ │ ├── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createPatchDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── extrudeToRegionMeshDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── wallFilmRegion.topoSet │ │ │ │ │ └── wallFilmRegion │ │ │ │ │ │ ├── createPatchDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ └── fvSolution │ │ │ │ └── wallFilmRegion.setSet │ │ │ └── splashPanel │ │ │ │ ├── 0 │ │ │ │ ├── H2O │ │ │ │ ├── N2 │ │ │ │ ├── O2 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ └── wallFilm │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ └── delta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── cloudProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── parcelInjectionProperties │ │ │ │ ├── speciesThermo │ │ │ │ ├── surfaceFilmProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── wallFilm │ │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── extrudeToRegionMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── topoSetDict │ │ │ │ └── wallFilm │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── RAS │ │ │ ├── smallPoolFire2D │ │ │ ├── 0 │ │ │ │ ├── CH4 │ │ │ │ ├── FSDomega │ │ │ │ ├── G │ │ │ │ ├── IDefault │ │ │ │ ├── N2 │ │ │ │ ├── O2 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── Ydefault │ │ │ │ ├── alphat │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ ├── ph_rgh.orig │ │ │ │ └── soot │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── hRef │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ ├── radiationProperties │ │ │ │ ├── reaction │ │ │ │ ├── thermo.compressibleGas │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ │ └── smallPoolFire3D │ │ │ ├── 0 │ │ │ ├── CH4 │ │ │ ├── G │ │ │ ├── IDefault │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── ph_rgh.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── combustionProperties │ │ │ ├── fvModels │ │ │ ├── g │ │ │ ├── hRef │ │ │ ├── momentumTransport │ │ │ ├── pRef │ │ │ ├── radiationProperties │ │ │ ├── reaction │ │ │ ├── thermo.compressibleGas │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ ├── chemFoam │ │ ├── README │ │ ├── gri │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── chemkin │ │ │ │ ├── chem.inp │ │ │ │ ├── senk.inp │ │ │ │ ├── senk.out │ │ │ │ ├── therm.dat │ │ │ │ └── transportProperties │ │ │ ├── constant │ │ │ │ ├── chemistryProperties │ │ │ │ ├── initialConditions │ │ │ │ └── thermophysicalProperties │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ ├── Allrun │ │ │ │ └── createGraph │ │ ├── h2 │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── chemkin │ │ │ │ ├── chem.inp │ │ │ │ ├── senk.inp │ │ │ │ ├── senk.out │ │ │ │ ├── therm.dat │ │ │ │ └── transportProperties │ │ │ ├── constant │ │ │ │ ├── chemistryProperties │ │ │ │ ├── initialConditions │ │ │ │ └── thermophysicalProperties │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ ├── Allrun │ │ │ │ └── createGraph │ │ ├── ic8h18 │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── chemkin │ │ │ │ ├── chem.inp │ │ │ │ ├── senk.inp │ │ │ │ ├── senk.out │ │ │ │ ├── therm.dat │ │ │ │ └── transportProperties │ │ │ ├── constant │ │ │ │ ├── chemistryProperties │ │ │ │ ├── initialConditions │ │ │ │ └── thermophysicalProperties │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ ├── Allrun │ │ │ │ └── createGraph │ │ ├── ic8h18_TDAC │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── chemkin │ │ │ │ ├── chem.inp │ │ │ │ ├── senk.inp │ │ │ │ ├── senk.out │ │ │ │ ├── therm.dat │ │ │ │ └── transportProperties │ │ │ ├── constant │ │ │ │ ├── chemistryProperties │ │ │ │ ├── initialConditions │ │ │ │ └── thermophysicalProperties │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── validation │ │ │ │ ├── Allrun │ │ │ │ └── createGraph │ │ └── nc7h16 │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── chemkin │ │ │ ├── chem.inp │ │ │ ├── senk.inp │ │ │ ├── senk.out │ │ │ ├── therm.dat │ │ │ └── transportProperties │ │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── initialConditions │ │ │ └── thermophysicalProperties │ │ │ ├── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── validation │ │ │ ├── Allrun │ │ │ └── createGraph │ ├── coldEngineFoam │ │ └── freePiston │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── air │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── include │ │ │ │ ├── boundaryConditions │ │ │ │ └── caseSettings │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ │ ├── constant │ │ │ ├── engineGeometry │ │ │ ├── g │ │ │ ├── include │ │ │ │ └── thermo.air │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── reactingFoam │ │ ├── Lagrangian │ │ ├── aachenBomb │ │ │ ├── 0 │ │ │ │ ├── N2 │ │ │ │ ├── O2 │ │ │ │ ├── Qdot │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── Ydefault │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── chemkin │ │ │ │ ├── chem.inp │ │ │ │ ├── therm.dat │ │ │ │ └── transportProperties │ │ │ ├── constant │ │ │ │ ├── chemistryProperties │ │ │ │ ├── cloudProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── filter │ │ │ ├── 0 │ │ │ │ ├── G │ │ │ │ ├── H2O │ │ │ │ ├── N2 │ │ │ │ ├── O2 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── cloudProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── parcelInjectionProperties │ │ │ │ ├── speciesThermo │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ ├── parcelInBox │ │ │ ├── 0 │ │ │ │ ├── G │ │ │ │ ├── H2O │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── air │ │ │ │ └── p │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── cloudPositions │ │ │ │ ├── cloudProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── speciesThermo │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── probesDict │ │ ├── simplifiedSiwek │ │ │ ├── 0 │ │ │ │ ├── CH4 │ │ │ │ ├── CO │ │ │ │ ├── CO2 │ │ │ │ ├── G │ │ │ │ ├── H2 │ │ │ │ ├── H2O │ │ │ │ ├── N2 │ │ │ │ ├── O2 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p.orig │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── chemistryProperties │ │ │ │ ├── clouds │ │ │ │ ├── coalCloudPositions │ │ │ │ ├── coalCloudProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── limestoneCloudPositions │ │ │ │ ├── limestoneCloudProperties │ │ │ │ ├── momentumTransport │ │ │ │ ├── radiationProperties │ │ │ │ ├── reactions │ │ │ │ ├── speciesThermo │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ ├── verticalChannel │ │ │ ├── 0 │ │ │ │ ├── H2O │ │ │ │ ├── T │ │ │ │ ├── U.orig │ │ │ │ ├── air │ │ │ │ ├── alphat │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── cloudProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── speciesThermo │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── particleTracksDict │ │ ├── verticalChannelLTS │ │ │ ├── 0 │ │ │ │ ├── H2O │ │ │ │ ├── T │ │ │ │ ├── U.orig │ │ │ │ ├── air │ │ │ │ ├── alphat │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── cloudProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── speciesThermo │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── steadyParticleTracksDict │ │ └── verticalChannelSteady │ │ │ ├── 0 │ │ │ ├── H2O │ │ │ ├── T │ │ │ ├── U.orig │ │ │ ├── air │ │ │ ├── alphat │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── cloudProperties │ │ │ ├── combustionProperties │ │ │ ├── fvConstraints │ │ │ ├── fvModels │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ ├── speciesThermo │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── steadyParticleTracksDict │ │ ├── RAS │ │ ├── DLR_A_LTS │ │ │ ├── 0 │ │ │ │ ├── CH4 │ │ │ │ ├── G │ │ │ │ ├── H2 │ │ │ │ ├── H2O │ │ │ │ ├── N2 │ │ │ │ ├── O2 │ │ │ │ ├── T.orig │ │ │ │ ├── U │ │ │ │ ├── Ydefault │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── chemkin │ │ │ │ ├── grimech30.dat │ │ │ │ ├── thermo30.dat │ │ │ │ └── transportProperties │ │ │ ├── constant │ │ │ │ ├── chemistryProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── reactionsGRI.orig │ │ │ │ ├── thermo.compressibleGasGRI.orig │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── SandiaD_LTS │ │ │ ├── 0 │ │ │ │ ├── CH4.orig │ │ │ │ ├── CO │ │ │ │ ├── CO2 │ │ │ │ ├── G │ │ │ │ ├── H │ │ │ │ ├── H2 │ │ │ │ ├── H2O │ │ │ │ ├── N2.orig │ │ │ │ ├── O │ │ │ │ ├── O2.orig │ │ │ │ ├── OH │ │ │ │ ├── T.orig │ │ │ │ ├── U │ │ │ │ ├── Ydefault │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── chemkin │ │ │ │ ├── grimech30.dat │ │ │ │ ├── thermo30.dat │ │ │ │ └── transportProperties │ │ │ ├── constant │ │ │ │ ├── chemistryProperties.orig │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── radiationProperties │ │ │ │ ├── reactionsGRI.orig │ │ │ │ ├── thermo.compressibleGasGRI.orig │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict.orig │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── membrane │ │ │ ├── 0 │ │ │ ├── CH4.orig │ │ │ ├── N2.orig │ │ │ ├── O2.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── include │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── combustionProperties │ │ │ ├── geometry │ │ │ │ ├── boundaries.stl.gz │ │ │ │ └── membrane.stl.gz │ │ │ ├── momentumTransport │ │ │ ├── thermo.compressibleGas │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createBafflesDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── setFieldsDict │ │ │ └── snappyHexMeshDict │ │ └── laminar │ │ ├── counterFlowFlame2D │ │ ├── 0 │ │ │ ├── CH4 │ │ │ ├── CO2 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ └── p │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── momentumTransport │ │ │ ├── reactions │ │ │ ├── thermo.compressibleGas │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── counterFlowFlame2DLTS │ │ ├── 0 │ │ │ ├── CH4 │ │ │ ├── CO2 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ └── p │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── momentumTransport │ │ │ ├── reactions │ │ │ ├── thermo.compressibleGas │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── counterFlowFlame2DLTS_GRI_TDAC │ │ ├── 0 │ │ │ ├── CH4 │ │ │ ├── CO2 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ └── p │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── momentumTransport │ │ │ ├── reactionsGRI │ │ │ ├── thermo.compressibleGasGRI │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── counterFlowFlame2D_GRI │ │ ├── 0 │ │ │ ├── CH4 │ │ │ ├── CO2 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ └── p │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── momentumTransport │ │ │ ├── reactionsGRI │ │ │ ├── thermo.compressibleGasGRI │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── counterFlowFlame2D_GRI_TDAC │ │ ├── 0 │ │ ├── CH4 │ │ ├── CO2 │ │ ├── H2O │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ └── p │ │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── momentumTransport │ │ ├── reactionsGRI │ │ ├── thermo.compressibleGasGRI │ │ └── thermophysicalProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── compressible │ ├── rhoCentralFoam │ │ ├── LadenburgJet60psi │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── 0.orig │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── mapFieldsDict │ │ ├── biconic25-55Run35 │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── grid256.dat │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ ├── sampleCone │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── collapseDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sample │ │ ├── forwardStep │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── movingCone │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── pointMotionUx │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── cuttingPlane │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── obliqueShock │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── shockTube │ │ │ ├── 0 │ │ │ │ ├── T.orig │ │ │ │ ├── U.orig │ │ │ │ └── p.orig │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── sample │ │ │ │ └── setFieldsDict │ │ └── wedge15Ma5 │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── rhoPimpleFoam │ │ ├── LES │ │ │ └── pitzDaily │ │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── k │ │ │ │ ├── muTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── RAS │ │ │ ├── aerofoilNACA0012 │ │ │ │ ├── 0 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── omega │ │ │ │ │ └── p │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── README │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── extrudeMeshDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── residuals │ │ │ ├── angledDuct │ │ │ │ ├── 0 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── fvModels │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── angledDuctLTS │ │ │ │ ├── 0 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── fvModels │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── annularThermalMixer │ │ │ │ ├── 0 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── boundaryConditions │ │ │ │ │ ├── caseSettings │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── geometry │ │ │ │ │ │ ├── AMI.obj │ │ │ │ │ │ ├── innerInlet.obj │ │ │ │ │ │ ├── innerOutlet.obj │ │ │ │ │ │ ├── outerInlet.obj │ │ │ │ │ │ ├── outerOutlet.obj │ │ │ │ │ │ ├── rotorBlades.obj │ │ │ │ │ │ ├── shaft.obj │ │ │ │ │ │ ├── statorBlades.obj │ │ │ │ │ │ └── wall.obj │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createBafflesDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── snappyHexMeshDict │ │ │ │ │ └── surfaceFeaturesDict │ │ │ ├── cavity │ │ │ │ ├── 0 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── omega │ │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ └── thermophysicalTransport │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── mixerVessel2D │ │ │ │ ├── 0 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── MRFProperties │ │ │ │ │ ├── fvModels │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── nacaAirfoil │ │ │ │ ├── 0 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── Running_Notes │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── thermophysicalProperties │ │ │ │ ├── prostar │ │ │ │ │ ├── nacaAirfoil.bnd.gz │ │ │ │ │ ├── nacaAirfoil.cel.gz │ │ │ │ │ └── nacaAirfoil.vrt.gz │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── prism │ │ │ │ ├── 0 │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ ├── alphat │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ └── squareBendLiq │ │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── laminar │ │ │ ├── blockedChannel │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── T.solid │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── tracer │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── momentumTransport │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── thermophysicalProperties.solid │ │ │ │ ├── thermophysicalTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── generateAlphas │ │ │ ├── decompressionTank │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── decompressionTank │ │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── forwardStep │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── helmholtzResonance │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── blockMeshDict.modelledBlocks │ │ │ │ ├── blockMeshDict.modelledBoundary │ │ │ │ ├── blockMeshDict.resolvedBlocks │ │ │ │ ├── blockMeshDict.resolvedBoundary │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── shockTube │ │ │ ├── 0 │ │ │ ├── T.orig │ │ │ ├── U.orig │ │ │ └── p.orig │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── sample │ │ │ └── setFieldsDict │ ├── rhoPorousSimpleFoam │ │ ├── angledDuctExplicit │ │ │ ├── 0 │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── angledDuctImplicit │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ ├── porosityProperties │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvConstraints │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── rhoSimpleFoam │ │ ├── aerofoilNACA0012 │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── geometry │ │ │ │ └── README │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── extrudeMeshDict │ │ │ ├── forceCoeffsCompressible │ │ │ ├── fvConstraints │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── residuals │ │ ├── angledDuctExplicitFixedCoeff │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fvModels │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvConstraints │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── squareBend │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvConstraints │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── squareBendLiq │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── constant │ │ ├── momentumTransport │ │ └── thermophysicalProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvConstraints │ │ ├── fvSchemes │ │ └── fvSolution ├── discreteMethods │ ├── dsmcFoam │ │ ├── README │ │ ├── freeSpacePeriodic │ │ │ ├── 0 │ │ │ │ ├── boundaryT │ │ │ │ ├── boundaryU │ │ │ │ ├── dsmcRhoN │ │ │ │ ├── fD │ │ │ │ ├── iDof │ │ │ │ ├── internalE │ │ │ │ ├── linearKE │ │ │ │ ├── momentum │ │ │ │ ├── q │ │ │ │ ├── rhoM │ │ │ │ └── rhoN │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── dsmcProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── dsmcInitialiseDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── freeSpaceStream │ │ │ ├── 0 │ │ │ │ ├── boundaryT │ │ │ │ ├── boundaryU │ │ │ │ ├── dsmcRhoN │ │ │ │ ├── fD │ │ │ │ ├── iDof │ │ │ │ ├── internalE │ │ │ │ ├── linearKE │ │ │ │ ├── momentum │ │ │ │ ├── q │ │ │ │ ├── rhoM │ │ │ │ └── rhoN │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── dsmcProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── dsmcInitialiseDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── supersonicCorner │ │ │ ├── 0 │ │ │ │ ├── boundaryT │ │ │ │ ├── boundaryU │ │ │ │ ├── dsmcRhoN │ │ │ │ ├── fD │ │ │ │ ├── iDof │ │ │ │ ├── internalE │ │ │ │ ├── linearKE │ │ │ │ ├── momentum │ │ │ │ ├── q │ │ │ │ ├── rhoM │ │ │ │ └── rhoN │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── dsmcProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── dsmcInitialiseDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── wedge15Ma5 │ │ │ ├── 0 │ │ │ ├── boundaryT │ │ │ ├── boundaryU │ │ │ ├── dsmcRhoN │ │ │ ├── fD │ │ │ ├── iDof │ │ │ ├── internalE │ │ │ ├── linearKE │ │ │ ├── momentum │ │ │ ├── q │ │ │ ├── rhoM │ │ │ └── rhoN │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── dsmcProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── dsmcInitialiseDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── molecularDynamics │ │ ├── mdEquilibrationFoam │ │ ├── periodicCubeArgon │ │ │ ├── 0 │ │ │ │ └── U │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── moleculeProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── mdEquilibrationDict │ │ │ │ ├── mdInitialiseDict │ │ │ │ └── potentialDict │ │ └── periodicCubeWater │ │ │ ├── 0 │ │ │ └── U │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── moleculeProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mdEquilibrationDict │ │ │ ├── mdInitialiseDict │ │ │ └── potentialDict │ │ └── mdFoam │ │ └── nanoNozzle │ │ ├── 0 │ │ └── U │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── moleculeProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── mdEquilibrationDict │ │ ├── mdInitialiseDict │ │ └── potentialDict ├── electromagnetics │ ├── electrostaticFoam │ │ └── chargedWire │ │ │ ├── 0 │ │ │ ├── phi │ │ │ └── rho │ │ │ ├── constant │ │ │ └── physicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── mhdFoam │ │ └── hartmann │ │ ├── 0 │ │ ├── B │ │ ├── U │ │ ├── Ux │ │ ├── Uy │ │ ├── Uz │ │ ├── p │ │ └── pB │ │ ├── Allrun │ │ ├── constant │ │ └── transportProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sample ├── financial │ └── financialFoam │ │ └── europeanCall │ │ ├── 0 │ │ └── V │ │ ├── constant │ │ └── financialProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── heatTransfer │ ├── buoyantPimpleFoam │ │ ├── BernardCells │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── hotRoom │ │ │ ├── 0 │ │ │ │ ├── T.orig │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── hotRoomBoussinesq │ │ │ ├── 0 │ │ │ ├── T.orig │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── buoyantSimpleFoam │ │ ├── buoyantCavity │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ └── thermophysicalProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sample │ │ │ └── validation │ │ │ │ ├── createGraphs │ │ │ │ └── exptData │ │ │ │ ├── mt_z0_10_lo.dat │ │ │ │ ├── mt_z0_30_lo.dat │ │ │ │ ├── mt_z0_40_lo.dat │ │ │ │ ├── mt_z0_50_lo.dat │ │ │ │ ├── mt_z0_60_lo.dat │ │ │ │ ├── mt_z0_70_lo.dat │ │ │ │ ├── mt_z0_90_lo.dat │ │ │ │ ├── mv_z0_10_lo.dat │ │ │ │ ├── mv_z0_30_lo.dat │ │ │ │ ├── mv_z0_40_lo.dat │ │ │ │ ├── mv_z0_50_lo.dat │ │ │ │ ├── mv_z0_60_lo.dat │ │ │ │ ├── mv_z0_70_lo.dat │ │ │ │ └── mv_z0_90_lo.dat │ │ ├── circuitBoardCooling │ │ │ ├── 0.orig │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── baffle3DRegion │ │ │ │ │ ├── Q │ │ │ │ │ └── T │ │ │ │ ├── epsilon │ │ │ │ ├── include │ │ │ │ │ ├── 1DBaffle │ │ │ │ │ │ ├── 1DTemperatureMasterBafflePatches │ │ │ │ │ │ └── 1DbaffleSolidThermo │ │ │ │ │ ├── 3DBaffle │ │ │ │ │ │ ├── 3DTemperatureMasterBafflePatches │ │ │ │ │ │ ├── 3DbaffleSolidThermo │ │ │ │ │ │ └── extrudeModel │ │ │ │ │ ├── baffle3DSetup │ │ │ │ │ └── wallBafflePatches │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── geometry │ │ │ │ │ ├── baffle1D.stl │ │ │ │ │ └── baffle3D.stl │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── baffle3DRegion │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── comfortHotRoom │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ ├── externalCoupledCavity │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allmesh │ │ │ ├── Allrun │ │ │ ├── Allrun-parallel │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ └── thermophysicalProperties │ │ │ ├── externalSolver │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── hotRadiationRoom │ │ │ ├── 0 │ │ │ │ ├── G │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── hotRadiationRoomFvDOM │ │ │ ├── 0 │ │ │ │ ├── G │ │ │ │ ├── IDefault │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── hotRoomBoussinesq │ │ │ ├── 0 │ │ │ │ ├── T.orig │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── iglooWithFridges │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── geometry │ │ │ │ └── fridgeA.eMesh │ │ │ ├── momentumTransport │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ └── snappyHexMeshDict │ └── chtMultiRegionFoam │ │ ├── coolingCylinder2D │ │ ├── 0 │ │ │ ├── fluid │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ └── solid │ │ │ │ └── T │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fluid │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── thermophysicalTransport │ │ │ ├── regionProperties │ │ │ └── solid │ │ │ │ ├── fvModels │ │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fluid │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── solid │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── topoSetDict │ │ ├── coolingSphere │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── initialConditions │ │ │ └── materialProperties │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ └── templates │ │ │ ├── 0 │ │ │ ├── fluid │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ └── solid │ │ │ │ └── T │ │ │ ├── constant │ │ │ ├── fluid │ │ │ │ ├── g │ │ │ │ └── pRef │ │ │ └── solid │ │ │ │ └── fvModels │ │ │ ├── materials │ │ │ ├── air │ │ │ │ ├── momentumTransport │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── thermophysicalTransport │ │ │ ├── aluminium │ │ │ │ └── thermophysicalProperties │ │ │ ├── copper │ │ │ │ └── thermophysicalProperties │ │ │ └── water │ │ │ │ ├── momentumTransport │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── thermophysicalTransport │ │ │ └── system │ │ │ ├── fluid │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── solid │ │ │ ├── fvConstraints │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── heatExchanger │ │ ├── 0 │ │ │ ├── air │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ └── porous │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── Allrun-parallel │ │ ├── constant │ │ │ ├── air │ │ │ │ ├── MRFProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ └── thermophysicalProperties │ │ │ ├── porous │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── thermophysicalTransport │ │ │ └── regionProperties │ │ └── system │ │ │ ├── air │ │ │ ├── blockMeshDict │ │ │ ├── createBafflesDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── topoSetDict.1 │ │ │ └── topoSetDict.2 │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── porous │ │ │ ├── blockMeshDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── heatedDuct │ │ ├── 0 │ │ │ ├── fluid │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── heater │ │ │ │ └── T │ │ │ └── metal │ │ │ │ └── T │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fluid │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── thermophysicalProperties │ │ │ ├── geometry │ │ │ │ ├── fluidToMetal.stl │ │ │ │ ├── heatedDuct.stl │ │ │ │ └── metalToHeater.stl │ │ │ ├── heater │ │ │ │ ├── fvModels │ │ │ │ └── thermophysicalProperties │ │ │ ├── metal │ │ │ │ └── thermophysicalProperties │ │ │ └── regionProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fluid │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── heater │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── metal │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── snappyHexMeshDict │ │ ├── reverseBurner │ │ ├── 0 │ │ │ ├── gas │ │ │ │ ├── CH4 │ │ │ │ ├── G │ │ │ │ ├── N2 │ │ │ │ ├── O2 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── Ydefault │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ └── solid │ │ │ │ └── T │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── gas │ │ │ │ ├── chemistryProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── pRef │ │ │ │ ├── radiationProperties │ │ │ │ ├── reactions │ │ │ │ ├── thermo.compressibleGas │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── thermophysicalTransport │ │ │ ├── regionProperties │ │ │ └── solid │ │ │ │ ├── fvModels │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── gas │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ │ │ └── solid │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── shellAndTubeHeatExchanger │ │ ├── 0 │ │ ├── shell │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── solid │ │ │ └── T │ │ └── tube │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allmesh.layers │ │ ├── Allmesh.noLayers │ │ ├── Allrun │ │ ├── constant │ │ ├── geometry │ │ │ ├── shell.stl.gz │ │ │ ├── shell_to_solid.stl.gz │ │ │ ├── solid.stl.gz │ │ │ ├── tube.stl.gz │ │ │ └── tube_to_solid.stl.gz │ │ ├── regionProperties │ │ ├── shell │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ ├── thermophysicalProperties │ │ │ └── thermophysicalTransport │ │ ├── solid │ │ │ └── thermophysicalProperties │ │ └── tube │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ ├── thermophysicalProperties │ │ │ └── thermophysicalTransport │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── createBafflesDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ ├── shell │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── snappyHexMeshDict.orig │ │ ├── solid │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── tube │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── incompressible │ ├── SRFPimpleFoam │ │ └── rotor2D │ │ │ ├── 0 │ │ │ ├── Urel │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── SRFProperties │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── SRFSimpleFoam │ │ └── mixer │ │ │ ├── 0 │ │ │ ├── Urel │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ │ ├── constant │ │ │ ├── SRFProperties │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── adjointShapeOptimisationFoam │ │ └── pitzDaily │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Ua │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── pa │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── boundaryFoam │ │ ├── boundaryLaunderSharma │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nu.xy │ │ │ │ ├── nuTilda │ │ │ │ └── nut │ │ │ ├── constant │ │ │ │ ├── gammaDot.xy │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── boundaryNonNewtonian │ │ │ ├── 0 │ │ │ │ └── U │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── boundaryWallFunctions │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nu.xy │ │ │ │ ├── nuTilda │ │ │ │ └── nut │ │ │ ├── constant │ │ │ │ ├── gammaDot.xy │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── boundaryWallFunctionsProfile │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ ├── nut.k │ │ │ ├── nut.spalding │ │ │ └── omega │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ ├── transportProperties │ │ │ └── transportProperties.template │ │ │ ├── foamLog.db │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── icoFoam │ │ ├── cavity │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── cavity │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── cavityClipped │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── mapFieldsDict │ │ │ └── cavityGrade │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── mapFieldsDict │ │ └── elbow │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── transportProperties │ │ │ ├── elbow.msh │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── foamDataToFluentDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── nonNewtonianIcoFoam │ │ └── offsetCylinder │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── constant │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── pimpleFoam │ │ ├── LES │ │ │ └── channel395 │ │ │ │ ├── 0 │ │ │ │ ├── B.gz │ │ │ │ ├── U.gz │ │ │ │ ├── k.gz │ │ │ │ ├── nuTilda.gz │ │ │ │ ├── nut.gz │ │ │ │ └── p.gz │ │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── postChannelDict │ │ ├── RAS │ │ │ ├── TJunction │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── README.txt │ │ │ │ ├── constant │ │ │ │ │ ├── geometry │ │ │ │ │ │ ├── surface1.obj │ │ │ │ │ │ └── surface2.obj │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── topoSetDict │ │ │ ├── TJunctionFan │ │ │ │ ├── 0.orig │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── README.txt │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createBafflesDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── topoSetDict │ │ │ ├── elipsekkLOmega │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── kl │ │ │ │ │ ├── kt │ │ │ │ │ ├── nut │ │ │ │ │ ├── omega │ │ │ │ │ └── p │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createPatchDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── mirrorMeshDict.x │ │ │ │ │ ├── mirrorMeshDict.y │ │ │ │ │ └── topoSetDict │ │ │ ├── flowWithOpenBoundary │ │ │ │ ├── 0 │ │ │ │ │ ├── T.orig │ │ │ │ │ ├── U.orig │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── omega │ │ │ │ │ └── p.orig │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ ├── distortMesh │ │ │ │ │ ├── Make │ │ │ │ │ │ ├── files │ │ │ │ │ │ └── options │ │ │ │ │ └── distortMesh.C │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── extrudeMeshDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── impeller │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── geometry │ │ │ │ │ │ ├── surface0.stl.gz │ │ │ │ │ │ └── surface1.stl.gz │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── oscillatingInletACMI2D │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── Allrun-parallel │ │ │ │ ├── README │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createBafflesDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── topoSetDict │ │ │ ├── pitzDaily │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── pitzDailyLTS │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── propeller │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── README │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createBafflesDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── forces │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── snappyHexMeshDict │ │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ │ └── surfaces │ │ │ └── wingMotion │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── wingMotion2D_pimpleFoam │ │ │ │ ├── 0 │ │ │ │ │ └── include │ │ │ │ │ │ ├── fixedInlet │ │ │ │ │ │ ├── frontBackTopBottomPatches │ │ │ │ │ │ └── initialConditions │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ ├── pointDisplacement │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ │ ├── wingMotion2D_simpleFoam │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── include │ │ │ │ │ │ ├── fixedInlet │ │ │ │ │ │ ├── frontBackTopBottomPatches │ │ │ │ │ │ └── initialConditions │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── omega │ │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createPatchDict │ │ │ │ │ ├── extrudeMeshDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ │ └── wingMotion_snappyHexMesh │ │ │ │ ├── constant │ │ │ │ └── geometry │ │ │ │ │ └── wing_5degrees.obj │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── snappyHexMeshDict │ │ └── laminar │ │ │ ├── blockedChannel │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── tracer │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── generateAlphas │ │ │ ├── mixerVesselAMI2D │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ │ ├── movingCone │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── pointMotionUx │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── cuttingPlane │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── offsetCylinder │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── pitzDailyPulse │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── planarContraction │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── sigma │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── planarCouette │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── sigma │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── planarPoiseuille │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── sigma │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── fvModels │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── validation │ │ │ ├── WatersKing │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── WatersKing.C │ │ │ └── createFields.H │ │ │ └── createGraph │ ├── pisoFoam │ │ ├── LES │ │ │ ├── motorBike │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── lesFiles │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── momentumTransport │ │ │ │ └── motorBike │ │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── include │ │ │ │ │ │ ├── fixedInlet │ │ │ │ │ │ ├── frontBackUpperPatches │ │ │ │ │ │ └── initialConditions │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ └── p │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── README │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── cuttingPlane │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── decomposeParDict.hierarchical │ │ │ │ │ ├── decomposeParDict.ptscotch │ │ │ │ │ ├── forceCoeffs │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── snappyHexMeshDict │ │ │ │ │ └── streamlines │ │ │ ├── pitzDaily │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ ├── p │ │ │ │ │ └── s │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ └── pitzDailyMapped │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── RAS │ │ │ ├── cavity │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ ├── omega │ │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ └── cavityCoupledU │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── laminar │ │ │ └── porousBlockage │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── coordinateSystems │ │ │ ├── fvModels │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ ├── porousSimpleFoam │ │ ├── angledDuctExplicit │ │ │ ├── 0 │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── angledDuctImplicit │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ ├── porosityProperties │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── straightDuctImplicit │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allmesh │ │ │ ├── Allrun │ │ │ ├── README.txt │ │ │ ├── constant │ │ │ ├── geometry │ │ │ │ ├── boundaryAndFaceZones.stl │ │ │ │ ├── porosity.stl │ │ │ │ ├── porosity_inflated.stl │ │ │ │ └── straightDuct.stl │ │ │ ├── momentumTransport │ │ │ ├── porosityProperties │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── backgroundMeshDecomposition │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── cellShapeControlMesh │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── collapseDict │ │ │ ├── collapseDict.collapseFaces │ │ │ ├── collapseDict.indirectPatchFaces │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── foamyHexMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshDict.conformationSurfaces │ │ │ ├── meshDict.geometry │ │ │ ├── meshDict.shapeControlFunctions │ │ │ ├── meshQualityDict │ │ │ └── surfaceFeaturesDict │ ├── shallowWaterFoam │ │ └── squareBump │ │ │ ├── 0 │ │ │ ├── h.orig │ │ │ ├── hTotal │ │ │ └── hU.orig │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── gravitationalProperties │ │ │ └── h0.orig │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── simpleFoam │ │ ├── T3A │ │ ├── 0 │ │ │ ├── ReThetat │ │ │ ├── U │ │ │ ├── gammaInt │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── validation │ │ │ ├── createGraphs │ │ │ └── exptData │ │ │ └── T3A.dat │ │ ├── airFoil2D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── cells │ │ │ │ ├── faces │ │ │ │ ├── neighbour │ │ │ │ ├── owner │ │ │ │ └── points │ │ │ └── transportProperties │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── drivaerFastback │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── geometry │ │ │ │ ├── body.obj.gz │ │ │ │ ├── frontWheels.obj.gz │ │ │ │ └── rearWheels.obj.gz │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict.orig │ │ │ ├── decomposeParDict.orig │ │ │ ├── forceCoeffsIncompressible │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ └── snappyHexMeshDict.orig │ │ ├── mixerVessel2D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── motorBike │ │ ├── 0 │ │ │ ├── U.orig │ │ │ ├── include │ │ │ │ ├── fixedInlet │ │ │ │ ├── frontBackUpperPatches │ │ │ │ └── initialConditions │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── geometry │ │ │ │ └── README │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── cuttingPlane │ │ │ ├── decomposeParDict │ │ │ ├── forceCoeffs │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ ├── streamlines │ │ │ └── surfaceFeaturesDict │ │ ├── pipeCyclic │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ ├── pitzDaily │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── f │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── v2 │ │ ├── Allrun │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── pitzDailyExptInlet │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ │ ├── boundaryData │ │ │ │ └── inlet │ │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── epsilon │ │ │ │ │ └── k │ │ │ │ │ └── points │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── roomResidenceTime │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── probes1 │ │ │ └── probes2 │ │ └── validation │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── measurement_Pos1 │ │ │ ├── measurement_Pos2 │ │ │ ├── plotPos1Data.gplt │ │ │ └── plotPos2Data.gplt │ │ ├── rotorDisk │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fvModels │ │ │ ├── geometry │ │ │ │ ├── fixed.obj │ │ │ │ └── rotatingZone.obj │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ │ ├── turbineSiting │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── include │ │ │ │ ├── ABLConditions │ │ │ │ ├── fixedInlet │ │ │ │ ├── initialConditions │ │ │ │ └── sideAndTopPatches │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fvModels │ │ │ ├── geometry │ │ │ │ └── terrain.stl │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict.orig │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── snappyHexMeshDict │ │ │ └── topoSetDict │ │ └── windAroundBuildings │ │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── geometry │ │ │ └── buildings.obj.gz │ │ ├── momentumTransport │ │ └── transportProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ ├── snappyHexMeshDict │ │ └── surfaceFeaturesDict ├── lagrangian │ ├── denseParticleFoam │ │ ├── Goldschmidt │ │ │ ├── 0 │ │ │ │ ├── U.air │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── cloudPositions │ │ │ │ ├── cloudProperties │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── mapFieldsDict │ │ ├── GoldschmidtMPPIC │ │ │ ├── 0 │ │ │ │ ├── U.air │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── cloudPositions │ │ │ │ ├── cloudProperties │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── column │ │ │ ├── 0 │ │ │ │ ├── U.air │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── cloudPositions │ │ │ │ ├── cloudProperties │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── cyclone │ │ │ ├── 0 │ │ │ │ ├── U.air │ │ │ │ ├── k.air │ │ │ │ ├── nut.air │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── cloudProperties │ │ │ │ ├── g │ │ │ │ ├── geometry │ │ │ │ │ └── cyclone.stl.gz │ │ │ │ ├── momentumTransport.air │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── snappyHexMeshDict │ │ └── injectionChannel │ │ │ ├── 0 │ │ │ ├── U.air │ │ │ └── p │ │ │ ├── constant │ │ │ ├── cloudProperties │ │ │ ├── g │ │ │ ├── momentumTransport.air │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── particleFoam │ │ ├── hopper │ │ ├── Allclean │ │ ├── Allrun │ │ ├── hopperEmptying │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── mu │ │ │ │ └── rho │ │ │ ├── constant │ │ │ │ ├── cloudProperties │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── mapFieldsDict │ │ └── hopperInitialState │ │ │ ├── 0 │ │ │ └── U │ │ │ ├── constant │ │ │ ├── cloudPositions │ │ │ ├── cloudProperties │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── mixerVesselAMI2D │ │ ├── 0 │ │ └── U │ │ ├── Allrun │ │ ├── constant │ │ ├── cloudPositions │ │ ├── cloudProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── momentumTransport │ │ └── transportProperties │ │ └── system │ │ ├── controlDict │ │ ├── createBafflesDict │ │ ├── fvSchemes │ │ └── fvSolution ├── mesh │ ├── blockMesh │ │ ├── pipe │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── geometry │ │ │ │ │ ├── curve.obj │ │ │ │ │ └── curve2.vtk │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── sphere │ │ │ ├── Allrun │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── sphere7 │ │ │ ├── Allrun │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── sphere7ProjectedEdges │ │ │ ├── Allrun │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── foamyHexMesh │ │ ├── Allrun │ │ ├── blob │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Allrun-parallel │ │ │ ├── constant │ │ │ │ └── geometry │ │ │ │ │ └── blob.stl.gz │ │ │ └── system │ │ │ │ ├── backgroundMeshDecomposition │ │ │ │ ├── blockMeshDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ │ ├── collapseDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── foamyHexMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── meshQualityDict │ │ │ │ ├── snappyHexMeshDict │ │ │ │ └── topoSetDict │ │ ├── flange │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Allrun-parallel │ │ │ ├── constant │ │ │ │ └── geometry │ │ │ │ │ └── README │ │ │ └── system │ │ │ │ ├── backgroundMeshDecomposition │ │ │ │ ├── blockMeshDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ │ ├── collapseDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── faceSetDict │ │ │ │ ├── foamyHexMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── meshDict.geometry │ │ │ │ ├── meshQualityDict │ │ │ │ ├── snappyHexMeshDict │ │ │ │ ├── topoSetDict-background │ │ │ │ └── topoSetDict-slices │ │ ├── simpleShapes │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── geometry │ │ │ │ │ ├── cone.stl │ │ │ │ │ └── sphere.stl │ │ │ └── system │ │ │ │ ├── collapseDict │ │ │ │ ├── controlDict │ │ │ │ ├── foamyHexMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── meshQualityDict │ │ │ │ └── topoSetDict │ │ └── straightDuctImplicit │ ├── foamyQuadMesh │ │ ├── Allrun │ │ ├── jaggedBoundary │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── geometry │ │ │ │ │ └── jaggedBoundary.stl │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── extrude2DMeshDict │ │ │ │ ├── foamyQuadMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── surfaceFeaturesDict │ │ └── square │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── geometry │ │ │ │ └── unit_cube.stl │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── extrude2DMeshDict │ │ │ ├── foamyQuadMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── surfaceFeaturesDict │ ├── moveDynamicMesh │ │ └── SnakeRiverCanyon │ │ │ ├── 0 │ │ │ └── pointDisplacement │ │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── geometry │ │ │ │ ├── ACROSSCYN.JPG │ │ │ │ ├── AcrossCyn.XYZ │ │ │ │ └── AcrossRiver.stl.gz │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── refineMesh │ │ └── refineFieldDirs │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── calcRadiusField │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── calcRadiusField.C │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── refineMeshDict.range1 │ │ │ ├── refineMeshDict.range2 │ │ │ ├── refineMeshDict.range3 │ │ │ ├── refineMeshDict.tier1 │ │ │ ├── refineMeshDict.tier2 │ │ │ ├── refineMeshDict.tier3 │ │ │ ├── refineMeshDict.tier4 │ │ │ ├── refineMeshDict.tier5 │ │ │ ├── refineMeshDict.tier6 │ │ │ ├── topoSetDict.range1 │ │ │ ├── topoSetDict.range2 │ │ │ ├── topoSetDict.range3 │ │ │ ├── topoSetDict.tier1 │ │ │ ├── topoSetDict.tier2 │ │ │ ├── topoSetDict.tier3 │ │ │ ├── topoSetDict.tier4 │ │ │ ├── topoSetDict.tier5 │ │ │ └── topoSetDict.tier6 │ └── snappyHexMesh │ │ ├── Allrun │ │ ├── flange │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── geometry │ │ │ │ └── README │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ │ ├── iglooWithFridges │ │ ├── motorBike │ │ └── pipe │ │ ├── Allclean │ │ ├── Allrun │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ ├── snappyHexMeshDict │ │ └── surfaceFeaturesDict ├── multiphase │ ├── cavitatingFoam │ │ ├── LES │ │ │ ├── Allrun │ │ │ ├── throttle │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.vapour │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── p │ │ │ │ │ └── rho │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── thermodynamicProperties │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── refineMeshDict │ │ │ │ │ ├── topoSetDict.1 │ │ │ │ │ ├── topoSetDict.2 │ │ │ │ │ └── topoSetDict.3 │ │ │ └── throttle3D │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.vapour │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── rho │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── momentumTransport │ │ │ │ ├── thermodynamicProperties │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── mapFieldsDict │ │ │ │ ├── refineMeshDict │ │ │ │ ├── topoSetDict.1 │ │ │ │ ├── topoSetDict.2 │ │ │ │ └── topoSetDict.3 │ │ └── RAS │ │ │ └── throttle │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.vapour │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── rho │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── momentumTransport │ │ │ ├── thermodynamicProperties │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── refineMeshDict │ │ │ ├── topoSetDict.1 │ │ │ ├── topoSetDict.2 │ │ │ └── topoSetDict.3 │ ├── compressibleInterFoam │ │ └── laminar │ │ │ ├── climbingRod │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alpha.liquid.orig │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ └── sigma.liquid │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.liquid │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.liquid │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── extrudeMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── cylinder │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── T.air │ │ │ │ ├── T.liquid │ │ │ │ ├── U │ │ │ │ ├── alpha.liquid │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ └── wallFilmRegion │ │ │ │ │ ├── T │ │ │ │ │ ├── U │ │ │ │ │ └── delta │ │ │ ├── Allclean │ │ │ ├── Allmesh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── cloudProperties │ │ │ │ ├── combustionProperties │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── parcelInjectionProperties │ │ │ │ ├── speciesThermo │ │ │ │ ├── surfaceFilmProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ └── wallFilmRegion │ │ │ │ │ └── thermophysicalProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── extrudeToRegionMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── topoSetDict │ │ │ │ └── wallFilmRegion │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── depthCharge2D │ │ │ ├── 0 │ │ │ │ ├── T.orig │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── p.orig │ │ │ │ └── p_rgh.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── depthCharge3D │ │ │ ├── 0 │ │ │ │ ├── T.orig │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── p.orig │ │ │ │ └── p_rgh.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── plateFilm │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alpha.liquid.orig │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ └── plateRegion │ │ │ │ │ ├── T.orig │ │ │ │ │ ├── U.orig │ │ │ │ │ └── delta.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── plateRegion │ │ │ │ │ └── thermophysicalProperties │ │ │ │ ├── surfaceFilmProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.liquid │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── extrudeToRegionMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── plateRegion │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ │ └── sloshingTank2D │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── compressibleMultiphaseInterFoam │ │ └── laminar │ │ │ └── damBreak4phase │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.mercury.orig │ │ │ ├── alpha.oil.orig │ │ │ ├── alpha.water.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.mercury │ │ │ ├── thermophysicalProperties.oil │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── driftFluxFoam │ │ └── RAS │ │ │ ├── dahl │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.sludge │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── mixerVessel2D │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.sludge │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── MRFProperties │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── tank3D │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.sludge │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── cells.gz │ │ │ │ ├── faces.gz │ │ │ │ ├── neighbour.gz │ │ │ │ ├── owner.gz │ │ │ │ └── points.gz │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── interFoam │ │ ├── LES │ │ │ └── nozzleFlow2D │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.fuel │ │ │ │ ├── data │ │ │ │ │ ├── Ubulk │ │ │ │ │ └── ptrace │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── refineMeshDict │ │ │ │ ├── topoSetDict.1 │ │ │ │ └── topoSetDict.2 │ │ ├── RAS │ │ │ ├── DTCHull │ │ │ │ ├── 0 │ │ │ │ │ ├── U.orig │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── k.orig │ │ │ │ │ ├── nut.orig │ │ │ │ │ ├── omega.orig │ │ │ │ │ ├── p_rgh.orig │ │ │ │ │ └── pointDisplacement.orig │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── README │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── README │ │ │ │ │ ├── hRef │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── meshQualityDict │ │ │ │ │ ├── refineMeshDict.orig │ │ │ │ │ ├── setFieldsDict │ │ │ │ │ ├── snappyHexMeshDict │ │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ │ └── topoSetDict │ │ │ ├── DTCHullMoving │ │ │ │ ├── 0 │ │ │ │ │ ├── U.orig │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── k.orig │ │ │ │ │ ├── nut.orig │ │ │ │ │ ├── omega.orig │ │ │ │ │ ├── p_rgh.orig │ │ │ │ │ └── pointDisplacement.orig │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── README │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── dynamicMeshDict.sixDoF │ │ │ │ │ ├── g │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── README │ │ │ │ │ ├── hRef │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── meshQualityDict │ │ │ │ │ ├── refineMeshDict.orig │ │ │ │ │ ├── setFieldsDict │ │ │ │ │ ├── snappyHexMeshDict │ │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ │ └── topoSetDict │ │ │ ├── DTCHullWave │ │ │ │ ├── 0 │ │ │ │ │ ├── U.orig │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── k.orig │ │ │ │ │ ├── nut.orig │ │ │ │ │ ├── omega.orig │ │ │ │ │ ├── p_rgh.orig │ │ │ │ │ └── pointDisplacement.orig │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── g │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── README │ │ │ │ │ ├── hRef │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── waveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── meshQualityDict │ │ │ │ │ ├── refineMeshDict.orig │ │ │ │ │ ├── setFieldsDict │ │ │ │ │ ├── setWavesDict │ │ │ │ │ ├── snappyHexMeshDict │ │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ │ └── topoSetDict │ │ │ ├── angledDuct │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── fvModels │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── damBreak │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ └── damBreak │ │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ └── p_rgh │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── setFieldsDict │ │ │ ├── damBreakPorousBaffle │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nuTilda │ │ │ │ │ ├── nut │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createBafflesDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── setFieldsDict │ │ │ │ │ └── topoSetDict │ │ │ ├── floatingObject │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── p_rgh │ │ │ │ │ └── pointDisplacement │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── dynamicMeshDict.sixDoF │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── setFieldsDict │ │ │ │ │ └── topoSetDict │ │ │ ├── mixerVesselAMI │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.oil.orig │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── g │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── rotating.stl │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createBafflesDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── setFieldsDict │ │ │ │ │ ├── snappyHexMeshDict │ │ │ │ │ └── surfaceFeaturesDict │ │ │ ├── planingHullW3 │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── omega │ │ │ │ │ ├── p_rgh │ │ │ │ │ └── pointDisplacement │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh.1 │ │ │ │ ├── Allmesh.2 │ │ │ │ ├── Allrun │ │ │ │ ├── README │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── g │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── w3_orig.stl │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict.1 │ │ │ │ │ ├── blockMeshDict.2 │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── meshQualityDict │ │ │ │ │ ├── refineMeshDict │ │ │ │ │ ├── setFieldsDict │ │ │ │ │ ├── snappyHexMeshDict.1 │ │ │ │ │ ├── snappyHexMeshDict.2 │ │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ │ ├── surfaces │ │ │ │ │ ├── topoSetDict.1 │ │ │ │ │ └── topoSetDict.2 │ │ │ ├── propeller │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water │ │ │ │ │ ├── epsilon │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── g │ │ │ │ │ ├── geometry │ │ │ │ │ │ └── README │ │ │ │ │ ├── momentumTransport │ │ │ │ │ ├── phaseChangeProperties │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── createBafflesDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── snappyHexMeshDict │ │ │ │ │ └── surfaceFeaturesDict │ │ │ ├── waterChannel │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── k │ │ │ │ │ ├── nut │ │ │ │ │ ├── omega │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allmesh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport │ │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── extrudeMeshDict.1 │ │ │ │ │ ├── extrudeMeshDict.2 │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── setFieldsDict │ │ │ └── weirOverflow │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── epsilon │ │ │ │ ├── include │ │ │ │ │ └── initialConditions │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── laminar │ │ │ ├── capillaryRise │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── cavitatingBullet │ │ │ ├── 0 │ │ │ │ ├── Phi │ │ │ │ ├── U.orig │ │ │ │ ├── alpha.water │ │ │ │ └── p_rgh.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── geometry │ │ │ │ │ └── bullet.stl.gz │ │ │ │ ├── momentumTransport │ │ │ │ ├── phaseChangeProperties │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── snappyHexMeshDict │ │ │ ├── containerDischarge2D │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.liquid.orig │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── damBreak │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── damBreak │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── damBreakWithObstacle │ │ │ ├── 0 │ │ │ │ ├── U.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ ├── createObstacle.setSet │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ │ ├── mixerVessel2D │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── MRFProperties │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── sloshingCylinder │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── geometry │ │ │ │ │ └── sloshingCylinder.obj │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── meshQualityDict │ │ │ │ ├── setFieldsDict │ │ │ │ └── snappyHexMeshDict │ │ │ ├── sloshingTank2D │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── sloshingTank2D3DoF │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── sloshingTank3D │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── sloshingTank3D3DoF │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── sloshingTank3D6DoF │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── 6DoF.dat │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ ├── gen6DoF │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── gen6DoF.C │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── testTubeMixer │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ └── wave │ │ │ ├── 0 │ │ │ ├── U.orig │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── fvModels │ │ │ ├── fvModels.verticalDamping │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ ├── transportProperties │ │ │ └── waveProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── extrudeMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── refineMeshDictX │ │ │ ├── refineMeshDictY │ │ │ ├── setWavesDict │ │ │ ├── topoSetDict1 │ │ │ ├── topoSetDict2 │ │ │ ├── topoSetDict3 │ │ │ ├── topoSetDict4 │ │ │ ├── topoSetDict5 │ │ │ └── topoSetDict6 │ ├── interMixingFoam │ │ └── laminar │ │ │ └── damBreak │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.other.orig │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── multiphaseEulerFoam │ │ ├── LES │ │ │ └── bubbleColumn │ │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── alphat.air │ │ │ │ ├── alphat.water │ │ │ │ ├── epsilon.air │ │ │ │ ├── epsilon.water │ │ │ │ ├── k.air │ │ │ │ ├── k.water │ │ │ │ ├── nut.air │ │ │ │ ├── nut.water │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.water │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── RAS │ │ │ ├── Grossetete │ │ │ │ ├── 0 │ │ │ │ │ ├── T.gas │ │ │ │ │ ├── T.liquid │ │ │ │ │ ├── U.gas │ │ │ │ │ ├── U.liquid │ │ │ │ │ ├── alpha.gas │ │ │ │ │ ├── alpha.liquid │ │ │ │ │ ├── alphat.gas │ │ │ │ │ ├── alphat.liquid │ │ │ │ │ ├── epsilon.gas │ │ │ │ │ ├── epsilon.liquid │ │ │ │ │ ├── k.gas │ │ │ │ │ ├── k.liquid │ │ │ │ │ ├── nut.gas │ │ │ │ │ ├── nut.liquid │ │ │ │ │ ├── omega.liquid │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.gas │ │ │ │ │ ├── momentumTransport.liquid │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ │ └── thermophysicalProperties.liquid │ │ │ │ ├── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── extrudeMeshDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ │ └── validation │ │ │ │ │ ├── createGraphs │ │ │ │ │ └── exptData │ │ │ │ │ └── alpha.gas │ │ │ ├── LBend │ │ │ │ ├── 0 │ │ │ │ │ ├── T.gas │ │ │ │ │ ├── T.solids │ │ │ │ │ ├── Theta.solids │ │ │ │ │ ├── U.gas │ │ │ │ │ ├── U.solids │ │ │ │ │ ├── alpha.gas │ │ │ │ │ ├── alpha.solids │ │ │ │ │ ├── alphat.gas │ │ │ │ │ ├── alphat.solids │ │ │ │ │ ├── epsilon.gas │ │ │ │ │ ├── k.gas │ │ │ │ │ ├── nut.gas │ │ │ │ │ ├── nut.solids │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.gas │ │ │ │ │ ├── momentumTransport.solids │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ │ └── thermophysicalProperties.solids │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── bubbleColumn │ │ │ │ ├── 0 │ │ │ │ │ ├── T.air │ │ │ │ │ ├── T.water │ │ │ │ │ ├── U.air │ │ │ │ │ ├── U.water │ │ │ │ │ ├── alpha.air.orig │ │ │ │ │ ├── alpha.water.orig │ │ │ │ │ ├── alphat.air │ │ │ │ │ ├── alphat.water │ │ │ │ │ ├── epsilon.air │ │ │ │ │ ├── epsilon.water │ │ │ │ │ ├── epsilonm │ │ │ │ │ ├── k.air │ │ │ │ │ ├── k.water │ │ │ │ │ ├── km │ │ │ │ │ ├── nut.air │ │ │ │ │ ├── nut.water │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.air │ │ │ │ │ ├── momentumTransport.water │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ │ └── thermophysicalProperties.water │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── setFieldsDict │ │ │ ├── bubbleColumnEvaporatingReacting │ │ │ │ ├── 0 │ │ │ │ │ ├── AIR.gas │ │ │ │ │ ├── CO.gas │ │ │ │ │ ├── H2O.gas │ │ │ │ │ ├── T.gas │ │ │ │ │ ├── T.liquid │ │ │ │ │ ├── U.gas │ │ │ │ │ ├── U.liquid │ │ │ │ │ ├── Ydefault.gas │ │ │ │ │ ├── alpha.gas.orig │ │ │ │ │ ├── alpha.liquid.orig │ │ │ │ │ ├── alphat.gas │ │ │ │ │ ├── epsilon.gas │ │ │ │ │ ├── k.gas │ │ │ │ │ ├── nut.gas │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── chemistryProperties.gas │ │ │ │ │ ├── combustionProperties.gas │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.gas │ │ │ │ │ ├── momentumTransport.liquid │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── reactions.gas │ │ │ │ │ ├── thermo.gas │ │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ │ └── thermophysicalProperties.liquid │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── setFieldsDict │ │ │ ├── bubblePipe │ │ │ │ ├── 0 │ │ │ │ │ ├── T.air1 │ │ │ │ │ ├── T.air2 │ │ │ │ │ ├── T.water │ │ │ │ │ ├── U.air1 │ │ │ │ │ ├── U.air2 │ │ │ │ │ ├── U.water │ │ │ │ │ ├── alpha.air1 │ │ │ │ │ ├── alpha.air2 │ │ │ │ │ ├── alpha.water │ │ │ │ │ ├── alphat.water │ │ │ │ │ ├── f.air1 │ │ │ │ │ ├── f.air2 │ │ │ │ │ ├── k.water │ │ │ │ │ ├── nut.water │ │ │ │ │ ├── omega.water │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── fvModels │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.air1 │ │ │ │ │ ├── momentumTransport.air2 │ │ │ │ │ ├── momentumTransport.water │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── thermophysicalProperties.air1 │ │ │ │ │ ├── thermophysicalProperties.air2 │ │ │ │ │ └── thermophysicalProperties.water │ │ │ │ ├── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── topoSetDict │ │ │ │ └── validation │ │ │ │ │ └── createGraphs │ │ │ ├── fluidisedBed │ │ │ │ ├── 0 │ │ │ │ │ ├── T.air │ │ │ │ │ ├── T.particles │ │ │ │ │ ├── Theta.particles │ │ │ │ │ ├── U.air │ │ │ │ │ ├── U.particles │ │ │ │ │ ├── alpha.air.orig │ │ │ │ │ ├── alpha.particles.orig │ │ │ │ │ ├── alphat.air │ │ │ │ │ ├── alphat.particles │ │ │ │ │ ├── epsilon.air │ │ │ │ │ ├── k.air │ │ │ │ │ ├── nut.air │ │ │ │ │ ├── nut.particles │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.air │ │ │ │ │ ├── momentumTransport.particles │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ │ └── thermophysicalProperties.particles │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── setFieldsDict │ │ │ ├── wallBoiling │ │ │ │ ├── 0 │ │ │ │ │ ├── T.gas │ │ │ │ │ ├── T.liquid │ │ │ │ │ ├── U.gas │ │ │ │ │ ├── U.liquid │ │ │ │ │ ├── alpha.gas │ │ │ │ │ ├── alpha.liquid │ │ │ │ │ ├── alphat.gas │ │ │ │ │ ├── alphat.liquid │ │ │ │ │ ├── epsilon.gas │ │ │ │ │ ├── epsilon.liquid │ │ │ │ │ ├── k.gas │ │ │ │ │ ├── k.liquid │ │ │ │ │ ├── nut.gas │ │ │ │ │ ├── nut.liquid │ │ │ │ │ ├── omega.gas │ │ │ │ │ ├── omega.liquid │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.gas │ │ │ │ │ ├── momentumTransport.liquid │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ │ ├── thermophysicalTransport.gas │ │ │ │ │ └── thermophysicalTransport.liquid │ │ │ │ ├── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict.orig │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── extrudeMeshDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ │ └── validation │ │ │ │ │ ├── createGraphs │ │ │ │ │ └── exptData │ │ │ │ │ ├── T_deb1.txt │ │ │ │ │ ├── d_deb1.txt │ │ │ │ │ └── vof_deb1.txt │ │ │ ├── wallBoilingIATE │ │ │ │ ├── 0 │ │ │ │ │ ├── T.gas │ │ │ │ │ ├── T.liquid │ │ │ │ │ ├── U.gas │ │ │ │ │ ├── U.liquid │ │ │ │ │ ├── alpha.gas │ │ │ │ │ ├── alpha.liquid │ │ │ │ │ ├── alphat.gas │ │ │ │ │ ├── alphat.liquid │ │ │ │ │ ├── epsilon.gas │ │ │ │ │ ├── epsilon.liquid │ │ │ │ │ ├── k.gas │ │ │ │ │ ├── k.liquid │ │ │ │ │ ├── kappai.gas │ │ │ │ │ ├── nut.gas │ │ │ │ │ ├── nut.liquid │ │ │ │ │ ├── omega.liquid │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.gas │ │ │ │ │ ├── momentumTransport.liquid │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ │ ├── thermophysicalTransport.gas │ │ │ │ │ └── thermophysicalTransport.liquid │ │ │ │ ├── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict.orig │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── extrudeMeshDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ │ └── validation │ │ │ │ │ ├── createGraphs │ │ │ │ │ └── exptData │ │ │ │ │ ├── T_deb1.txt │ │ │ │ │ ├── d_deb1.txt │ │ │ │ │ └── vof_deb1.txt │ │ │ ├── wallBoilingPolydisperse │ │ │ │ ├── 0 │ │ │ │ │ ├── T.gas │ │ │ │ │ ├── T.liquid │ │ │ │ │ ├── U.gas │ │ │ │ │ ├── U.liquid │ │ │ │ │ ├── alpha.gas │ │ │ │ │ ├── alpha.liquid │ │ │ │ │ ├── alphat.gas │ │ │ │ │ ├── alphat.liquid │ │ │ │ │ ├── epsilon.gas │ │ │ │ │ ├── epsilon.liquid │ │ │ │ │ ├── f.gas │ │ │ │ │ ├── k.gas │ │ │ │ │ ├── k.liquid │ │ │ │ │ ├── nut.gas │ │ │ │ │ ├── nut.liquid │ │ │ │ │ ├── omega.gas │ │ │ │ │ ├── omega.liquid │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── g │ │ │ │ │ ├── momentumTransport.gas │ │ │ │ │ ├── momentumTransport.liquid │ │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ │ ├── thermophysicalTransport.gas │ │ │ │ │ └── thermophysicalTransport.liquid │ │ │ │ ├── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict.orig │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── extrudeMeshDict │ │ │ │ │ ├── fvConstraints │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── topoSetDict │ │ │ │ └── validation │ │ │ │ │ ├── createGraphs │ │ │ │ │ └── exptData │ │ │ │ │ ├── T_deb1.txt │ │ │ │ │ ├── d_deb1.txt │ │ │ │ │ └── vof_deb1.txt │ │ │ └── wallBoilingPolydisperseTwoGroups │ │ │ │ ├── 0 │ │ │ │ ├── T.gas │ │ │ │ ├── T.gas2 │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.gas2 │ │ │ │ ├── U.liquid │ │ │ │ ├── alpha.gas │ │ │ │ ├── alpha.gas2 │ │ │ │ ├── alpha.liquid │ │ │ │ ├── alphat.gas │ │ │ │ ├── alphat.gas2 │ │ │ │ ├── alphat.liquid │ │ │ │ ├── epsilon.gas │ │ │ │ ├── epsilon.gas2 │ │ │ │ ├── epsilon.liquid │ │ │ │ ├── f.gas │ │ │ │ ├── f.gas2 │ │ │ │ ├── k.gas │ │ │ │ ├── k.gas2 │ │ │ │ ├── k.liquid │ │ │ │ ├── nut.gas │ │ │ │ ├── nut.gas2 │ │ │ │ ├── nut.liquid │ │ │ │ ├── omega.gas │ │ │ │ ├── omega.gas2 │ │ │ │ ├── omega.liquid │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.gas │ │ │ │ ├── momentumTransport.gas2 │ │ │ │ ├── momentumTransport.liquid │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ ├── thermophysicalProperties.gas2 │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ ├── thermophysicalTransport.gas │ │ │ │ ├── thermophysicalTransport.gas2 │ │ │ │ └── thermophysicalTransport.liquid │ │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict.orig │ │ │ │ ├── decomposeParDict │ │ │ │ ├── extrudeMeshDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ │ │ └── validation │ │ │ │ ├── createGraphs │ │ │ │ └── exptData │ │ │ │ ├── T_deb1.txt │ │ │ │ ├── d_deb1.txt │ │ │ │ └── vof_deb1.txt │ │ └── laminar │ │ │ ├── bed │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.solid │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.solid.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.solid │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── bubbleColumn │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── bubbleColumnEvaporating │ │ │ ├── 0 │ │ │ │ ├── CO.gas │ │ │ │ ├── H2O.gas │ │ │ │ ├── H2O.liquid │ │ │ │ ├── T.gas │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.liquid │ │ │ │ ├── Ydefault │ │ │ │ ├── air.gas │ │ │ │ ├── air.liquid │ │ │ │ ├── alpha.gas.orig │ │ │ │ ├── alpha.liquid.orig │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.gas │ │ │ │ ├── momentumTransport.liquid │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ └── thermophysicalProperties.liquid │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── continuityFunctions │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── bubbleColumnEvaporatingDissolving │ │ │ ├── 0 │ │ │ │ ├── T.gas │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.liquid │ │ │ │ ├── air.gas │ │ │ │ ├── air.liquid │ │ │ │ ├── alpha.gas.orig │ │ │ │ ├── alpha.liquid.orig │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ ├── water.gas │ │ │ │ └── water.liquid │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.gas │ │ │ │ ├── momentumTransport.liquid │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ └── thermophysicalProperties.liquid │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── bubbleColumnIATE │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── kappai.air │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── damBreak4phase │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.mercury │ │ │ │ ├── T.oil │ │ │ │ ├── T.water │ │ │ │ ├── U │ │ │ │ ├── U.air │ │ │ │ ├── U.mercury │ │ │ │ ├── U.oil │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.mercury.orig │ │ │ │ ├── alpha.oil.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── AllrunFine │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.mercury │ │ │ │ ├── momentumTransport.oil │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.mercury │ │ │ │ ├── thermophysicalProperties.oil │ │ │ │ ├── thermophysicalProperties.water │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fineBlockMeshDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── fluidisedBed │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.particles │ │ │ │ ├── Theta.particles │ │ │ │ ├── U.air │ │ │ │ ├── U.particles │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.particles.orig │ │ │ │ ├── alphat.particles │ │ │ │ ├── epsilon.air │ │ │ │ ├── k.air │ │ │ │ ├── nut.air │ │ │ │ ├── nut.particles │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.particles │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.particles │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── injection │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── mixerVessel2D │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.mercury │ │ │ │ ├── T.oil │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.mercury │ │ │ │ ├── U.oil │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air │ │ │ │ ├── alpha.mercury │ │ │ │ ├── alpha.oil │ │ │ │ ├── alpha.water │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── MRFProperties │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.mercury │ │ │ │ ├── momentumTransport.oil │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.mercury │ │ │ │ ├── thermophysicalProperties.oil │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── mixerVesselAMI2D │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.mercury │ │ │ │ ├── T.oil │ │ │ │ ├── T.water │ │ │ │ ├── U.air │ │ │ │ ├── U.mercury │ │ │ │ ├── U.oil │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air │ │ │ │ ├── alpha.map │ │ │ │ ├── alpha.mercury │ │ │ │ ├── alpha.oil │ │ │ │ ├── alpha.water │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.air │ │ │ │ ├── momentumTransport.mercury │ │ │ │ ├── momentumTransport.oil │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── phasePropertiesAll │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.mercury │ │ │ │ ├── thermophysicalProperties.oil │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── steamInjection │ │ │ ├── 0 │ │ │ │ ├── T.steam │ │ │ │ ├── T.water │ │ │ │ ├── U.steam │ │ │ │ ├── U.water │ │ │ │ ├── alpha.steam │ │ │ │ ├── alpha.water │ │ │ │ ├── nut.water │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ ├── water.steam │ │ │ │ └── water.water │ │ │ ├── constant │ │ │ │ ├── fvModels │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.steam │ │ │ │ ├── momentumTransport.water │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.steam │ │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── titaniaSynthesis │ │ │ ├── 0 │ │ │ │ ├── Ar.vapor.orig │ │ │ │ ├── Cl2.vapor.orig │ │ │ │ ├── N2.vapor.orig │ │ │ │ ├── O2.vapor.orig │ │ │ │ ├── T.particles │ │ │ │ ├── T.vapor │ │ │ │ ├── TiCl4.vapor.orig │ │ │ │ ├── TiO2.particles.orig │ │ │ │ ├── TiO2.vapor.orig │ │ │ │ ├── U.particles │ │ │ │ ├── U.vapor │ │ │ │ ├── alpha.particles.orig │ │ │ │ ├── alpha.vapor.orig │ │ │ │ ├── f.particles │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── chemistryProperties.vapor │ │ │ │ ├── combustionProperties.vapor │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.particles │ │ │ │ ├── momentumTransport.vapor │ │ │ │ ├── phaseProperties │ │ │ │ ├── reactions.vapor │ │ │ │ ├── thermo.vapor │ │ │ │ ├── thermophysicalProperties.particles │ │ │ │ └── thermophysicalProperties.vapor │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ │ └── validation │ │ │ │ ├── createGraphs │ │ │ │ └── exptData │ │ │ │ └── wallTemperature │ │ │ ├── titaniaSynthesisSurface │ │ │ ├── 0 │ │ │ │ ├── Ar.vapor.orig │ │ │ │ ├── O2.vapor.orig │ │ │ │ ├── T.particles │ │ │ │ ├── T.vapor │ │ │ │ ├── TiCl4.vapor.orig │ │ │ │ ├── TiO2.particles.orig │ │ │ │ ├── U.particles │ │ │ │ ├── U.vapor │ │ │ │ ├── Ydefault.particles.orig │ │ │ │ ├── Ydefault.vapor.orig │ │ │ │ ├── alpha.particles.orig │ │ │ │ ├── alpha.vapor.orig │ │ │ │ ├── f.particles │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── chemistryProperties.vapor │ │ │ │ ├── combustionProperties.vapor │ │ │ │ ├── g │ │ │ │ ├── momentumTransport.particles │ │ │ │ ├── momentumTransport.vapor │ │ │ │ ├── phaseProperties │ │ │ │ ├── reactions.vapor │ │ │ │ ├── thermo.vapor │ │ │ │ ├── thermophysicalProperties.particles │ │ │ │ └── thermophysicalProperties.vapor │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvConstraints │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ │ └── validation │ │ │ │ ├── createGraphs │ │ │ │ └── exptData │ │ │ │ └── wallTemperature │ │ │ └── trickleBed │ │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.solid │ │ │ ├── T.water │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.solid.orig │ │ │ ├── alpha.water.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── momentumTransport.air │ │ │ ├── momentumTransport.water │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.solid │ │ │ └── thermophysicalProperties.water │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvConstraints │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── multiphaseInterFoam │ │ ├── RAS │ │ │ └── damBreak4phase │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.mercury.orig │ │ │ │ ├── alpha.oil.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── motionProperties │ │ │ │ └── transportProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── laminar │ │ │ ├── damBreak4phase │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.mercury.orig │ │ │ │ ├── alpha.oil.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── motionProperties │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ ├── damBreak4phaseFine │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.mercury.orig │ │ │ │ ├── alpha.oil.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ ├── motionProperties │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ └── mixerVessel2D │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.mercury.orig │ │ │ ├── alpha.oil.orig │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── potentialFreeSurfaceFoam │ │ ├── movingOscillatingBox │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── p_gh │ │ │ │ └── pointDisplacement │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── momentumTransport │ │ │ │ └── transportProperties │ │ │ ├── extractHeightData │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── topoSetDict │ │ │ │ └── topoSetDict-selectBottom │ │ └── oscillatingBox │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── p_gh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── momentumTransport │ │ │ └── transportProperties │ │ │ ├── extractHeightData │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ └── twoLiquidMixingFoam │ │ └── lockExchange │ │ ├── 0 │ │ ├── U │ │ ├── alpha.sludge.orig │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── momentumTransport │ │ └── transportProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── resources │ ├── blockMesh │ │ ├── angledDuct │ │ ├── mixerVessel2D │ │ ├── pitzDaily │ │ ├── sloshingTank2D │ │ ├── sloshingTank3D │ │ └── titaniaSynthesis │ ├── geometry │ │ ├── DTC-scaled.stl.gz │ │ ├── NACA0012.obj.gz │ │ ├── flange.stl.gz │ │ ├── mixerVessel-baffles.stl.gz │ │ ├── mixerVessel-oilInlet.stl.gz │ │ ├── mixerVessel-outlet.stl.gz │ │ ├── mixerVessel-shaft.stl.gz │ │ ├── mixerVessel-shaftRotating.stl.gz │ │ ├── mixerVessel-sparger.stl.gz │ │ ├── mixerVessel-stirrer.stl.gz │ │ ├── mixerVessel-vessel.stl.gz │ │ ├── motorBike.obj.gz │ │ ├── pipe.obj.gz │ │ ├── pipeWall.obj.gz │ │ ├── propeller-innerCylinder.obj.gz │ │ ├── propeller-middleCylinder.obj.gz │ │ ├── propeller-outerCylinder.obj.gz │ │ └── propeller.obj.gz │ └── thermoData │ │ ├── wallBoiling-liquid.gz │ │ ├── wallBoiling-saturation.csv │ │ └── wallBoiling-vapour.gz └── stressAnalysis │ ├── solidDisplacementFoam │ └── plateHole │ │ ├── 0 │ │ ├── D │ │ └── T │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── thermophysicalProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── graphUniform │ └── solidEquilibriumDisplacementFoam │ └── beamEndLoad │ ├── 0 │ ├── D │ └── T │ ├── constant │ └── thermophysicalProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution └── wmake ├── makefiles ├── apps ├── files └── general ├── rules ├── General │ ├── CGAL │ ├── X │ ├── bison │ ├── btyacc │ ├── btyacc++ │ ├── byacc │ ├── flex │ ├── flex++ │ ├── general │ ├── moc │ ├── mplibDummy │ ├── mplibHPMPI64 │ ├── mplibINTELMPI64 │ ├── mplibMPI │ ├── mplibMPICH │ ├── mplibMPICH-GM │ ├── mplibMV2MPI │ ├── mplibOPENMPI │ ├── mplibQSMPI │ ├── mplibSGIMPI │ ├── mplibSYSTEMMPI │ ├── mplibSYSTEMOPENMPI │ ├── mplibType │ ├── standard │ ├── transform │ ├── version │ └── yacc ├── linux64Clang │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linux64Gcc │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linux64GccKNL │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linux64Icc │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linux64IccKNL │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linuxARM7Gcc │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linuxArm64Gcc │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linuxClang │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linuxGcc │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linuxIcc │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linuxPPC64Gcc │ ├── X │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── linuxPPC64leGcc │ ├── X │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── solaris64Gcc │ ├── X │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general └── solarisGcc │ ├── X │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ └── general ├── scripts ├── AllwmakeParseArguments ├── makeFiles ├── makeOptions ├── makeTargetDir └── wmakeFunctions ├── src ├── Makefile ├── dirToString.c └── wmkdep.l ├── wclean ├── wcleanLnIncludeAll ├── wcleanPlatform ├── wdep ├── wmake ├── wmakeCheckPwd ├── wmakeCollect ├── wmakeFilesAndOptions ├── wmakeLnInclude ├── wmakeLnIncludeAll ├── wmakePrintBuild ├── wmakeScheduler ├── wmakeSchedulerUptime ├── wrmdep └── wrmo /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/.gitignore -------------------------------------------------------------------------------- /Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/Allwmake -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/COPYING -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/README.org -------------------------------------------------------------------------------- /applications/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/Allwmake -------------------------------------------------------------------------------- /applications/solvers/combustion/PDRFoam/createFieldRefs.H: -------------------------------------------------------------------------------- 1 | const volScalarField& psi = thermo.psi(); 2 | -------------------------------------------------------------------------------- /applications/solvers/combustion/XiFoam/createFieldRefs.H: -------------------------------------------------------------------------------- 1 | const volScalarField& psi = thermo.psi(); 2 | -------------------------------------------------------------------------------- /applications/solvers/compressible/rhoPimpleFoam/createFieldRefs.H: -------------------------------------------------------------------------------- 1 | const volScalarField& psi = thermo.psi(); 2 | -------------------------------------------------------------------------------- /applications/solvers/compressible/rhoSimpleFoam/createFieldRefs.H: -------------------------------------------------------------------------------- 1 | const volScalarField& psi = thermo.psi(); 2 | -------------------------------------------------------------------------------- /applications/solvers/heatTransfer/buoyantPimpleFoam/createFieldRefs.H: -------------------------------------------------------------------------------- 1 | const volScalarField& psi = thermo.psi(); 2 | -------------------------------------------------------------------------------- /applications/solvers/heatTransfer/buoyantSimpleFoam/createFieldRefs.H: -------------------------------------------------------------------------------- 1 | const volScalarField& psi = thermo.psi(); 2 | -------------------------------------------------------------------------------- /applications/test/BinSum/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/BinSum/Make/files -------------------------------------------------------------------------------- /applications/test/BinSum/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Circulator/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/CompactListList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/DLList/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/DLList/Make/files -------------------------------------------------------------------------------- /applications/test/DLList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Dictionary/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Distribution/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/DynamicField/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/DynamicList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/FixedList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Function1/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Function1/sine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/Function1/sine -------------------------------------------------------------------------------- /applications/test/Function1/square: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/Function1/square -------------------------------------------------------------------------------- /applications/test/Function1/table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/Function1/table -------------------------------------------------------------------------------- /applications/test/HashPtrTable/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/HashSet/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/HashSet/Make/files -------------------------------------------------------------------------------- /applications/test/HashSet/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/HashTable/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/HashTable2/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/HashTable3/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Hashing/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/Hashing/Make/files -------------------------------------------------------------------------------- /applications/test/Hashing/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/IOField/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/IOField/Make/files -------------------------------------------------------------------------------- /applications/test/IOField/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/ISLList/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/ISLList/Make/files -------------------------------------------------------------------------------- /applications/test/ISLList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/IStringStream/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/IndirectList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/List/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/List/Make/files -------------------------------------------------------------------------------- /applications/test/List/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/List/Test-List.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/List/Test-List.C -------------------------------------------------------------------------------- /applications/test/ListHashTable/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/ListOps/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/ListOps/Make/files -------------------------------------------------------------------------------- /applications/test/ListOps/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Map/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/Map/Make/files -------------------------------------------------------------------------------- /applications/test/Map/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Map/Test-Map.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/Map/Test-Map.C -------------------------------------------------------------------------------- /applications/test/Matrix/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/Matrix/Make/files -------------------------------------------------------------------------------- /applications/test/Matrix/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/NamedEnum/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/ODE/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/ODE/Make/files -------------------------------------------------------------------------------- /applications/test/ODE/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/ODE/Make/options -------------------------------------------------------------------------------- /applications/test/ODE/Test-ODE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/ODE/Test-ODE.C -------------------------------------------------------------------------------- /applications/test/OStringStream/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/POSIX/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/POSIX/Make/files -------------------------------------------------------------------------------- /applications/test/POSIX/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/POSIX/Test-POSIX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/POSIX/Test-POSIX.C -------------------------------------------------------------------------------- /applications/test/PackedList1/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/PackedList3/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/PackedList4/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/PtrList/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/PtrList/Make/files -------------------------------------------------------------------------------- /applications/test/PtrList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/PtrListDictionary/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/SLList/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/SLList/Make/files -------------------------------------------------------------------------------- /applications/test/SLList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/Tuple2/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/Tuple2/Make/files -------------------------------------------------------------------------------- /applications/test/Tuple2/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/UDictionary/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/UIndirectList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/UniformField/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/alloc/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/alloc/Make/files -------------------------------------------------------------------------------- /applications/test/alloc/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/alloc/Test-alloc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/alloc/Test-alloc.C -------------------------------------------------------------------------------- /applications/test/alloc/Test-new.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/alloc/Test-new.C -------------------------------------------------------------------------------- /applications/test/alloc/Test.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/alloc/Test.C -------------------------------------------------------------------------------- /applications/test/callback/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/codeStream/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = 2 | -------------------------------------------------------------------------------- /applications/test/cyclic/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/cyclic/Make/files -------------------------------------------------------------------------------- /applications/test/decomposedBlockData/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/delete/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/delete/Make/files -------------------------------------------------------------------------------- /applications/test/delete/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/dictionary/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = 2 | -------------------------------------------------------------------------------- /applications/test/dictionary/value: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/dictionary/value -------------------------------------------------------------------------------- /applications/test/dimensionedType/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/error/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/error/Make/files -------------------------------------------------------------------------------- /applications/test/error/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/error/Test-error.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/error/Test-error.C -------------------------------------------------------------------------------- /applications/test/fileName/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/fileNameClean/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/findTimes/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/foamVersion/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/fvc/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/fvc/Make/files -------------------------------------------------------------------------------- /applications/test/fvc/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/fvc/Make/options -------------------------------------------------------------------------------- /applications/test/fvc/Test-fvc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/fvc/Test-fvc.C -------------------------------------------------------------------------------- /applications/test/globalIndex/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/graph/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graph/Make/files -------------------------------------------------------------------------------- /applications/test/graph/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graph/Make/options -------------------------------------------------------------------------------- /applications/test/graph/Test-graph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graph/Test-graph.C -------------------------------------------------------------------------------- /applications/test/graph/graphTest2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graph/graphTest2.C -------------------------------------------------------------------------------- /applications/test/graphXi/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graphXi/Make/files -------------------------------------------------------------------------------- /applications/test/graphXi/r.agr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graphXi/r.agr -------------------------------------------------------------------------------- /applications/test/graphXi/r.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graphXi/r.dat -------------------------------------------------------------------------------- /applications/test/graphXi/r.gplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graphXi/r.gplt -------------------------------------------------------------------------------- /applications/test/graphXi/r.ps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/graphXi/r.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/graphXi/r.xy -------------------------------------------------------------------------------- /applications/test/hexRef8/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/hexRef8/Make/files -------------------------------------------------------------------------------- /applications/test/hexRef8/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/hexRef8/README.txt -------------------------------------------------------------------------------- /applications/test/io/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/io/Make/files -------------------------------------------------------------------------------- /applications/test/io/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/io/Test-io.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/io/Test-io.C -------------------------------------------------------------------------------- /applications/test/labelRanges/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/liquid/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/liquid/Make/files -------------------------------------------------------------------------------- /applications/test/memInfo/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/memInfo/Make/files -------------------------------------------------------------------------------- /applications/test/memInfo/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/mesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/mesh/Make/files -------------------------------------------------------------------------------- /applications/test/mesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/mesh/Make/options -------------------------------------------------------------------------------- /applications/test/mesh/Test-mesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/mesh/Test-mesh.C -------------------------------------------------------------------------------- /applications/test/mkdir/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/mkdir/Make/files -------------------------------------------------------------------------------- /applications/test/mkdir/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/mkdir/Test-mkdir.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/mkdir/Test-mkdir.C -------------------------------------------------------------------------------- /applications/test/mvBak/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/mvBak/Make/files -------------------------------------------------------------------------------- /applications/test/mvBak/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/mvBak/Test-mvBak.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/mvBak/Test-mvBak.C -------------------------------------------------------------------------------- /applications/test/nullObject/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/pTraits/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/pTraits/Make/files -------------------------------------------------------------------------------- /applications/test/pTraits/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/parallel-communicators/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/parallel-nonBlocking/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/parallel/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/patchRegion/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/patchRegion/README -------------------------------------------------------------------------------- /applications/test/prefixOSstream/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/primitivePatch/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/quaternion/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/regex/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/regex/Make/files -------------------------------------------------------------------------------- /applications/test/regex/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/regex/Test-regex.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/regex/Test-regex.C -------------------------------------------------------------------------------- /applications/test/regex/testRegexps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/regex/testRegexps -------------------------------------------------------------------------------- /applications/test/router/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/router/Make/files -------------------------------------------------------------------------------- /applications/test/router/router.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/router/router.C -------------------------------------------------------------------------------- /applications/test/router/router.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/router/router.H -------------------------------------------------------------------------------- /applications/test/router/routerDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/router/routerDict -------------------------------------------------------------------------------- /applications/test/sha1/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/sha1/Make/files -------------------------------------------------------------------------------- /applications/test/sha1/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/sha1/Test-SHA1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/sha1/Test-SHA1.C -------------------------------------------------------------------------------- /applications/test/simpleMatrix/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/sizeof/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/sizeof/Make/files -------------------------------------------------------------------------------- /applications/test/sizeof/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/sort/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/sort/Make/files -------------------------------------------------------------------------------- /applications/test/sort/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/speed/scalarSpeed/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/speed/vectorSpeed/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/spline/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/spline/Make/files -------------------------------------------------------------------------------- /applications/test/string/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/string/Make/files -------------------------------------------------------------------------------- /applications/test/string/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/stringList/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/symmTensorField/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/syncTools/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = 2 | -------------------------------------------------------------------------------- /applications/test/tensor/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/tensor/Make/files -------------------------------------------------------------------------------- /applications/test/tensor/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/tensor2D/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/tmpField/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/triTet/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/triTet/Make/files -------------------------------------------------------------------------------- /applications/test/triTet/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/vector/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/vector/Make/files -------------------------------------------------------------------------------- /applications/test/vector/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/wordRe/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/wordRe/Make/files -------------------------------------------------------------------------------- /applications/test/wordRe/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/test/wordRe/testRegexps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/applications/test/wordRe/testRegexps -------------------------------------------------------------------------------- /applications/utilities/mesh/conversion/ansysToFoam/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/mesh/conversion/cfx4ToFoam/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/mesh/conversion/gambitToFoam/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/mesh/conversion/mshToFoam/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/mesh/conversion/netgenNeutralToFoam/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/mesh/conversion/sammToFoam/starMesh.H: -------------------------------------------------------------------------------- 1 | #include "sammMesh.H" 2 | -------------------------------------------------------------------------------- /applications/utilities/mesh/conversion/tetgenToFoam/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/mesh/manipulation/objToVTK/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/miscellaneous/foamDictionary/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = 2 | -------------------------------------------------------------------------------- /applications/utilities/miscellaneous/foamListTimes/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/postProcessing/noise/Make/files: -------------------------------------------------------------------------------- 1 | noise.C 2 | 3 | EXE = $(FOAM_APPBIN)/noise 4 | -------------------------------------------------------------------------------- /bin/DPMFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/DPMFoam -------------------------------------------------------------------------------- /bin/MPPICFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/MPPICFoam -------------------------------------------------------------------------------- /bin/buoyantReactingParticleFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/buoyantReactingParticleFoam -------------------------------------------------------------------------------- /bin/coalChemistryFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/coalChemistryFoam -------------------------------------------------------------------------------- /bin/compressibleInterFilmFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/compressibleInterFilmFoam -------------------------------------------------------------------------------- /bin/fireFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/fireFoam -------------------------------------------------------------------------------- /bin/foamCleanCase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamCleanCase -------------------------------------------------------------------------------- /bin/foamCleanPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamCleanPath -------------------------------------------------------------------------------- /bin/foamCleanTutorials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamCleanTutorials -------------------------------------------------------------------------------- /bin/foamCloneCase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamCloneCase -------------------------------------------------------------------------------- /bin/foamCreateVideo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamCreateVideo -------------------------------------------------------------------------------- /bin/foamEtcFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamEtcFile -------------------------------------------------------------------------------- /bin/foamExec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamExec -------------------------------------------------------------------------------- /bin/foamGet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamGet -------------------------------------------------------------------------------- /bin/foamInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamInfo -------------------------------------------------------------------------------- /bin/foamJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamJob -------------------------------------------------------------------------------- /bin/foamLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamLog -------------------------------------------------------------------------------- /bin/foamMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamMonitor -------------------------------------------------------------------------------- /bin/foamNew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamNew -------------------------------------------------------------------------------- /bin/foamNewApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamNewApp -------------------------------------------------------------------------------- /bin/foamNewBC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamNewBC -------------------------------------------------------------------------------- /bin/foamNewFunctionObject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamNewFunctionObject -------------------------------------------------------------------------------- /bin/foamNewSource: -------------------------------------------------------------------------------- 1 | ../etc/codeTemplates/source/foamNewSource -------------------------------------------------------------------------------- /bin/foamNewTemplate: -------------------------------------------------------------------------------- 1 | ../etc/codeTemplates/template/foamNewTemplate -------------------------------------------------------------------------------- /bin/foamRunTutorials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamRunTutorials -------------------------------------------------------------------------------- /bin/foamSearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamSearch -------------------------------------------------------------------------------- /bin/foamSequenceVTKFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamSequenceVTKFiles -------------------------------------------------------------------------------- /bin/foamTags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/foamTags -------------------------------------------------------------------------------- /bin/icoUncoupledKinematicParcelFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/icoUncoupledKinematicParcelFoam -------------------------------------------------------------------------------- /bin/interPhaseChangeFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/interPhaseChangeFoam -------------------------------------------------------------------------------- /bin/mergeOrSplitBaffles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/mergeOrSplitBaffles -------------------------------------------------------------------------------- /bin/mpirunDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/mpirunDebug -------------------------------------------------------------------------------- /bin/org-html: -------------------------------------------------------------------------------- 1 | tools/org-batch -------------------------------------------------------------------------------- /bin/org-latex: -------------------------------------------------------------------------------- 1 | tools/org-batch -------------------------------------------------------------------------------- /bin/org-pdflatex: -------------------------------------------------------------------------------- 1 | tools/org-batch -------------------------------------------------------------------------------- /bin/paraFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/paraFoam -------------------------------------------------------------------------------- /bin/reactingMultiphaseEulerFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/reactingMultiphaseEulerFoam -------------------------------------------------------------------------------- /bin/reactingParcelFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/reactingParcelFoam -------------------------------------------------------------------------------- /bin/reactingParticleFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/reactingParticleFoam -------------------------------------------------------------------------------- /bin/reactingTwoPhaseEulerFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/reactingTwoPhaseEulerFoam -------------------------------------------------------------------------------- /bin/rhoReactingBuoyantFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/rhoReactingBuoyantFoam -------------------------------------------------------------------------------- /bin/rhoReactingFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/rhoReactingFoam -------------------------------------------------------------------------------- /bin/simpleReactingParcelFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/simpleReactingParcelFoam -------------------------------------------------------------------------------- /bin/simpleReactingParticleFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/simpleReactingParticleFoam -------------------------------------------------------------------------------- /bin/sprayFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/sprayFoam -------------------------------------------------------------------------------- /bin/surfaceFeatureExtract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/surfaceFeatureExtract -------------------------------------------------------------------------------- /bin/tools/CleanFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/CleanFunctions -------------------------------------------------------------------------------- /bin/tools/HookFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/HookFunctions -------------------------------------------------------------------------------- /bin/tools/MakefileDirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/MakefileDirs -------------------------------------------------------------------------------- /bin/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/README -------------------------------------------------------------------------------- /bin/tools/RunFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/RunFunctions -------------------------------------------------------------------------------- /bin/tools/doxyFilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/doxyFilter -------------------------------------------------------------------------------- /bin/tools/doxyFilter-ignore.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/doxyFilter-ignore.awk -------------------------------------------------------------------------------- /bin/tools/doxyFilter-table.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/doxyFilter-table.awk -------------------------------------------------------------------------------- /bin/tools/doxyFilter-table.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/doxyFilter-table.sed -------------------------------------------------------------------------------- /bin/tools/doxyFilter-top.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/doxyFilter-top.awk -------------------------------------------------------------------------------- /bin/tools/doxyFilter.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/doxyFilter.awk -------------------------------------------------------------------------------- /bin/tools/doxyFilter.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/doxyFilter.sed -------------------------------------------------------------------------------- /bin/tools/foamConfigurePaths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/foamConfigurePaths -------------------------------------------------------------------------------- /bin/tools/foamGenerateBashCompletion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/foamGenerateBashCompletion -------------------------------------------------------------------------------- /bin/tools/foamListBinDirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/foamListBinDirs -------------------------------------------------------------------------------- /bin/tools/foamListSourceFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/foamListSourceFiles -------------------------------------------------------------------------------- /bin/tools/foamListThirdPartyBinDirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/foamListThirdPartyBinDirs -------------------------------------------------------------------------------- /bin/tools/foamLog.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/foamLog.db -------------------------------------------------------------------------------- /bin/tools/foamVersionCompare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/foamVersionCompare -------------------------------------------------------------------------------- /bin/tools/gtagsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/gtagsrc -------------------------------------------------------------------------------- /bin/tools/interactive-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/interactive-hook -------------------------------------------------------------------------------- /bin/tools/org-batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/org-batch -------------------------------------------------------------------------------- /bin/tools/pre-commit-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/pre-commit-hook -------------------------------------------------------------------------------- /bin/tools/pre-receive-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/pre-receive-hook -------------------------------------------------------------------------------- /bin/tools/scanpackages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/tools/scanpackages -------------------------------------------------------------------------------- /bin/twoPhaseEulerFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/twoPhaseEulerFoam -------------------------------------------------------------------------------- /bin/uncoupledKinematicParcelFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/bin/uncoupledKinematicParcelFoam -------------------------------------------------------------------------------- /doc/Doxygen/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Doxygen/Allwmake -------------------------------------------------------------------------------- /doc/Doxygen/CFDFoundation55x55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Doxygen/CFDFoundation55x55.png -------------------------------------------------------------------------------- /doc/Doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Doxygen/Doxyfile -------------------------------------------------------------------------------- /doc/Doxygen/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Doxygen/README.html -------------------------------------------------------------------------------- /doc/Doxygen/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Doxygen/README.org -------------------------------------------------------------------------------- /doc/Doxygen/customdoxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Doxygen/customdoxygen.css -------------------------------------------------------------------------------- /doc/Doxygen/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Doxygen/footer.html -------------------------------------------------------------------------------- /doc/Doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Doxygen/header.html -------------------------------------------------------------------------------- /doc/Guides/OpenFOAMUserGuide-A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/Guides/OpenFOAMUserGuide-A4.pdf -------------------------------------------------------------------------------- /doc/codingStyleGuide.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/codingStyleGuide.org -------------------------------------------------------------------------------- /doc/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/tools/README -------------------------------------------------------------------------------- /doc/tools/find-trailingspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/doc/tools/find-trailingspace -------------------------------------------------------------------------------- /etc/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/README.org -------------------------------------------------------------------------------- /etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/bashrc -------------------------------------------------------------------------------- /etc/caseDicts/annotated/PDRMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/caseDicts/annotated/PDRMeshDict -------------------------------------------------------------------------------- /etc/caseDicts/annotated/collapseDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/caseDicts/annotated/collapseDict -------------------------------------------------------------------------------- /etc/caseDicts/annotated/pdfDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/caseDicts/annotated/pdfDict -------------------------------------------------------------------------------- /etc/caseDicts/annotated/setWavesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/caseDicts/annotated/setWavesDict -------------------------------------------------------------------------------- /etc/caseDicts/annotated/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/caseDicts/annotated/topoSetDict -------------------------------------------------------------------------------- /etc/caseDicts/setConstraintTypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/caseDicts/setConstraintTypes -------------------------------------------------------------------------------- /etc/cellModels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/cellModels -------------------------------------------------------------------------------- /etc/codeTemplates/BC/BC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/BC/BC.C -------------------------------------------------------------------------------- /etc/codeTemplates/BC/BC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/BC/BC.H -------------------------------------------------------------------------------- /etc/codeTemplates/BC/BCs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/BC/BCs.C -------------------------------------------------------------------------------- /etc/codeTemplates/BC/BCs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/BC/BCs.H -------------------------------------------------------------------------------- /etc/codeTemplates/BC/BCsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/BC/BCsFwd.H -------------------------------------------------------------------------------- /etc/codeTemplates/BC/Make/files: -------------------------------------------------------------------------------- 1 | COMPILED.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libNAME 4 | -------------------------------------------------------------------------------- /etc/codeTemplates/BC/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/BC/Make/options -------------------------------------------------------------------------------- /etc/codeTemplates/app/Make/files: -------------------------------------------------------------------------------- 1 | NAME.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/NAME 4 | -------------------------------------------------------------------------------- /etc/codeTemplates/app/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/app/Make/options -------------------------------------------------------------------------------- /etc/codeTemplates/app/app.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/app/app.C -------------------------------------------------------------------------------- /etc/codeTemplates/app/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/app/createFields.H -------------------------------------------------------------------------------- /etc/codeTemplates/dynamicCode/psiThermoTemplate.C: -------------------------------------------------------------------------------- 1 | fluidThermoTemplate.C -------------------------------------------------------------------------------- /etc/codeTemplates/dynamicCode/rhoReactionThermo: -------------------------------------------------------------------------------- 1 | fluidReactionThermo -------------------------------------------------------------------------------- /etc/codeTemplates/dynamicCode/rhoReactionThermoTemplate.C: -------------------------------------------------------------------------------- 1 | fluidReactionThermoTemplate.C -------------------------------------------------------------------------------- /etc/codeTemplates/dynamicCode/rhoThermo: -------------------------------------------------------------------------------- 1 | fluidThermo -------------------------------------------------------------------------------- /etc/codeTemplates/dynamicCode/rhoThermoTemplate.C: -------------------------------------------------------------------------------- 1 | fluidThermoTemplate.C -------------------------------------------------------------------------------- /etc/codeTemplates/foamCommentStyles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/foamCommentStyles -------------------------------------------------------------------------------- /etc/codeTemplates/foamScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/foamScript -------------------------------------------------------------------------------- /etc/codeTemplates/source/_Template.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/source/_Template.C -------------------------------------------------------------------------------- /etc/codeTemplates/source/_Template.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/codeTemplates/source/_Template.H -------------------------------------------------------------------------------- /etc/config.csh/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/aliases -------------------------------------------------------------------------------- /etc/config.csh/ensight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/ensight -------------------------------------------------------------------------------- /etc/config.csh/example/compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/example/compiler -------------------------------------------------------------------------------- /etc/config.csh/example/openmpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/example/openmpi -------------------------------------------------------------------------------- /etc/config.csh/example/paraview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/example/paraview -------------------------------------------------------------------------------- /etc/config.csh/example/prefs.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/example/prefs.csh -------------------------------------------------------------------------------- /etc/config.csh/mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/mpi -------------------------------------------------------------------------------- /etc/config.csh/paraview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/paraview -------------------------------------------------------------------------------- /etc/config.csh/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/settings -------------------------------------------------------------------------------- /etc/config.csh/unset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.csh/unset -------------------------------------------------------------------------------- /etc/config.sh/CGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/CGAL -------------------------------------------------------------------------------- /etc/config.sh/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/aliases -------------------------------------------------------------------------------- /etc/config.sh/bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/bash_completion -------------------------------------------------------------------------------- /etc/config.sh/compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/compiler -------------------------------------------------------------------------------- /etc/config.sh/ensight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/ensight -------------------------------------------------------------------------------- /etc/config.sh/example/compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/example/compiler -------------------------------------------------------------------------------- /etc/config.sh/example/openmpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/example/openmpi -------------------------------------------------------------------------------- /etc/config.sh/example/paraview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/example/paraview -------------------------------------------------------------------------------- /etc/config.sh/example/prefs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/example/prefs.sh -------------------------------------------------------------------------------- /etc/config.sh/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/functions -------------------------------------------------------------------------------- /etc/config.sh/gperftools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/gperftools -------------------------------------------------------------------------------- /etc/config.sh/metis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/metis -------------------------------------------------------------------------------- /etc/config.sh/mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/mpi -------------------------------------------------------------------------------- /etc/config.sh/paraview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/paraview -------------------------------------------------------------------------------- /etc/config.sh/scotch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/scotch -------------------------------------------------------------------------------- /etc/config.sh/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/settings -------------------------------------------------------------------------------- /etc/config.sh/unset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/config.sh/unset -------------------------------------------------------------------------------- /etc/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/controlDict -------------------------------------------------------------------------------- /etc/cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/cshrc -------------------------------------------------------------------------------- /etc/paraFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/paraFoam -------------------------------------------------------------------------------- /etc/templates/axisymmetricJet/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/axisymmetricJet/0/U -------------------------------------------------------------------------------- /etc/templates/axisymmetricJet/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/axisymmetricJet/0/k -------------------------------------------------------------------------------- /etc/templates/axisymmetricJet/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/axisymmetricJet/0/nut -------------------------------------------------------------------------------- /etc/templates/axisymmetricJet/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/axisymmetricJet/0/p -------------------------------------------------------------------------------- /etc/templates/axisymmetricJet/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/axisymmetricJet/Allrun -------------------------------------------------------------------------------- /etc/templates/axisymmetricJet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/axisymmetricJet/README -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/T -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/U -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/alphat -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/epsilon -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/k -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/nut -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/omega -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/p -------------------------------------------------------------------------------- /etc/templates/closedVolume/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/0/p_rgh -------------------------------------------------------------------------------- /etc/templates/closedVolume/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/closedVolume/README -------------------------------------------------------------------------------- /etc/templates/closedVolume/constant/geometry/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/closedVolumeRotating/constant/geometry/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/compressibleInflowOutflow/constant/geometry/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/inflowOutflow/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/inflowOutflow/0/U -------------------------------------------------------------------------------- /etc/templates/inflowOutflow/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/inflowOutflow/0/k -------------------------------------------------------------------------------- /etc/templates/inflowOutflow/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/inflowOutflow/0/nut -------------------------------------------------------------------------------- /etc/templates/inflowOutflow/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/inflowOutflow/0/omega -------------------------------------------------------------------------------- /etc/templates/inflowOutflow/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/inflowOutflow/0/p -------------------------------------------------------------------------------- /etc/templates/inflowOutflow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/inflowOutflow/README -------------------------------------------------------------------------------- /etc/templates/inflowOutflow/constant/geometry/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/inflowOutflowRotating/constant/geometry/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/singleFluidCHT/Allmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/singleFluidCHT/Allmesh -------------------------------------------------------------------------------- /etc/templates/singleFluidCHT/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/singleFluidCHT/Allrun -------------------------------------------------------------------------------- /etc/templates/singleFluidCHT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/templates/singleFluidCHT/README -------------------------------------------------------------------------------- /etc/templates/singleFluidCHT/constant/geometry/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/thermoData/therm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/thermoData/therm.dat -------------------------------------------------------------------------------- /etc/thermoData/thermoData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/etc/thermoData/thermoData -------------------------------------------------------------------------------- /src/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Allwmake -------------------------------------------------------------------------------- /src/MomentumTransportModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/MomentumTransportModels/Allwmake -------------------------------------------------------------------------------- /src/ODE/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/Make/files -------------------------------------------------------------------------------- /src/ODE/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ODE/ODESolvers/Euler/Euler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/Euler/Euler.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/Euler/Euler.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/Euler/Euler.H -------------------------------------------------------------------------------- /src/ODE/ODESolvers/EulerSI/EulerSI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/EulerSI/EulerSI.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/EulerSI/EulerSI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/EulerSI/EulerSI.H -------------------------------------------------------------------------------- /src/ODE/ODESolvers/RKCK45/RKCK45.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/RKCK45/RKCK45.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/RKCK45/RKCK45.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/RKCK45/RKCK45.H -------------------------------------------------------------------------------- /src/ODE/ODESolvers/RKDP45/RKDP45.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/RKDP45/RKDP45.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/RKDP45/RKDP45.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/RKDP45/RKDP45.H -------------------------------------------------------------------------------- /src/ODE/ODESolvers/RKF45/RKF45.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/RKF45/RKF45.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/RKF45/RKF45.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/RKF45/RKF45.H -------------------------------------------------------------------------------- /src/ODE/ODESolvers/SIBS/SIBS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/SIBS/SIBS.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/SIBS/SIBS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/SIBS/SIBS.H -------------------------------------------------------------------------------- /src/ODE/ODESolvers/SIBS/SIMPR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/SIBS/SIMPR.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/rodas23/rodas23.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/rodas23/rodas23.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/rodas23/rodas23.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/rodas23/rodas23.H -------------------------------------------------------------------------------- /src/ODE/ODESolvers/rodas34/rodas34.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/rodas34/rodas34.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/rodas34/rodas34.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/rodas34/rodas34.H -------------------------------------------------------------------------------- /src/ODE/ODESolvers/seulex/seulex.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/seulex/seulex.C -------------------------------------------------------------------------------- /src/ODE/ODESolvers/seulex/seulex.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESolvers/seulex/seulex.H -------------------------------------------------------------------------------- /src/ODE/ODESystem/ODESystem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESystem/ODESystem.C -------------------------------------------------------------------------------- /src/ODE/ODESystem/ODESystem.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/ODE/ODESystem/ODESystem.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/Allwmake -------------------------------------------------------------------------------- /src/OSspecific/POSIX/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/Make/files -------------------------------------------------------------------------------- /src/OSspecific/POSIX/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = $(COMP_FLAGS) 2 | -------------------------------------------------------------------------------- /src/OSspecific/POSIX/POSIX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/POSIX.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/POSIX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/POSIX.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/fileMonitor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/fileMonitor.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/fileMonitor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/fileMonitor.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/fileStat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/fileStat.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/fileStat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/fileStat.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/printStack.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/printStack.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/regExp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/regExp.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/regExp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/regExp.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/timer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/timer.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/timer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OSspecific/POSIX/timer.H -------------------------------------------------------------------------------- /src/OpenFOAM/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/Make/files -------------------------------------------------------------------------------- /src/OpenFOAM/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/Make/options -------------------------------------------------------------------------------- /src/OpenFOAM/db/Callback/Callback.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Callback/Callback.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Callback/Callback.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Callback/Callback.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobject.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/IOobject/IOobject.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobject.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/IOobject/IOobject.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobjectI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/IOobject/IOobjectI.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/gzstream/version: -------------------------------------------------------------------------------- 1 | 1.5 (08 Jan 2003) 2 | -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/Time.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/Time.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/Time.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/Time.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimeIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/TimeIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimePaths.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/TimePaths.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimePaths.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/TimePaths.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimeState.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/TimeState.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimeState.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/TimeState.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimeStateI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/TimeStateI.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/findTimes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/findTimes.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/subCycleTime.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/subCycleTime.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/subCycleTime.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/subCycleTime.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/timeSelector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/timeSelector.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/timeSelector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/Time/timeSelector.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/IOerror.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/error/IOerror.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/error.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/error/error.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/error.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/error/error.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/errorManip.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/error/errorManip.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/typeInfo/className.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/typeInfo/className.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/typeInfo/typeInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/db/typeInfo/typeInfo.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/cloud/cloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/fields/cloud/cloud.C -------------------------------------------------------------------------------- /src/OpenFOAM/fields/cloud/cloud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/fields/cloud/cloud.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/argList/parRun.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/argList/parRun.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/clock/clock.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/clock/clock.C -------------------------------------------------------------------------------- /src/OpenFOAM/global/clock/clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/clock/clock.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/debug/debug.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/debug/debug.C -------------------------------------------------------------------------------- /src/OpenFOAM/global/debug/debug.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/debug/debug.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/foamDoc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/foamDoc.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/foamVersion.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/foamVersion.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/global.Cver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/global.Cver -------------------------------------------------------------------------------- /src/OpenFOAM/global/new.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/global/new.C -------------------------------------------------------------------------------- /src/OpenFOAM/graph/curve/curve.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/graph/curve/curve.C -------------------------------------------------------------------------------- /src/OpenFOAM/graph/curve/curve.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/graph/curve/curve.H -------------------------------------------------------------------------------- /src/OpenFOAM/graph/graph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/graph/graph.C -------------------------------------------------------------------------------- /src/OpenFOAM/graph/graph.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/graph/graph.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/OSspecific.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/include/OSspecific.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/addDictOption.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/include/addDictOption.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/createMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/include/createMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/createTime.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/include/createTime.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/listOptions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/include/listOptions.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/listOutput.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/include/listOutput.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/macros.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/include/macros.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/removeCaseOptions.H: -------------------------------------------------------------------------------- 1 | argList::initValidTables::clear(); 2 | -------------------------------------------------------------------------------- /src/OpenFOAM/include/setRootCase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/include/setRootCase.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/tmp/tmp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/memory/tmp/tmp.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/tmp/tmpI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/memory/tmp/tmpI.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/tmpNrc/tmpNrc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/memory/tmpNrc/tmpNrc.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/tmpNrc/tmpNrcI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/memory/tmpNrc/tmpNrcI.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/data/data.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/meshes/data/data.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/data/data.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/meshes/data/data.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Pair/Pair.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/Pair/Pair.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Swap/Swap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/Swap/Swap.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/nil/nil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/nil/nil.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/one/one.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/one/one.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/one/oneI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/one/oneI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ops/flipOp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/ops/flipOp.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ops/flipOp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/ops/flipOp.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ops/ops.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/ops/ops.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/zero/zero.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/zero/zero.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/zero/zeroI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/OpenFOAM/primitives/zero/zeroI.H -------------------------------------------------------------------------------- /src/Pstream/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/Allwclean -------------------------------------------------------------------------------- /src/Pstream/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/Allwmake -------------------------------------------------------------------------------- /src/Pstream/dummy/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/dummy/Make/files -------------------------------------------------------------------------------- /src/Pstream/dummy/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/dummy/Make/options -------------------------------------------------------------------------------- /src/Pstream/dummy/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/dummy/UIPread.C -------------------------------------------------------------------------------- /src/Pstream/dummy/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/dummy/UOPwrite.C -------------------------------------------------------------------------------- /src/Pstream/dummy/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/dummy/UPstream.C -------------------------------------------------------------------------------- /src/Pstream/mpi/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/Make/files -------------------------------------------------------------------------------- /src/Pstream/mpi/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/Make/options -------------------------------------------------------------------------------- /src/Pstream/mpi/PstreamGlobals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/PstreamGlobals.C -------------------------------------------------------------------------------- /src/Pstream/mpi/PstreamGlobals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/PstreamGlobals.H -------------------------------------------------------------------------------- /src/Pstream/mpi/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/UIPread.C -------------------------------------------------------------------------------- /src/Pstream/mpi/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/UOPwrite.C -------------------------------------------------------------------------------- /src/Pstream/mpi/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/UPstream.C -------------------------------------------------------------------------------- /src/Pstream/mpi/allReduce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/allReduce.H -------------------------------------------------------------------------------- /src/Pstream/mpi/allReduceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/Pstream/mpi/allReduceTemplates.C -------------------------------------------------------------------------------- /src/atmosphericModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/atmosphericModels/Make/files -------------------------------------------------------------------------------- /src/atmosphericModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/atmosphericModels/Make/options -------------------------------------------------------------------------------- /src/combustionModels/EDC/EDC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/combustionModels/EDC/EDC.C -------------------------------------------------------------------------------- /src/combustionModels/EDC/EDC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/combustionModels/EDC/EDC.H -------------------------------------------------------------------------------- /src/combustionModels/FSD/FSD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/combustionModels/FSD/FSD.C -------------------------------------------------------------------------------- /src/combustionModels/FSD/FSD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/combustionModels/FSD/FSD.H -------------------------------------------------------------------------------- /src/combustionModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/combustionModels/Make/files -------------------------------------------------------------------------------- /src/combustionModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/combustionModels/Make/options -------------------------------------------------------------------------------- /src/combustionModels/PaSR/PaSR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/combustionModels/PaSR/PaSR.C -------------------------------------------------------------------------------- /src/combustionModels/PaSR/PaSR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/combustionModels/PaSR/PaSR.H -------------------------------------------------------------------------------- /src/conversion/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/conversion/Allwmake -------------------------------------------------------------------------------- /src/conversion/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/conversion/Make/files -------------------------------------------------------------------------------- /src/conversion/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/conversion/Make/options -------------------------------------------------------------------------------- /src/conversion/meshReader/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/conversion/meshReader/README -------------------------------------------------------------------------------- /src/conversion/meshTables/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/conversion/meshTables/README -------------------------------------------------------------------------------- /src/dummyThirdParty/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/dummyThirdParty/Allwmake -------------------------------------------------------------------------------- /src/dummyThirdParty/MGridGen/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dynamicFvMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/dynamicFvMesh/Make/files -------------------------------------------------------------------------------- /src/dynamicFvMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/dynamicFvMesh/Make/options -------------------------------------------------------------------------------- /src/dynamicMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/dynamicMesh/Make/files -------------------------------------------------------------------------------- /src/dynamicMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/dynamicMesh/Make/options -------------------------------------------------------------------------------- /src/engine/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/Make/files -------------------------------------------------------------------------------- /src/engine/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/Make/options -------------------------------------------------------------------------------- /src/engine/engineValve/engineValve.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/engineValve/engineValve.C -------------------------------------------------------------------------------- /src/engine/engineValve/engineValve.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/engineValve/engineValve.H -------------------------------------------------------------------------------- /src/engine/engineValve/valveBank.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/engineValve/valveBank.H -------------------------------------------------------------------------------- /src/engine/ignition/ignite.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/ignition/ignite.H -------------------------------------------------------------------------------- /src/engine/ignition/ignition.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/ignition/ignition.C -------------------------------------------------------------------------------- /src/engine/ignition/ignition.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/ignition/ignition.H -------------------------------------------------------------------------------- /src/engine/ignition/ignitionIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/ignition/ignitionIO.C -------------------------------------------------------------------------------- /src/engine/ignition/ignitionSite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/ignition/ignitionSite.C -------------------------------------------------------------------------------- /src/engine/ignition/ignitionSite.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/ignition/ignitionSite.H -------------------------------------------------------------------------------- /src/engine/ignition/ignitionSiteIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/ignition/ignitionSiteIO.C -------------------------------------------------------------------------------- /src/engine/include/StCorr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/engine/include/StCorr.H -------------------------------------------------------------------------------- /src/fileFormats/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/Make/files -------------------------------------------------------------------------------- /src/fileFormats/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fileFormats/nas/NASCore.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/nas/NASCore.C -------------------------------------------------------------------------------- /src/fileFormats/nas/NASCore.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/nas/NASCore.H -------------------------------------------------------------------------------- /src/fileFormats/obj/OBJstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/obj/OBJstream.C -------------------------------------------------------------------------------- /src/fileFormats/obj/OBJstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/obj/OBJstream.H -------------------------------------------------------------------------------- /src/fileFormats/starcd/STARCDCore.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/starcd/STARCDCore.C -------------------------------------------------------------------------------- /src/fileFormats/starcd/STARCDCore.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/starcd/STARCDCore.H -------------------------------------------------------------------------------- /src/fileFormats/vtk/vtkWriteOps.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/vtk/vtkWriteOps.C -------------------------------------------------------------------------------- /src/fileFormats/vtk/vtkWriteOps.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fileFormats/vtk/vtkWriteOps.H -------------------------------------------------------------------------------- /src/finiteVolume/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/finiteVolume/Make/files -------------------------------------------------------------------------------- /src/finiteVolume/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/finiteVolume/Make/options -------------------------------------------------------------------------------- /src/finiteVolume/cfdTools/general/include/createMRF.H: -------------------------------------------------------------------------------- 1 | IOMRFZoneList MRF(mesh); 2 | -------------------------------------------------------------------------------- /src/finiteVolume/cfdTools/general/include/createPisoControl.H: -------------------------------------------------------------------------------- 1 | pisoControl piso(mesh); 2 | -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/fvMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/finiteVolume/fvMesh/fvMesh.C -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/fvMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/finiteVolume/fvMesh/fvMesh.H -------------------------------------------------------------------------------- /src/finiteVolume/volMesh/volMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/finiteVolume/volMesh/volMesh.H -------------------------------------------------------------------------------- /src/functionObjects/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/Allwmake -------------------------------------------------------------------------------- /src/functionObjects/field/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/Make/files -------------------------------------------------------------------------------- /src/functionObjects/field/Q/Q.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/Q/Q.C -------------------------------------------------------------------------------- /src/functionObjects/field/Q/Q.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/Q/Q.H -------------------------------------------------------------------------------- /src/functionObjects/field/add/add.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/add/add.C -------------------------------------------------------------------------------- /src/functionObjects/field/add/add.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/add/add.H -------------------------------------------------------------------------------- /src/functionObjects/field/age/age.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/age/age.C -------------------------------------------------------------------------------- /src/functionObjects/field/age/age.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/age/age.H -------------------------------------------------------------------------------- /src/functionObjects/field/ddt/ddt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/ddt/ddt.C -------------------------------------------------------------------------------- /src/functionObjects/field/ddt/ddt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/ddt/ddt.H -------------------------------------------------------------------------------- /src/functionObjects/field/div/div.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/div/div.C -------------------------------------------------------------------------------- /src/functionObjects/field/div/div.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/div/div.H -------------------------------------------------------------------------------- /src/functionObjects/field/log/log.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/log/log.C -------------------------------------------------------------------------------- /src/functionObjects/field/log/log.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/log/log.H -------------------------------------------------------------------------------- /src/functionObjects/field/mag/mag.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/mag/mag.C -------------------------------------------------------------------------------- /src/functionObjects/field/mag/mag.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/functionObjects/field/mag/mag.H -------------------------------------------------------------------------------- /src/fvAgglomerationMethods/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fvAgglomerationMethods/Allwmake -------------------------------------------------------------------------------- /src/fvConstraints/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fvConstraints/Make/files -------------------------------------------------------------------------------- /src/fvConstraints/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fvConstraints/Make/options -------------------------------------------------------------------------------- /src/fvModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fvModels/Make/files -------------------------------------------------------------------------------- /src/fvModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fvModels/Make/options -------------------------------------------------------------------------------- /src/fvMotionSolver/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fvMotionSolver/Make/files -------------------------------------------------------------------------------- /src/fvMotionSolver/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/fvMotionSolver/Make/options -------------------------------------------------------------------------------- /src/genericPatchFields/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/genericPatchFields/Make/files -------------------------------------------------------------------------------- /src/genericPatchFields/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/genericPatchFields/Make/options -------------------------------------------------------------------------------- /src/lagrangian/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/Allwmake -------------------------------------------------------------------------------- /src/lagrangian/DSMC/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/DSMC/Make/files -------------------------------------------------------------------------------- /src/lagrangian/DSMC/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/DSMC/Make/options -------------------------------------------------------------------------------- /src/lagrangian/basic/Cloud/Cloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/basic/Cloud/Cloud.C -------------------------------------------------------------------------------- /src/lagrangian/basic/Cloud/Cloud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/basic/Cloud/Cloud.H -------------------------------------------------------------------------------- /src/lagrangian/basic/Cloud/CloudIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/basic/Cloud/CloudIO.C -------------------------------------------------------------------------------- /src/lagrangian/basic/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/basic/Make/files -------------------------------------------------------------------------------- /src/lagrangian/basic/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/basic/Make/options -------------------------------------------------------------------------------- /src/lagrangian/distributionModels/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = 2 | -------------------------------------------------------------------------------- /src/lagrangian/molecularDynamics/molecularMeasurements/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lagrangian/parcel/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/parcel/Make/files -------------------------------------------------------------------------------- /src/lagrangian/parcel/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/lagrangian/parcel/Make/options -------------------------------------------------------------------------------- /src/mesh/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/Allwmake -------------------------------------------------------------------------------- /src/mesh/blockMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/blockMesh/Make/files -------------------------------------------------------------------------------- /src/mesh/blockMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/blockMesh/Make/options -------------------------------------------------------------------------------- /src/mesh/extrudeModel/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/extrudeModel/Make/files -------------------------------------------------------------------------------- /src/mesh/extrudeModel/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/extrudeModel/Make/options -------------------------------------------------------------------------------- /src/mesh/extrudeModel/wedge/wedge.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/extrudeModel/wedge/wedge.C -------------------------------------------------------------------------------- /src/mesh/extrudeModel/wedge/wedge.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/extrudeModel/wedge/wedge.H -------------------------------------------------------------------------------- /src/mesh/snappyHexMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/snappyHexMesh/Make/files -------------------------------------------------------------------------------- /src/mesh/snappyHexMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/mesh/snappyHexMesh/Make/options -------------------------------------------------------------------------------- /src/meshTools/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/Make/files -------------------------------------------------------------------------------- /src/meshTools/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/Make/options -------------------------------------------------------------------------------- /src/meshTools/edgeMesh/edgeMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/edgeMesh/edgeMesh.C -------------------------------------------------------------------------------- /src/meshTools/edgeMesh/edgeMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/edgeMesh/edgeMesh.H -------------------------------------------------------------------------------- /src/meshTools/edgeMesh/edgeMeshI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/edgeMesh/edgeMeshI.H -------------------------------------------------------------------------------- /src/meshTools/edgeMesh/edgeMeshIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/edgeMesh/edgeMeshIO.C -------------------------------------------------------------------------------- /src/meshTools/edgeMesh/edgeMeshNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/edgeMesh/edgeMeshNew.C -------------------------------------------------------------------------------- /src/meshTools/meshTools/meshTools.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/meshTools/meshTools.C -------------------------------------------------------------------------------- /src/meshTools/meshTools/meshTools.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/meshTools/meshTools.H -------------------------------------------------------------------------------- /src/meshTools/regionSplit/minData.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/regionSplit/minData.H -------------------------------------------------------------------------------- /src/meshTools/regionSplit/minDataI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/meshTools/regionSplit/minDataI.H -------------------------------------------------------------------------------- /src/parallel/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/parallel/Allwmake -------------------------------------------------------------------------------- /src/parallel/decompose/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/parallel/decompose/Allwclean -------------------------------------------------------------------------------- /src/parallel/decompose/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/parallel/decompose/Allwmake -------------------------------------------------------------------------------- /src/parallel/distributed/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/parallel/distributed/Make/files -------------------------------------------------------------------------------- /src/parallel/reconstruct/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/parallel/reconstruct/Allwmake -------------------------------------------------------------------------------- /src/radiationModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/radiationModels/Make/files -------------------------------------------------------------------------------- /src/radiationModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/radiationModels/Make/options -------------------------------------------------------------------------------- /src/randomProcesses/Kmesh/Kmesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/Kmesh/Kmesh.C -------------------------------------------------------------------------------- /src/randomProcesses/Kmesh/Kmesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/Kmesh/Kmesh.H -------------------------------------------------------------------------------- /src/randomProcesses/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/Make/files -------------------------------------------------------------------------------- /src/randomProcesses/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/Make/options -------------------------------------------------------------------------------- /src/randomProcesses/fft/calcEk.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/fft/calcEk.C -------------------------------------------------------------------------------- /src/randomProcesses/fft/calcEk.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/fft/calcEk.H -------------------------------------------------------------------------------- /src/randomProcesses/fft/fft.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/fft/fft.C -------------------------------------------------------------------------------- /src/randomProcesses/fft/fft.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/fft/fft.H -------------------------------------------------------------------------------- /src/randomProcesses/noise/noiseFFT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/noise/noiseFFT.C -------------------------------------------------------------------------------- /src/randomProcesses/noise/noiseFFT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/noise/noiseFFT.H -------------------------------------------------------------------------------- /src/randomProcesses/turbulence/Ek.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/randomProcesses/turbulence/Ek.H -------------------------------------------------------------------------------- /src/regionModels/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/regionModels/Allwclean -------------------------------------------------------------------------------- /src/regionModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/regionModels/Allwmake -------------------------------------------------------------------------------- /src/renumber/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/renumber/Allwmake -------------------------------------------------------------------------------- /src/rigidBodyDynamics/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/Make/files -------------------------------------------------------------------------------- /src/rigidBodyDynamics/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/Make/options -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Pa/Pa.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Pa/Pa.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Pa/Pa.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Pa/Pa.H -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Px/Px.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Px/Px.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Px/Px.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Px/Px.H -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Py/Py.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Py/Py.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Py/Py.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Py/Py.H -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Pz/Pz.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Pz/Pz.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Pz/Pz.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Pz/Pz.H -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Ra/Ra.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Ra/Ra.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Ra/Ra.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Ra/Ra.H -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Rs/Rs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Rs/Rs.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Rs/Rs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Rs/Rs.H -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Rx/Rx.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Rx/Rx.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Rx/Rx.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Rx/Rx.H -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Ry/Ry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Ry/Ry.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Ry/Ry.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Ry/Ry.H -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Rz/Rz.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Rz/Rz.C -------------------------------------------------------------------------------- /src/rigidBodyDynamics/joints/Rz/Rz.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyDynamics/joints/Rz/Rz.H -------------------------------------------------------------------------------- /src/rigidBodyMeshMotion/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyMeshMotion/Make/files -------------------------------------------------------------------------------- /src/rigidBodyMeshMotion/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyMeshMotion/Make/options -------------------------------------------------------------------------------- /src/rigidBodyState/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyState/Make/files -------------------------------------------------------------------------------- /src/rigidBodyState/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyState/Make/options -------------------------------------------------------------------------------- /src/rigidBodyState/rigidBodyState.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyState/rigidBodyState.C -------------------------------------------------------------------------------- /src/rigidBodyState/rigidBodyState.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/rigidBodyState/rigidBodyState.H -------------------------------------------------------------------------------- /src/sampling/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/Make/files -------------------------------------------------------------------------------- /src/sampling/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/Make/options -------------------------------------------------------------------------------- /src/sampling/coordSet/coordSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/coordSet/coordSet.C -------------------------------------------------------------------------------- /src/sampling/coordSet/coordSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/coordSet/coordSet.H -------------------------------------------------------------------------------- /src/sampling/graphField/makeGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/graphField/makeGraph.C -------------------------------------------------------------------------------- /src/sampling/graphField/makeGraph.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/graphField/makeGraph.H -------------------------------------------------------------------------------- /src/sampling/meshToMesh/meshToMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/meshToMesh/meshToMesh.C -------------------------------------------------------------------------------- /src/sampling/meshToMesh/meshToMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/meshToMesh/meshToMesh.H -------------------------------------------------------------------------------- /src/sampling/probes/IOprobes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/probes/IOprobes.H -------------------------------------------------------------------------------- /src/sampling/probes/patchProbes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/probes/patchProbes.C -------------------------------------------------------------------------------- /src/sampling/probes/patchProbes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/probes/patchProbes.H -------------------------------------------------------------------------------- /src/sampling/probes/probes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/probes/probes.C -------------------------------------------------------------------------------- /src/sampling/probes/probes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/probes/probes.H -------------------------------------------------------------------------------- /src/sampling/probes/probesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/probes/probesDict -------------------------------------------------------------------------------- /src/sampling/probes/probesGrouping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sampling/probes/probesGrouping.C -------------------------------------------------------------------------------- /src/sixDoFRigidBodyMotion/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sixDoFRigidBodyMotion/Make/files -------------------------------------------------------------------------------- /src/sixDoFRigidBodyState/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/sixDoFRigidBodyState/Make/files -------------------------------------------------------------------------------- /src/specieTransfer/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/specieTransfer/Make/files -------------------------------------------------------------------------------- /src/specieTransfer/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/specieTransfer/Make/options -------------------------------------------------------------------------------- /src/surfMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/surfMesh/Make/files -------------------------------------------------------------------------------- /src/surfMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/surfMesh/Make/options -------------------------------------------------------------------------------- /src/surfMesh/surfMesh/surfMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/surfMesh/surfMesh/surfMesh.C -------------------------------------------------------------------------------- /src/surfMesh/surfMesh/surfMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/surfMesh/surfMesh/surfMesh.H -------------------------------------------------------------------------------- /src/surfMesh/surfMesh/surfMeshIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/surfMesh/surfMesh/surfMeshIO.C -------------------------------------------------------------------------------- /src/thermophysicalModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/thermophysicalModels/Allwmake -------------------------------------------------------------------------------- /src/thermophysicalModels/specie/Make/options: -------------------------------------------------------------------------------- 1 | LIB_LIBS = -lOpenFOAM 2 | -------------------------------------------------------------------------------- /src/topoChangerFvMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/topoChangerFvMesh/Make/files -------------------------------------------------------------------------------- /src/topoChangerFvMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/topoChangerFvMesh/Make/options -------------------------------------------------------------------------------- /src/transportModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/transportModels/Make/files -------------------------------------------------------------------------------- /src/transportModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/transportModels/Make/options -------------------------------------------------------------------------------- /src/triSurface/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/triSurface/Make/files -------------------------------------------------------------------------------- /src/triSurface/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/triSurface/Make/options -------------------------------------------------------------------------------- /src/twoPhaseModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/twoPhaseModels/Allwmake -------------------------------------------------------------------------------- /src/waves/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/waves/Make/files -------------------------------------------------------------------------------- /src/waves/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/waves/Make/options -------------------------------------------------------------------------------- /src/waves/waveModels/Airy/Airy.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/waves/waveModels/Airy/Airy.C -------------------------------------------------------------------------------- /src/waves/waveModels/Airy/Airy.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/src/waves/waveModels/Airy/Airy.H -------------------------------------------------------------------------------- /test/Allclean: -------------------------------------------------------------------------------- 1 | ../tutorials/Allclean -------------------------------------------------------------------------------- /test/Allrun: -------------------------------------------------------------------------------- 1 | ../tutorials/Allrun -------------------------------------------------------------------------------- /test/IO/fileHandler/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/IO/fileHandler/0/U -------------------------------------------------------------------------------- /test/IO/fileHandler/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/IO/fileHandler/Allclean -------------------------------------------------------------------------------- /test/IO/fileHandler/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/IO/fileHandler/Allrun -------------------------------------------------------------------------------- /test/IO/fileHandler/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/IO/fileHandler/constant/g -------------------------------------------------------------------------------- /test/fvMeshTools/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/fvMeshTools/Allrun -------------------------------------------------------------------------------- /test/fvMeshTools/cavity/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/fvMeshTools/cavity/0/U -------------------------------------------------------------------------------- /test/fvMeshTools/cavity/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/fvMeshTools/cavity/0/p -------------------------------------------------------------------------------- /test/fvMeshTools/cavity/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/fvMeshTools/cavity/Allclean -------------------------------------------------------------------------------- /test/fvMeshTools/cavity/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/fvMeshTools/cavity/Allrun -------------------------------------------------------------------------------- /test/postProcessing/channel/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/postProcessing/channel/0/T -------------------------------------------------------------------------------- /test/postProcessing/channel/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/postProcessing/channel/0/U -------------------------------------------------------------------------------- /test/postProcessing/channel/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/postProcessing/channel/0/k -------------------------------------------------------------------------------- /test/postProcessing/channel/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/postProcessing/channel/0/nut -------------------------------------------------------------------------------- /test/postProcessing/channel/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/postProcessing/channel/0/p -------------------------------------------------------------------------------- /test/postProcessing/channel/0/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/postProcessing/channel/0/s -------------------------------------------------------------------------------- /test/postProcessing/channel/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/test/postProcessing/channel/Allrun -------------------------------------------------------------------------------- /tutorials/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/tutorials/Allclean -------------------------------------------------------------------------------- /tutorials/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/tutorials/Allrun -------------------------------------------------------------------------------- /tutorials/Alltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/tutorials/Alltest -------------------------------------------------------------------------------- /tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict.modelledBlocks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoPorousSimpleFoam/angledDuctExplicit/0: -------------------------------------------------------------------------------- 1 | ../angledDuctImplicit/0 -------------------------------------------------------------------------------- /tutorials/compressible/rhoPorousSimpleFoam/angledDuctExplicit/Allrun: -------------------------------------------------------------------------------- 1 | ../angledDuctImplicit/Allrun -------------------------------------------------------------------------------- /tutorials/compressible/rhoPorousSimpleFoam/angledDuctExplicit/constant: -------------------------------------------------------------------------------- 1 | ../angledDuctImplicit/constant -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/heatedDuct/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/heatedDuct/system/heater/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/heatedDuct/system/metal/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/constant/tube/g: -------------------------------------------------------------------------------- 1 | ../shell/g -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/shell/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/solid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/tube/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/tube/fvSchemes: -------------------------------------------------------------------------------- 1 | ../shell/fvSchemes -------------------------------------------------------------------------------- /tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/tube/fvSolution: -------------------------------------------------------------------------------- 1 | ../shell/fvSolution -------------------------------------------------------------------------------- /tutorials/incompressible/porousSimpleFoam/angledDuctExplicit/0: -------------------------------------------------------------------------------- 1 | ../angledDuctImplicit/0 -------------------------------------------------------------------------------- /tutorials/incompressible/porousSimpleFoam/angledDuctExplicit/Allrun: -------------------------------------------------------------------------------- 1 | ../angledDuctImplicit/Allrun -------------------------------------------------------------------------------- /tutorials/incompressible/porousSimpleFoam/angledDuctExplicit/constant: -------------------------------------------------------------------------------- 1 | ../angledDuctImplicit/constant -------------------------------------------------------------------------------- /tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/backgroundMeshDecomposition/fvSchemes: -------------------------------------------------------------------------------- 1 | ../fvSchemes -------------------------------------------------------------------------------- /tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/cellShapeControlMesh/fvSchemes: -------------------------------------------------------------------------------- 1 | ../fvSchemes -------------------------------------------------------------------------------- /tutorials/mesh/foamyHexMesh/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/tutorials/mesh/foamyHexMesh/Allrun -------------------------------------------------------------------------------- /tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/fvSchemes: -------------------------------------------------------------------------------- 1 | ../fvSchemes -------------------------------------------------------------------------------- /tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/fvSchemes: -------------------------------------------------------------------------------- 1 | ../fvSchemes -------------------------------------------------------------------------------- /tutorials/mesh/foamyHexMesh/straightDuctImplicit: -------------------------------------------------------------------------------- 1 | ../../incompressible/porousSimpleFoam/straightDuctImplicit -------------------------------------------------------------------------------- /tutorials/mesh/snappyHexMesh/iglooWithFridges: -------------------------------------------------------------------------------- 1 | ../../heatTransfer/buoyantSimpleFoam/iglooWithFridges -------------------------------------------------------------------------------- /tutorials/mesh/snappyHexMesh/motorBike: -------------------------------------------------------------------------------- 1 | ../../incompressible/simpleFoam/motorBike -------------------------------------------------------------------------------- /tutorials/multiphase/interFoam/LES/nozzleFlow2D/0/data/Ubulk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/multiphase/interFoam/LES/nozzleFlow2D/0/data/ptrace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wmake/makefiles/apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/makefiles/apps -------------------------------------------------------------------------------- /wmake/makefiles/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/makefiles/files -------------------------------------------------------------------------------- /wmake/makefiles/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/makefiles/general -------------------------------------------------------------------------------- /wmake/rules/General/CGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/CGAL -------------------------------------------------------------------------------- /wmake/rules/General/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/X -------------------------------------------------------------------------------- /wmake/rules/General/bison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/bison -------------------------------------------------------------------------------- /wmake/rules/General/btyacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/btyacc -------------------------------------------------------------------------------- /wmake/rules/General/btyacc++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/btyacc++ -------------------------------------------------------------------------------- /wmake/rules/General/byacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/byacc -------------------------------------------------------------------------------- /wmake/rules/General/flex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/flex -------------------------------------------------------------------------------- /wmake/rules/General/flex++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/flex++ -------------------------------------------------------------------------------- /wmake/rules/General/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/general -------------------------------------------------------------------------------- /wmake/rules/General/moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/moc -------------------------------------------------------------------------------- /wmake/rules/General/mplibDummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibDummy -------------------------------------------------------------------------------- /wmake/rules/General/mplibHPMPI64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibHPMPI64 -------------------------------------------------------------------------------- /wmake/rules/General/mplibMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibMPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibMPICH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibMPICH -------------------------------------------------------------------------------- /wmake/rules/General/mplibMPICH-GM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibMPICH-GM -------------------------------------------------------------------------------- /wmake/rules/General/mplibMV2MPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibMV2MPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibOPENMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibOPENMPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibQSMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibQSMPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibSGIMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibSGIMPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibSYSTEMMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibSYSTEMMPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibType: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/mplibType -------------------------------------------------------------------------------- /wmake/rules/General/standard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/standard -------------------------------------------------------------------------------- /wmake/rules/General/transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/transform -------------------------------------------------------------------------------- /wmake/rules/General/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/version -------------------------------------------------------------------------------- /wmake/rules/General/yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/General/yacc -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/c -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/c++ -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/cDebug -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/cOpt -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/cProf -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Clang/general -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/c -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/c++ -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/cProf -------------------------------------------------------------------------------- /wmake/rules/linux64Gcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Gcc/general -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/c -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/c++ -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/cDebug -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/cOpt -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/cProf -------------------------------------------------------------------------------- /wmake/rules/linux64GccKNL/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64GccKNL/general -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/c -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/c++ -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/cProf -------------------------------------------------------------------------------- /wmake/rules/linux64Icc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64Icc/general -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/c -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/c++ -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/cDebug -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/cOpt -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/cProf -------------------------------------------------------------------------------- /wmake/rules/linux64IccKNL/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linux64IccKNL/general -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/c -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/c++ -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/cProf -------------------------------------------------------------------------------- /wmake/rules/linuxARM7Gcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxARM7Gcc/general -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/c -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/c++ -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/cProf -------------------------------------------------------------------------------- /wmake/rules/linuxArm64Gcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxArm64Gcc/general -------------------------------------------------------------------------------- /wmake/rules/linuxClang/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/c -------------------------------------------------------------------------------- /wmake/rules/linuxClang/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/c++ -------------------------------------------------------------------------------- /wmake/rules/linuxClang/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linuxClang/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linuxClang/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linuxClang/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/cDebug -------------------------------------------------------------------------------- /wmake/rules/linuxClang/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/cOpt -------------------------------------------------------------------------------- /wmake/rules/linuxClang/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/cProf -------------------------------------------------------------------------------- /wmake/rules/linuxClang/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxClang/general -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/c -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/c++ -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/cProf -------------------------------------------------------------------------------- /wmake/rules/linuxGcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxGcc/general -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/c -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/c++ -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/cProf -------------------------------------------------------------------------------- /wmake/rules/linuxIcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxIcc/general -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/X -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/c -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/c++ -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/cProf -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64Gcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64Gcc/general -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64leGcc/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64leGcc/X -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64leGcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64leGcc/c -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64leGcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64leGcc/c++ -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64leGcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64leGcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64leGcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64leGcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64leGcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64leGcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linuxPPC64leGcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/linuxPPC64leGcc/cProf -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/X -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/c -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/c++ -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/cProf -------------------------------------------------------------------------------- /wmake/rules/solaris64Gcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solaris64Gcc/general -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/X -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/c -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/c++ -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/cProf -------------------------------------------------------------------------------- /wmake/rules/solarisGcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/rules/solarisGcc/general -------------------------------------------------------------------------------- /wmake/scripts/makeFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/scripts/makeFiles -------------------------------------------------------------------------------- /wmake/scripts/makeOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/scripts/makeOptions -------------------------------------------------------------------------------- /wmake/scripts/makeTargetDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/scripts/makeTargetDir -------------------------------------------------------------------------------- /wmake/scripts/wmakeFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/scripts/wmakeFunctions -------------------------------------------------------------------------------- /wmake/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/src/Makefile -------------------------------------------------------------------------------- /wmake/src/dirToString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/src/dirToString.c -------------------------------------------------------------------------------- /wmake/src/wmkdep.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/src/wmkdep.l -------------------------------------------------------------------------------- /wmake/wclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wclean -------------------------------------------------------------------------------- /wmake/wcleanLnIncludeAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wcleanLnIncludeAll -------------------------------------------------------------------------------- /wmake/wcleanPlatform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wcleanPlatform -------------------------------------------------------------------------------- /wmake/wdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wdep -------------------------------------------------------------------------------- /wmake/wmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmake -------------------------------------------------------------------------------- /wmake/wmakeCheckPwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmakeCheckPwd -------------------------------------------------------------------------------- /wmake/wmakeCollect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmakeCollect -------------------------------------------------------------------------------- /wmake/wmakeFilesAndOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmakeFilesAndOptions -------------------------------------------------------------------------------- /wmake/wmakeLnInclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmakeLnInclude -------------------------------------------------------------------------------- /wmake/wmakeLnIncludeAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmakeLnIncludeAll -------------------------------------------------------------------------------- /wmake/wmakePrintBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmakePrintBuild -------------------------------------------------------------------------------- /wmake/wmakeScheduler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmakeScheduler -------------------------------------------------------------------------------- /wmake/wmakeSchedulerUptime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wmakeSchedulerUptime -------------------------------------------------------------------------------- /wmake/wrmdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wrmdep -------------------------------------------------------------------------------- /wmake/wrmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-9/HEAD/wmake/wrmo --------------------------------------------------------------------------------