├── .gitignore ├── Allwmake ├── COPYING ├── README.md ├── applications ├── Allwmake └── solvers │ ├── basic │ ├── laplacianFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ ├── laplacianFoam.C │ │ └── write.H │ ├── potentialFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ ├── potentialFoam.C │ │ └── readControls.H │ └── scalarTransportFoam │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── createFields.H │ │ └── scalarTransportFoam.C │ ├── 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 │ │ ├── compressibleCourantNo.H │ │ ├── createFields.H │ │ ├── readFluxScheme.H │ │ ├── rhoBoundaryTypes.H │ │ ├── rhoCentralDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── rhoCentralDyMFoam.C │ │ └── rhoCentralFoam.C │ ├── rhoPimpleFoam │ │ ├── Allwmake │ │ ├── EEqn.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── createFields.H │ │ ├── pEqn.H │ │ ├── rhoLTSPimpleFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── rhoLTSPimpleFoam.C │ │ │ ├── setInitialrDeltaT.H │ │ │ └── setrDeltaT.H │ │ ├── rhoPimpleDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── correctPhi.H │ │ │ ├── pEqn.H │ │ │ ├── readControls.H │ │ │ └── rhoPimpleDyMFoam.C │ │ ├── rhoPimpleFoam.C │ │ └── rhoPimplecFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── pEqn.H │ │ │ └── rhoPimplecFoam.C │ ├── rhoSimpleFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── EEqn.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── createFields.H │ │ ├── pEqn.H │ │ ├── rhoPorousSimpleFoam │ │ │ ├── EEqn.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── createFields.H │ │ │ ├── createZones.H │ │ │ ├── pEqn.H │ │ │ └── rhoPorousSimpleFoam.C │ │ ├── rhoSimpleFoam.C │ │ └── rhoSimplecFoam │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── pEqn.H │ │ │ └── rhoSimplecFoam.C │ └── sonicFoam │ │ ├── Allwmake │ │ ├── EEqn.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── UEqn.H │ │ ├── createFields.H │ │ ├── pEqn.H │ │ ├── sonicDyMFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── pEqn.H │ │ └── sonicDyMFoam.C │ │ ├── sonicFoam.C │ │ └── sonicLiquidFoam │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── compressibleContinuityErrs.H │ │ ├── createFields.H │ │ ├── readThermodynamicProperties.H │ │ ├── readTransportProperties.H │ │ └── sonicLiquidFoam.C │ ├── electromagnetics │ ├── electrostaticFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ └── electrostaticFoam.C │ ├── magneticFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ ├── magnet.H │ │ └── magneticFoam.C │ └── mhdFoam │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── createFields.H │ │ ├── createPhiB.H │ │ ├── magneticFieldErr.H │ │ ├── mhdFoam.C │ │ └── readBPISOControls.H │ ├── heatTransfer │ ├── buoyantBoussinesqPimpleFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── TEqn.H │ │ ├── UEqn.H │ │ ├── buoyantBoussinesqPimpleFoam.C │ │ ├── createFields.H │ │ └── pEqn.H │ ├── buoyantBoussinesqSimpleFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── TEqn.H │ │ ├── UEqn.H │ │ ├── buoyantBoussinesqSimpleFoam.C │ │ ├── createFields.H │ │ ├── pEqn.H │ │ └── readTransportProperties.H │ ├── buoyantPimpleFoam │ │ ├── EEqn.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── buoyantPimpleFoam.C │ │ ├── createFields.H │ │ └── pEqn.H │ ├── buoyantSimpleFoam │ │ ├── EEqn.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── buoyantSimpleFoam.C │ │ ├── createFields.H │ │ └── pEqn.H │ ├── chtMultiRegionFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── chtMultiRegionFoam.C │ │ ├── chtMultiRegionSimpleFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── chtMultiRegionSimpleFoam.C │ │ │ ├── fluid │ │ │ │ ├── EEqn.H │ │ │ │ ├── UEqn.H │ │ │ │ ├── compressibleContinuityErrors.H │ │ │ │ ├── compressibleMultiRegionCourantNo.H │ │ │ │ ├── createFluidFields.H │ │ │ │ ├── createFluidMeshes.H │ │ │ │ ├── pEqn.H │ │ │ │ ├── readFluidMultiRegionSIMPLEControls.H │ │ │ │ ├── setRegionFluidFields.H │ │ │ │ └── solveFluid.H │ │ │ └── solid │ │ │ │ ├── readSolidMultiRegionSIMPLEControls.H │ │ │ │ └── solveSolid.H │ │ ├── fluid │ │ │ ├── EEqn.H │ │ │ ├── UEqn.H │ │ │ ├── compressibleContinuityErrors.H │ │ │ ├── compressibleCourantNo.C │ │ │ ├── compressibleCourantNo.H │ │ │ ├── compressibleMultiRegionCourantNo.H │ │ │ ├── createFluidFields.H │ │ │ ├── createFluidMeshes.H │ │ │ ├── initContinuityErrs.H │ │ │ ├── pEqn.H │ │ │ ├── readFluidMultiRegionPIMPLEControls.H │ │ │ ├── setRegionFluidFields.H │ │ │ ├── solveFluid.H │ │ │ └── storeOldFluidFields.H │ │ ├── include │ │ │ ├── setInitialMultiRegionDeltaT.H │ │ │ └── setMultiRegionDeltaT.H │ │ ├── readPIMPLEControls.H │ │ └── solid │ │ │ ├── createSolidFields.H │ │ │ ├── createSolidMeshes.H │ │ │ ├── readSolidMultiRegionPIMPLEControls.H │ │ │ ├── readSolidTimeControls.H │ │ │ ├── setRegionSolidFields.H │ │ │ ├── solidRegionDiffNo.C │ │ │ ├── solidRegionDiffNo.H │ │ │ ├── solidRegionDiffusionNo.H │ │ │ └── solveSolid.H │ └── thermoFoam │ │ ├── EEqn.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── createFields.H │ │ ├── setAlphaEff.H │ │ └── thermoFoam.C │ ├── incompressible │ ├── adjointShapeOptimizationFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── adjointContinuityErrs.H │ │ ├── adjointOutletPressure │ │ │ ├── adjointOutletPressureFvPatchScalarField.C │ │ │ └── adjointOutletPressureFvPatchScalarField.H │ │ ├── adjointOutletVelocity │ │ │ ├── adjointOutletVelocityFvPatchVectorField.C │ │ │ └── adjointOutletVelocityFvPatchVectorField.H │ │ ├── adjointShapeOptimizationFoam.C │ │ ├── createFields.H │ │ ├── createPhia.H │ │ └── initAdjointContinuityErrs.H │ ├── icoFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ └── icoFoam.C │ ├── nonNewtonianIcoFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ └── nonNewtonianIcoFoam.C │ ├── pimpleFoam │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── SRFPimpleFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── SRFPimpleFoam.C │ │ │ ├── UrelEqn.H │ │ │ ├── createFields.H │ │ │ └── pEqn.H │ │ ├── UEqn.H │ │ ├── createFields.H │ │ ├── pEqn.H │ │ ├── pimpleDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── correctPhi.H │ │ │ ├── pEqn.H │ │ │ ├── pimpleDyMFoam.C │ │ │ └── readControls.H │ │ └── pimpleFoam.C │ ├── pisoFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ └── pisoFoam.C │ ├── shallowWaterFoam │ │ ├── CourantNo.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ ├── createPhi.H │ │ ├── readGravitationalAcceleration.H │ │ └── shallowWaterFoam.C │ └── simpleFoam │ │ ├── Allwmake │ │ ├── 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 │ │ ├── createZones.H │ │ ├── pEqn.H │ │ └── porousSimpleFoam.C │ │ └── simpleFoam.C │ ├── multiphase │ ├── cavitatingFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── CourantNo.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── alphavPsi.H │ │ ├── cavitatingDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── cavitatingDyMFoam.C │ │ │ ├── correctPhi.H │ │ │ ├── pEqn.H │ │ │ └── readControls.H │ │ ├── cavitatingFoam.C │ │ ├── continuityErrs.H │ │ ├── createFields.H │ │ ├── pEqn.H │ │ ├── readControls.H │ │ ├── readThermodynamicProperties.H │ │ ├── rhoEqn.H │ │ ├── setDeltaT.H │ │ └── setInitialDeltaT.H │ ├── compressibleInterFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── TEqn.H │ │ ├── UEqn.H │ │ ├── alphaEqns.H │ │ ├── alphaEqnsSubCycle.H │ │ ├── compressibleInterDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── compressibleInterDyMFoam.C │ │ │ ├── correctPhi.H │ │ │ ├── pEqn.H │ │ │ └── readControls.H │ │ ├── compressibleInterFoam.C │ │ ├── createFields.H │ │ ├── pEqn.H │ │ └── 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 │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── compressibleTurbulenceModels.C │ │ ├── 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 │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── LTSInterFoam │ │ │ ├── LTSInterFoam.C │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── setInitialrDeltaT.H │ │ │ └── setrDeltaT.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── alphaCourantNo.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── correctPhi.H │ │ ├── createFields.H │ │ ├── interDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── correctPhi.H │ │ │ ├── interDyMFoam.C │ │ │ ├── pEqn.H │ │ │ └── readControls.H │ │ ├── interFoam.C │ │ ├── interMixingFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── alphaEqns.H │ │ │ ├── alphaEqnsSubCycle.H │ │ │ ├── createFields.H │ │ │ ├── immiscibleIncompressibleThreePhaseMixture │ │ │ │ ├── immiscibleIncompressibleThreePhaseMixture.C │ │ │ │ └── immiscibleIncompressibleThreePhaseMixture.H │ │ │ ├── incompressibleThreePhaseMixture │ │ │ │ ├── incompressibleThreePhaseMixture.C │ │ │ │ └── incompressibleThreePhaseMixture.H │ │ │ ├── interMixingFoam.C │ │ │ └── threePhaseInterfaceProperties │ │ │ │ ├── threePhaseInterfaceProperties.C │ │ │ │ └── threePhaseInterfaceProperties.H │ │ ├── pEqn.H │ │ ├── porousInterFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── UEqn.H │ │ │ ├── createPorousZones.H │ │ │ └── porousInterFoam.C │ │ └── setDeltaT.H │ ├── interPhaseChangeFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── createFields.H │ │ ├── interPhaseChangeDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── interPhaseChangeDyMFoam.C │ │ │ └── pEqn.H │ │ ├── interPhaseChangeFoam.C │ │ ├── pEqn.H │ │ └── phaseChangeTwoPhaseMixtures │ │ │ ├── Kunz │ │ │ ├── Kunz.C │ │ │ └── Kunz.H │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── Merkle │ │ │ ├── Merkle.C │ │ │ └── Merkle.H │ │ │ ├── SchnerrSauer │ │ │ ├── SchnerrSauer.C │ │ │ └── SchnerrSauer.H │ │ │ └── phaseChangeTwoPhaseMixture │ │ │ ├── newPhaseChangeTwoPhaseMixture.C │ │ │ ├── phaseChangeTwoPhaseMixture.C │ │ │ └── phaseChangeTwoPhaseMixture.H │ ├── multiphaseEulerFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── CourantNo.H │ │ ├── DDtU.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── TEqns.H │ │ ├── UEqns.H │ │ ├── correctPhi.H │ │ ├── createFields.H │ │ ├── createMRFZones.H │ │ ├── interfacialModels │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── dragModels │ │ │ │ ├── Ergun │ │ │ │ │ ├── Ergun.C │ │ │ │ │ └── Ergun.H │ │ │ │ ├── Gibilaro │ │ │ │ │ ├── Gibilaro.C │ │ │ │ │ └── Gibilaro.H │ │ │ │ ├── GidaspowErgunWenYu │ │ │ │ │ ├── GidaspowErgunWenYu.C │ │ │ │ │ └── GidaspowErgunWenYu.H │ │ │ │ ├── GidaspowSchillerNaumann │ │ │ │ │ ├── GidaspowSchillerNaumann.C │ │ │ │ │ └── GidaspowSchillerNaumann.H │ │ │ │ ├── SchillerNaumann │ │ │ │ │ ├── SchillerNaumann.C │ │ │ │ │ └── SchillerNaumann.H │ │ │ │ ├── SyamlalOBrien │ │ │ │ │ ├── SyamlalOBrien.C │ │ │ │ │ └── SyamlalOBrien.H │ │ │ │ ├── WenYu │ │ │ │ │ ├── WenYu.C │ │ │ │ │ └── WenYu.H │ │ │ │ ├── blended │ │ │ │ │ ├── blended.C │ │ │ │ │ └── blended.H │ │ │ │ ├── dragModel │ │ │ │ │ ├── dragModel.C │ │ │ │ │ ├── dragModel.H │ │ │ │ │ └── newDragModel.C │ │ │ │ └── interface │ │ │ │ │ ├── interface.C │ │ │ │ │ └── interface.H │ │ │ └── heatTransferModels │ │ │ │ ├── RanzMarshall │ │ │ │ ├── RanzMarshall.C │ │ │ │ └── RanzMarshall.H │ │ │ │ └── heatTransferModel │ │ │ │ ├── heatTransferModel.C │ │ │ │ ├── heatTransferModel.H │ │ │ │ └── newHeatTransferModel.C │ │ ├── mrfZonesCorrectBCs.H │ │ ├── multiphaseEulerFoam.C │ │ ├── multiphaseSystem │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── alphaContactAngle │ │ │ │ ├── alphaContactAngleFvPatchScalarField.C │ │ │ │ └── alphaContactAngleFvPatchScalarField.H │ │ │ ├── diameterModels │ │ │ │ ├── constantDiameter │ │ │ │ │ ├── constantDiameter.C │ │ │ │ │ └── constantDiameter.H │ │ │ │ ├── diameterModel │ │ │ │ │ ├── diameterModel.C │ │ │ │ │ ├── diameterModel.H │ │ │ │ │ └── newDiameterModel.C │ │ │ │ └── isothermalDiameter │ │ │ │ │ ├── isothermalDiameter.C │ │ │ │ │ └── isothermalDiameter.H │ │ │ ├── multiphaseSystem.C │ │ │ ├── multiphaseSystem.H │ │ │ └── phaseModel │ │ │ │ ├── phaseModel.C │ │ │ │ └── phaseModel.H │ │ ├── pEqn.H │ │ └── zonePhaseVolumes.H │ ├── multiphaseInterFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ ├── multiphaseInterDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── multiphaseInterDyMFoam.C │ │ ├── multiphaseInterFoam.C │ │ └── multiphaseMixture │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── alphaContactAngle │ │ │ ├── alphaContactAngleFvPatchScalarField.C │ │ │ └── alphaContactAngleFvPatchScalarField.H │ │ │ ├── multiphaseMixture.C │ │ │ ├── multiphaseMixture.H │ │ │ └── phase │ │ │ ├── phase.C │ │ │ └── phase.H │ ├── potentialFreeSurfaceFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── createFields.H │ │ ├── pEqn.H │ │ ├── potentialFreeSurfaceDyMFoam │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── correctPhi.H │ │ │ ├── createPghCorrTypes.H │ │ │ ├── pEqn.H │ │ │ └── potentialFreeSurfaceDyMFoam.C │ │ └── potentialFreeSurfaceFoam.C │ ├── twoLiquidMixingFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── alphaCourantNo.H │ │ ├── alphaDiffusionEqn.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── createFields.H │ │ ├── pEqn.H │ │ └── twoLiquidMixingFoam.C │ └── twoPhaseEulerFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── CourantNo.H │ │ ├── CourantNos.H │ │ ├── DDtU.H │ │ ├── EEqns.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── UEqns.H │ │ ├── createFields.H │ │ ├── createMRFZones.H │ │ ├── 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 │ │ │ │ └── newAspectRatioModel.C │ │ │ └── constantAspectRatio │ │ │ │ ├── constantAspectRatio.C │ │ │ │ └── constantAspectRatio.H │ │ ├── dragModels │ │ │ ├── Ergun │ │ │ │ ├── Ergun.C │ │ │ │ └── Ergun.H │ │ │ ├── Gibilaro │ │ │ │ ├── Gibilaro.C │ │ │ │ └── Gibilaro.H │ │ │ ├── GidaspowErgunWenYu │ │ │ │ ├── GidaspowErgunWenYu.C │ │ │ │ └── GidaspowErgunWenYu.H │ │ │ ├── GidaspowSchillerNaumann │ │ │ │ ├── GidaspowSchillerNaumann.C │ │ │ │ └── GidaspowSchillerNaumann.H │ │ │ ├── Lain │ │ │ │ ├── Lain.C │ │ │ │ └── Lain.H │ │ │ ├── SchillerNaumann │ │ │ │ ├── SchillerNaumann.C │ │ │ │ └── SchillerNaumann.H │ │ │ ├── SyamlalOBrien │ │ │ │ ├── SyamlalOBrien.C │ │ │ │ └── SyamlalOBrien.H │ │ │ ├── TomiyamaAnalytic │ │ │ │ ├── TomiyamaAnalytic.C │ │ │ │ └── TomiyamaAnalytic.H │ │ │ ├── TomiyamaCorrelated │ │ │ │ ├── TomiyamaCorrelated.C │ │ │ │ └── TomiyamaCorrelated.H │ │ │ ├── WenYu │ │ │ │ ├── WenYu.C │ │ │ │ └── WenYu.H │ │ │ ├── dragModel │ │ │ │ ├── dragModel.C │ │ │ │ ├── dragModel.H │ │ │ │ └── newDragModel.C │ │ │ └── segregated │ │ │ │ ├── segregated.C │ │ │ │ └── segregated.H │ │ ├── heatTransferModels │ │ │ ├── RanzMarshall │ │ │ │ ├── RanzMarshall.C │ │ │ │ └── RanzMarshall.H │ │ │ └── heatTransferModel │ │ │ │ ├── heatTransferModel.C │ │ │ │ ├── heatTransferModel.H │ │ │ │ └── newHeatTransferModel.C │ │ ├── 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 │ │ │ │ └── newLiftModel.C │ │ │ └── noLift │ │ │ │ ├── noLift.C │ │ │ │ └── noLift.H │ │ ├── swarmCorrections │ │ │ ├── TomiyamaSwarm │ │ │ │ ├── TomiyamaSwarm.C │ │ │ │ └── TomiyamaSwarm.H │ │ │ ├── noSwarm │ │ │ │ ├── noSwarm.C │ │ │ │ └── noSwarm.H │ │ │ └── swarmCorrection │ │ │ │ ├── newSwarmCorrection.C │ │ │ │ ├── swarmCorrection.C │ │ │ │ └── swarmCorrection.H │ │ ├── turbulentDispersionModels │ │ │ ├── Burns │ │ │ │ ├── Burns.C │ │ │ │ └── Burns.H │ │ │ ├── Gosman │ │ │ │ ├── Gosman.C │ │ │ │ └── Gosman.H │ │ │ ├── constantTurbulentDispersionCoefficient │ │ │ │ ├── constantTurbulentDispersionCoefficient.C │ │ │ │ └── constantTurbulentDispersionCoefficient.H │ │ │ ├── noTurbulentDispersion │ │ │ │ ├── noTurbulentDispersion.C │ │ │ │ └── noTurbulentDispersion.H │ │ │ └── turbulentDispersionModel │ │ │ │ ├── newTurbulentDispersionModel.C │ │ │ │ ├── turbulentDispersionModel.C │ │ │ │ └── turbulentDispersionModel.H │ │ ├── virtualMassModels │ │ │ ├── Lamb │ │ │ │ ├── Lamb.C │ │ │ │ └── Lamb.H │ │ │ ├── constantVirtualMassCoefficient │ │ │ │ ├── constantVirtualMassCoefficient.C │ │ │ │ └── constantVirtualMassCoefficient.H │ │ │ ├── noVirtualMass │ │ │ │ ├── noVirtualMass.C │ │ │ │ └── noVirtualMass.H │ │ │ └── virtualMassModel │ │ │ │ ├── newVirtualMassModel.C │ │ │ │ ├── virtualMassModel.C │ │ │ │ └── virtualMassModel.H │ │ ├── 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 │ │ │ ├── newWallLubricationModel.C │ │ │ ├── wallLubricationModel.C │ │ │ └── wallLubricationModel.H │ │ ├── pEqn.H │ │ ├── phaseCompressibleTurbulenceModels │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── kineticTheoryModels │ │ │ ├── conductivityModel │ │ │ │ ├── Gidaspow │ │ │ │ │ ├── GidaspowConductivity.C │ │ │ │ │ └── GidaspowConductivity.H │ │ │ │ ├── HrenyaSinclair │ │ │ │ │ ├── HrenyaSinclairConductivity.C │ │ │ │ │ └── HrenyaSinclairConductivity.H │ │ │ │ ├── Syamlal │ │ │ │ │ ├── SyamlalConductivity.C │ │ │ │ │ └── SyamlalConductivity.H │ │ │ │ └── conductivityModel │ │ │ │ │ ├── conductivityModel.C │ │ │ │ │ ├── conductivityModel.H │ │ │ │ │ └── newConductivityModel.C │ │ │ ├── derivedFvPatchFields │ │ │ │ ├── JohnsonJacksonParticleSlip │ │ │ │ │ ├── JohnsonJacksonParticleSlipFvPatchVectorField.C │ │ │ │ │ └── JohnsonJacksonParticleSlipFvPatchVectorField.H │ │ │ │ └── JohnsonJacksonParticleTheta │ │ │ │ │ ├── JohnsonJacksonParticleThetaFvPatchScalarField.C │ │ │ │ │ └── JohnsonJacksonParticleThetaFvPatchScalarField.H │ │ │ ├── frictionalStressModel │ │ │ │ ├── JohnsonJackson │ │ │ │ │ ├── JohnsonJacksonFrictionalStress.C │ │ │ │ │ └── JohnsonJacksonFrictionalStress.H │ │ │ │ ├── Schaeffer │ │ │ │ │ ├── SchaefferFrictionalStress.C │ │ │ │ │ └── SchaefferFrictionalStress.H │ │ │ │ └── frictionalStressModel │ │ │ │ │ ├── frictionalStressModel.C │ │ │ │ │ ├── frictionalStressModel.H │ │ │ │ │ └── newFrictionalStressModel.C │ │ │ ├── granularPressureModel │ │ │ │ ├── Lun │ │ │ │ │ ├── LunPressure.C │ │ │ │ │ └── LunPressure.H │ │ │ │ ├── SyamlalRogersOBrien │ │ │ │ │ ├── SyamlalRogersOBrienPressure.C │ │ │ │ │ └── SyamlalRogersOBrienPressure.H │ │ │ │ └── granularPressureModel │ │ │ │ │ ├── granularPressureModel.C │ │ │ │ │ ├── granularPressureModel.H │ │ │ │ │ └── newGranularPressureModel.C │ │ │ ├── kineticTheoryModel │ │ │ │ ├── kineticTheoryModel.C │ │ │ │ └── kineticTheoryModel.H │ │ │ ├── radialModel │ │ │ │ ├── CarnahanStarling │ │ │ │ │ ├── CarnahanStarlingRadial.C │ │ │ │ │ └── CarnahanStarlingRadial.H │ │ │ │ ├── LunSavage │ │ │ │ │ ├── LunSavageRadial.C │ │ │ │ │ └── LunSavageRadial.H │ │ │ │ ├── SinclairJackson │ │ │ │ │ ├── SinclairJacksonRadial.C │ │ │ │ │ └── SinclairJacksonRadial.H │ │ │ │ └── radialModel │ │ │ │ │ ├── newRadialModel.C │ │ │ │ │ ├── radialModel.C │ │ │ │ │ └── radialModel.H │ │ │ └── viscosityModel │ │ │ │ ├── Gidaspow │ │ │ │ ├── GidaspowViscosity.C │ │ │ │ └── GidaspowViscosity.H │ │ │ │ ├── HrenyaSinclair │ │ │ │ ├── HrenyaSinclairViscosity.C │ │ │ │ └── HrenyaSinclairViscosity.H │ │ │ │ ├── Syamlal │ │ │ │ ├── SyamlalViscosity.C │ │ │ │ └── SyamlalViscosity.H │ │ │ │ ├── none │ │ │ │ ├── noneViscosity.C │ │ │ │ └── noneViscosity.H │ │ │ │ └── viscosityModel │ │ │ │ ├── newViscosityModel.C │ │ │ │ ├── viscosityModel.C │ │ │ │ └── viscosityModel.H │ │ ├── phaseCompressibleTurbulenceModels.C │ │ └── phasePressureModel │ │ │ ├── phasePressureModel.C │ │ │ └── phasePressureModel.H │ │ ├── twoPhaseEulerFoam.C │ │ ├── twoPhaseSystem │ │ ├── BlendedInterfacialModel │ │ │ ├── BlendedInterfacialModel.C │ │ │ ├── BlendedInterfacialModel.H │ │ │ └── blendingMethods │ │ │ │ ├── blendingMethod │ │ │ │ ├── blendingMethod.C │ │ │ │ ├── blendingMethod.H │ │ │ │ └── newBlendingMethod.C │ │ │ │ ├── hyperbolic │ │ │ │ ├── hyperbolic.C │ │ │ │ └── hyperbolic.H │ │ │ │ ├── linear │ │ │ │ ├── linear.C │ │ │ │ └── linear.H │ │ │ │ └── noBlending │ │ │ │ ├── noBlending.C │ │ │ │ └── noBlending.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── diameterModels │ │ │ ├── IATE │ │ │ │ ├── IATE.C │ │ │ │ ├── IATE.H │ │ │ │ └── IATEsources │ │ │ │ │ ├── IATEsource │ │ │ │ │ ├── IATEsource.C │ │ │ │ │ └── IATEsource.H │ │ │ │ │ ├── dummy │ │ │ │ │ ├── dummy.C │ │ │ │ │ └── dummy.H │ │ │ │ │ ├── randomCoalescence │ │ │ │ │ ├── randomCoalescence.C │ │ │ │ │ └── randomCoalescence.H │ │ │ │ │ ├── turbulentBreakUp │ │ │ │ │ ├── turbulentBreakUp.C │ │ │ │ │ └── turbulentBreakUp.H │ │ │ │ │ └── wakeEntrainmentCoalescence │ │ │ │ │ ├── wakeEntrainmentCoalescence.C │ │ │ │ │ └── wakeEntrainmentCoalescence.H │ │ │ ├── constantDiameter │ │ │ │ ├── constantDiameter.C │ │ │ │ └── constantDiameter.H │ │ │ ├── diameterModel │ │ │ │ ├── diameterModel.C │ │ │ │ ├── diameterModel.H │ │ │ │ └── newDiameterModel.C │ │ │ └── isothermalDiameter │ │ │ │ ├── isothermalDiameter.C │ │ │ │ └── isothermalDiameter.H │ │ ├── phaseModel │ │ │ ├── phaseModel.C │ │ │ └── phaseModel.H │ │ ├── phasePair │ │ │ ├── orderedPhasePair │ │ │ │ ├── orderedPhasePair.C │ │ │ │ └── orderedPhasePair.H │ │ │ ├── phasePair │ │ │ │ ├── phasePair.C │ │ │ │ ├── phasePair.H │ │ │ │ └── phasePairI.H │ │ │ └── phasePairKey │ │ │ │ ├── phasePairKey.C │ │ │ │ └── phasePairKey.H │ │ ├── twoPhaseSystem.C │ │ ├── twoPhaseSystem.H │ │ └── twoPhaseSystemI.H │ │ └── write.H │ └── stressAnalysis │ ├── solidDisplacementFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── calculateStress.H │ ├── createFields.H │ ├── readMechanicalProperties.H │ ├── readSolidDisplacementFoamControls.H │ ├── readThermalProperties.H │ ├── solidDisplacementFoam.C │ └── tractionDisplacement │ │ ├── tractionDisplacementFvPatchVectorField.C │ │ └── tractionDisplacementFvPatchVectorField.H │ └── solidEquilibriumDisplacementFoam │ ├── Make │ ├── files │ └── options │ ├── calculateStress.H │ ├── createFields.H │ ├── kineticEnergyLimiter.H │ ├── readSteadyStressFoamControls.H │ ├── solidEquilibriumDisplacementFoam.C │ └── tractionDisplacementCorrection │ ├── tractionDisplacementCorrectionFvPatchVectorField.C │ └── tractionDisplacementCorrectionFvPatchVectorField.H ├── bin ├── engridFoam ├── findEmptyMake ├── finddep ├── foamAllHC ├── foamCheckJobs ├── foamCleanPath ├── foamCleanTutorials ├── foamClearPolyMesh ├── foamCopySettings ├── foamDistccd ├── foamEbrowse ├── foamEndJob ├── foamEtcFile ├── foamExec ├── foamGraphExecTime ├── foamGraphResKE ├── foamGraphResUVWP ├── foamInstallationTest ├── foamJob ├── foamLog ├── foamNew ├── foamNewCase ├── foamNewSource ├── foamNewTemplate ├── foamPack ├── foamPackBin ├── foamPackBinAll ├── foamPackDeps ├── foamPackDoxygen ├── foamPackMake ├── foamPackSource ├── foamPackThirdParty ├── foamPackThirdPartyBin ├── foamPackThirdPartyBinAll ├── foamPackThirdPartyDeps ├── foamPackThirdPartyMake ├── foamPrintJobs ├── foamProcessInfo ├── foamRunTutorials ├── foamSolverSweeps ├── foamSystemCheck ├── foamTags ├── foamUpdateCaseFileHeader ├── foamUpgradeTurbulenceProperties ├── mpirunDebug ├── org-html ├── org-latex ├── org-pdflatex ├── paraFoam ├── rmclassall ├── rmcore ├── rmdepall ├── rmdepold ├── rmoall ├── rm~all ├── tools │ ├── CleanFunctions │ ├── MakefileDirs │ ├── README │ ├── RunFunctions │ ├── doxyFilter │ ├── doxyFilter-ignore.awk │ ├── doxyFilter-table.awk │ ├── doxyFilter-top.awk │ ├── doxyFilter.awk │ ├── doxyFilter.sed │ ├── foamConfigurePaths │ ├── foamListBinDirs │ ├── foamListSourceFiles │ ├── foamListThirdPartyBinDirs │ ├── foamLog.db │ ├── gtagsrc │ ├── inlineReplace │ ├── org-batch │ ├── pre-commit-hook │ ├── pre-receive-hook │ ├── replaceAllShellSun │ └── scanpackages ├── touchapp ├── touchdep ├── touchlib └── toucho ├── etc ├── bashrc ├── caseDicts │ ├── foamyHexMeshDict │ ├── meshQualityDict │ └── setConstraintTypes ├── cellModels ├── codeTemplates │ ├── dynamicCode │ │ ├── FilterFunctionObjectTemplate.C │ │ ├── FilterFunctionObjectTemplate.H │ │ ├── IOfunctionObjectTemplate.H │ │ ├── codeStreamTemplate.C │ │ ├── codedFvOptionTemplate.C │ │ ├── codedFvOptionTemplate.H │ │ ├── fixedValueFvPatchFieldTemplate.C │ │ ├── fixedValueFvPatchFieldTemplate.H │ │ ├── fixedValuePointPatchFieldTemplate.C │ │ ├── fixedValuePointPatchFieldTemplate.H │ │ ├── functionObjectTemplate.C │ │ ├── functionObjectTemplate.H │ │ ├── mixedFvPatchFieldTemplate.C │ │ └── mixedFvPatchFieldTemplate.H │ ├── foamCommentStyles │ ├── foamScript │ ├── source │ │ ├── _Template.C │ │ ├── _Template.H │ │ ├── _TemplateApp.C │ │ ├── _TemplateI.H │ │ ├── _TemplateIO.C │ │ └── foamNewSource │ └── template │ │ ├── _TemplateTemplate.C │ │ ├── _TemplateTemplate.H │ │ ├── _TemplateTemplateI.H │ │ ├── _TemplateTemplateIO.C │ │ └── foamNewTemplate ├── config │ ├── CGAL.csh │ ├── CGAL.sh │ ├── README │ ├── aliases.csh │ ├── aliases.sh │ ├── ensight.csh │ ├── ensight.sh │ ├── example │ │ ├── compiler.csh │ │ ├── compiler.sh │ │ ├── openmpi.csh │ │ ├── openmpi.sh │ │ ├── paraview.csh │ │ ├── paraview.sh │ │ ├── prefs.csh │ │ └── prefs.sh │ ├── gperftools.sh │ ├── metis.sh │ ├── paraview.csh │ ├── paraview.sh │ ├── scotch.sh │ ├── settings.csh │ ├── settings.sh │ ├── unset.csh │ └── unset.sh ├── controlDict ├── cshrc └── thermoData │ ├── therm.dat │ └── thermoData ├── src ├── Allwmake ├── 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 │ │ └── subCycle │ │ │ └── subCycle.H │ ├── containers │ │ ├── Cache │ │ │ └── BasicCache.H │ │ ├── Circulators │ │ │ ├── CirculatorBase │ │ │ │ └── CirculatorBase.H │ │ │ ├── circulator │ │ │ │ ├── circulator.H │ │ │ │ └── circulatorI.H │ │ │ └── const_circulator │ │ │ │ ├── const_circulator.H │ │ │ │ └── const_circulatorI.H │ │ ├── Dictionaries │ │ │ ├── Dictionary │ │ │ │ ├── Dictionary.C │ │ │ │ └── Dictionary.H │ │ │ ├── DictionaryBase │ │ │ │ ├── DictionaryBase.C │ │ │ │ ├── DictionaryBase.H │ │ │ │ └── DictionaryBaseIO.C │ │ │ ├── PtrDictionary │ │ │ │ ├── PtrDictionary.C │ │ │ │ └── PtrDictionary.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 │ │ │ ├── Map │ │ │ │ └── Map.H │ │ │ ├── PtrMap │ │ │ │ └── PtrMap.H │ │ │ └── StaticHashTable │ │ │ │ ├── StaticHashTable.C │ │ │ │ ├── StaticHashTable.H │ │ │ │ ├── StaticHashTableCore.C │ │ │ │ ├── StaticHashTableI.H │ │ │ │ └── StaticHashTableIO.C │ │ ├── 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 │ │ │ ├── gpuIndirectList │ │ │ │ ├── gpuIndirectList.H │ │ │ │ ├── gpuIndirectListI.H │ │ │ │ └── gpuIndirectListIO.C │ │ │ └── gpuList │ │ │ │ ├── gpuList.C │ │ │ │ ├── gpuList.H │ │ │ │ ├── gpuListI.H │ │ │ │ ├── gpuListIO.C │ │ │ │ └── gpuLists.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 │ │ │ └── IOobjectWriteHeader.C │ │ ├── IOobjectList │ │ │ ├── IOobjectList.C │ │ │ └── IOobjectList.H │ │ ├── IOobjects │ │ │ ├── CompactIOField │ │ │ │ ├── CompactIOField.C │ │ │ │ └── CompactIOField.H │ │ │ ├── CompactIOList │ │ │ │ ├── CompactIOList.C │ │ │ │ └── CompactIOList.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 │ │ │ ├── gpuCompactIOList │ │ │ │ ├── gpuCompactIOList.C │ │ │ │ └── gpuCompactIOList.H │ │ │ └── gpuIOField │ │ │ │ ├── gpuIOField.C │ │ │ │ └── gpuIOField.H │ │ ├── IOstreams │ │ │ ├── Fstreams │ │ │ │ ├── IFstream.C │ │ │ │ ├── IFstream.H │ │ │ │ ├── OFstream.C │ │ │ │ └── OFstream.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 │ │ │ ├── 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 │ │ │ ├── findInstance.C │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── includeEntry │ │ │ │ │ ├── includeEntry.C │ │ │ │ │ └── includeEntry.H │ │ │ │ ├── includeIfPresentEntry │ │ │ │ │ ├── includeIfPresentEntry.C │ │ │ │ │ └── includeIfPresentEntry.H │ │ │ │ ├── inputModeEntry │ │ │ │ │ ├── inputModeEntry.C │ │ │ │ │ └── inputModeEntry.H │ │ │ │ └── removeEntry │ │ │ │ │ ├── removeEntry.C │ │ │ │ │ └── removeEntry.H │ │ │ └── primitiveEntry │ │ │ │ ├── primitiveEntry.C │ │ │ │ ├── primitiveEntry.H │ │ │ │ ├── primitiveEntryIO.C │ │ │ │ └── primitiveEntryTemplates.C │ │ ├── dynamicLibrary │ │ │ ├── codedBase │ │ │ │ ├── codedBase.C │ │ │ │ └── codedBase.H │ │ │ ├── dlLibraryTable │ │ │ │ ├── dlLibraryTable.C │ │ │ │ ├── dlLibraryTable.H │ │ │ │ └── dlLibraryTableTemplates.C │ │ │ └── dynamicCode │ │ │ │ ├── dynamicCode.C │ │ │ │ ├── dynamicCode.H │ │ │ │ ├── dynamicCodeContext.C │ │ │ │ └── dynamicCodeContext.H │ │ ├── error │ │ │ ├── CocoParserErrors.H │ │ │ ├── IOerror.C │ │ │ ├── StaticAssert.H │ │ │ ├── error.C │ │ │ ├── error.H │ │ │ ├── errorManip.H │ │ │ ├── messageStream.C │ │ │ └── messageStream.H │ │ ├── functionObjects │ │ │ ├── IOOutputFilter │ │ │ │ ├── IOOutputFilter.C │ │ │ │ └── IOOutputFilter.H │ │ │ ├── OutputFilterFunctionObject │ │ │ │ ├── OutputFilterFunctionObject.C │ │ │ │ └── OutputFilterFunctionObject.H │ │ │ ├── functionObject │ │ │ │ ├── functionObject.C │ │ │ │ ├── functionObject.H │ │ │ │ └── functionObjectsDoc.H │ │ │ ├── functionObjectFile │ │ │ │ ├── functionObjectFile.C │ │ │ │ ├── functionObjectFile.H │ │ │ │ └── functionObjectFileTemplates.C │ │ │ ├── functionObjectList │ │ │ │ ├── functionObjectList.C │ │ │ │ └── functionObjectList.H │ │ │ └── outputFilterOutputControl │ │ │ │ ├── outputFilterOutputControl.C │ │ │ │ └── outputFilterOutputControl.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 │ │ │ ├── globalFunctions │ │ │ │ ├── addToGlobalFunctionSelectionTable.H │ │ │ │ └── globalFunctionSelectionTables.H │ │ │ ├── memberFunctions │ │ │ │ ├── addToMemberFunctionSelectionTable.H │ │ │ │ └── memberFunctionSelectionTables.H │ │ │ └── staticMemberFunctions │ │ │ │ ├── addToStaticMemberFunctionSelectionTable.H │ │ │ │ └── staticMemberFunctionSelectionTables.H │ │ └── typeInfo │ │ │ ├── className.H │ │ │ ├── debugName.H │ │ │ └── typeInfo.H │ ├── device │ │ ├── DeviceConfig.C │ │ ├── DeviceConfig.H │ │ ├── DeviceConfigI.H │ │ ├── DeviceMemory.H │ │ ├── DeviceMemoryI.H │ │ ├── DeviceStream.H │ │ ├── DeviceStreamI.H │ │ ├── PageLockedBuffer.H │ │ ├── PageLockedBufferI.H │ │ ├── Textures.H │ │ └── TexturesI.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 │ │ │ │ ├── SubDimensionedField.H │ │ │ │ └── SubDimensionedFieldI.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 │ │ │ ├── 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 │ │ │ │ ├── FieldMapper.H │ │ │ │ ├── FieldReuseFunctions.H │ │ │ │ ├── SubField.H │ │ │ │ ├── SubFieldI.H │ │ │ │ ├── directFieldMapper.H │ │ │ │ └── undefFieldFunctionsM.H │ │ │ ├── complexFields │ │ │ │ ├── complexFields.C │ │ │ │ └── complexFields.H │ │ │ ├── diagTensorField │ │ │ │ ├── diagTensorField.C │ │ │ │ ├── diagTensorField.H │ │ │ │ ├── diagTensorFieldIOField.C │ │ │ │ ├── diagTensorFieldIOField.H │ │ │ │ ├── diagTensorIOField.C │ │ │ │ └── diagTensorIOField.H │ │ │ ├── fieldTypes.H │ │ │ ├── gpuField │ │ │ │ ├── gpuField.C │ │ │ │ ├── gpuField.H │ │ │ │ ├── gpuFieldCommonFunctions.C │ │ │ │ ├── gpuFieldCommonFunctionsM.H │ │ │ │ ├── gpuFieldFunctions.C │ │ │ │ ├── gpuFieldFunctions.H │ │ │ │ ├── gpuFieldFunctionsM.C │ │ │ │ ├── gpuFieldFunctionsM.H │ │ │ │ ├── gpuFieldM.H │ │ │ │ ├── gpuFieldMapper.H │ │ │ │ ├── gpuFieldReuseFunctions.H │ │ │ │ └── undefgpuFieldFunctionsM.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 │ │ │ ├── transformList │ │ │ │ ├── transformList.C │ │ │ │ └── transformList.H │ │ │ ├── triadField │ │ │ │ ├── triadField.C │ │ │ │ ├── triadField.H │ │ │ │ ├── triadIOField.C │ │ │ │ └── triadIOField.H │ │ │ ├── uniformField │ │ │ │ ├── UniformField.H │ │ │ │ └── UniformFieldI.H │ │ │ ├── vector2DField │ │ │ │ ├── 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 │ │ ├── UniformDimensionedFields │ │ │ ├── UniformDimensionedField.C │ │ │ ├── UniformDimensionedField.H │ │ │ ├── uniformDimensionedFields.C │ │ │ └── uniformDimensionedFields.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 │ │ │ ├── nonuniformTransformCyclic │ │ │ │ ├── nonuniformTransformCyclicPointPatchField.C │ │ │ │ ├── nonuniformTransformCyclicPointPatchField.H │ │ │ │ ├── nonuniformTransformCyclicPointPatchFields.C │ │ │ │ └── nonuniformTransformCyclicPointPatchFields.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 │ │ │ ├── timeVaryingUniformFixedValue │ │ │ │ ├── timeVaryingUniformFixedValuePointPatchField.C │ │ │ │ ├── timeVaryingUniformFixedValuePointPatchField.H │ │ │ │ ├── timeVaryingUniformFixedValuePointPatchFields.C │ │ │ │ └── timeVaryingUniformFixedValuePointPatchFields.H │ │ │ └── uniformFixedValue │ │ │ │ ├── uniformFixedValuePointPatchField.C │ │ │ │ ├── uniformFixedValuePointPatchField.H │ │ │ │ ├── uniformFixedValuePointPatchFields.C │ │ │ │ └── uniformFixedValuePointPatchFields.H │ │ │ └── pointPatchField │ │ │ ├── directPointPatchFieldMapper.H │ │ │ ├── pointConstraint │ │ │ ├── pointConstraint.C │ │ │ ├── pointConstraint.H │ │ │ └── pointConstraintI.H │ │ │ ├── pointPatchField.C │ │ │ ├── pointPatchField.H │ │ │ ├── pointPatchFieldFunctions.H │ │ │ ├── pointPatchFieldMapper.H │ │ │ ├── pointPatchFieldMapperPatchRef.H │ │ │ ├── pointPatchFieldNew.C │ │ │ ├── pointPatchFields.C │ │ │ ├── pointPatchFields.H │ │ │ └── pointPatchFieldsFwd.H │ ├── global │ │ ├── JobInfo │ │ │ ├── JobInfo.C │ │ │ └── JobInfo.H │ │ ├── argList │ │ │ ├── argList.C │ │ │ ├── argList.H │ │ │ ├── argListI.H │ │ │ └── parRun.H │ │ ├── clock │ │ │ ├── clock.C │ │ │ └── clock.H │ │ ├── compiler.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 │ │ │ └── universal │ │ │ │ ├── universalConstants.C │ │ │ │ └── universalConstants.H │ │ ├── debug │ │ │ ├── debug.C │ │ │ ├── debug.H │ │ │ ├── simpleObjectRegistry.H │ │ │ └── simpleRegIOobject.H │ │ ├── foamDoc.H │ │ ├── foamVersion.H │ │ ├── global.Cver │ │ ├── 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 │ │ ├── accessFoamNamespace.H │ │ ├── addDictOption.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 │ │ ├── setConstantMeshDictionaryIO.H │ │ ├── setRootCase.H │ │ ├── setSystemMeshDictionaryIO.H │ │ └── setSystemRunTimeDictionaryIO.H │ ├── interpolations │ │ ├── interpolatePointToCell │ │ │ ├── interpolatePointToCell.C │ │ │ └── interpolatePointToCell.H │ │ ├── interpolateSplineXY │ │ │ ├── interpolateSplineXY.C │ │ │ └── interpolateSplineXY.H │ │ ├── interpolateXY │ │ │ ├── interpolateXY.C │ │ │ └── interpolateXY.H │ │ ├── interpolation2DTable │ │ │ ├── interpolation2DTable.C │ │ │ └── interpolation2DTable.H │ │ ├── interpolationLookUpTable │ │ │ ├── interpolationLookUpTable.C │ │ │ ├── interpolationLookUpTable.H │ │ │ └── interpolationLookUpTableI.H │ │ ├── interpolationTable │ │ │ ├── interpolationTable.C │ │ │ ├── interpolationTable.H │ │ │ └── tableReaders │ │ │ │ ├── csv │ │ │ │ ├── csvTableReader.C │ │ │ │ ├── csvTableReader.H │ │ │ │ └── csvTableReaders.C │ │ │ │ ├── openFoam │ │ │ │ ├── openFoamTableReader.C │ │ │ │ ├── openFoamTableReader.H │ │ │ │ └── openFoamTableReaders.C │ │ │ │ ├── tableReader.C │ │ │ │ ├── tableReader.H │ │ │ │ ├── tableReaders.C │ │ │ │ └── tableReaders.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 │ │ └── uniformInterpolationTable │ │ │ ├── uniformInterpolationTable.C │ │ │ ├── uniformInterpolationTable.H │ │ │ └── uniformInterpolationTableI.H │ ├── matrices │ │ ├── DiagonalMatrix │ │ │ ├── DiagonalMatrix.C │ │ │ ├── DiagonalMatrix.H │ │ │ ├── gpuDiagonalMatrix.C │ │ │ └── gpuDiagonalMatrix.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 │ │ │ │ ├── Jacobi │ │ │ │ │ ├── TJacobiSmoother.C │ │ │ │ │ └── TJacobiSmoother.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 │ │ ├── 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 │ │ │ │ ├── lduAddressingFunctors.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 │ │ │ │ ├── lduMatrixFunctors.H │ │ │ │ ├── lduMatrixOperations.C │ │ │ │ ├── lduMatrixPreconditioner.C │ │ │ │ ├── lduMatrixSmoother.C │ │ │ │ ├── lduMatrixSolutionCache.C │ │ │ │ ├── lduMatrixSolutionCache.H │ │ │ │ ├── lduMatrixSolver.C │ │ │ │ ├── lduMatrixSolverFunctors.H │ │ │ │ ├── lduMatrixTemplates.C │ │ │ │ └── lduMatrixUpdateMatrixInterfaces.C │ │ │ ├── preconditioners │ │ │ │ ├── AINVPreconditioner │ │ │ │ │ ├── AINVPreconditioner.C │ │ │ │ │ ├── AINVPreconditioner.H │ │ │ │ │ └── AINVPreconditionerF.H │ │ │ │ ├── DICPreconditioner │ │ │ │ │ ├── DICPreconditioner.C │ │ │ │ │ └── DICPreconditioner.H │ │ │ │ ├── DILUPreconditioner │ │ │ │ │ ├── DILUPreconditioner.C │ │ │ │ │ └── DILUPreconditioner.H │ │ │ │ ├── diagonalPreconditioner │ │ │ │ │ ├── diagonalPreconditioner.C │ │ │ │ │ └── diagonalPreconditioner.H │ │ │ │ └── noPreconditioner │ │ │ │ │ ├── noPreconditioner.C │ │ │ │ │ └── noPreconditioner.H │ │ │ ├── smoothers │ │ │ │ ├── GaussSeidel │ │ │ │ │ ├── GaussSeidelSmoother.C │ │ │ │ │ └── GaussSeidelSmoother.H │ │ │ │ └── Jacobi │ │ │ │ │ ├── JacobiSmoother.C │ │ │ │ │ ├── JacobiSmoother.H │ │ │ │ │ └── JacobiSmootherF.H │ │ │ └── solvers │ │ │ │ ├── BICCG │ │ │ │ ├── BICCG.C │ │ │ │ └── BICCG.H │ │ │ │ ├── GAMG │ │ │ │ ├── GAMGAgglomerateF.H │ │ │ │ ├── GAMGAgglomerations │ │ │ │ │ ├── GAMGAgglomeration │ │ │ │ │ │ ├── GAMGAgglomerateLduAddressing.C │ │ │ │ │ │ ├── GAMGAgglomeration.C │ │ │ │ │ │ ├── GAMGAgglomeration.H │ │ │ │ │ │ ├── GAMGAgglomerationF.H │ │ │ │ │ │ └── GAMGAgglomerationTemplates.C │ │ │ │ │ ├── algebraicPairGAMGAgglomeration │ │ │ │ │ │ ├── algebraicPairGAMGAgglomeration.C │ │ │ │ │ │ └── algebraicPairGAMGAgglomeration.H │ │ │ │ │ ├── dummyAgglomeration │ │ │ │ │ │ ├── dummyAgglomeration.C │ │ │ │ │ │ └── dummyAgglomeration.H │ │ │ │ │ └── pairGAMGAgglomeration │ │ │ │ │ │ ├── pairGAMGAgglomerate.C │ │ │ │ │ │ ├── pairGAMGAgglomeration.C │ │ │ │ │ │ └── pairGAMGAgglomeration.H │ │ │ │ ├── GAMGSolver.C │ │ │ │ ├── GAMGSolver.H │ │ │ │ ├── GAMGSolverAgglomerateMatrix.C │ │ │ │ ├── GAMGSolverAgglomerateMatrixF.H │ │ │ │ ├── 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 │ │ │ │ │ ├── GAMGInterfaceF.H │ │ │ │ │ ├── GAMGInterfaceFunctors.H │ │ │ │ │ ├── GAMGInterfaceNew.C │ │ │ │ │ └── GAMGInterfaceTemplates.C │ │ │ │ │ ├── cyclicGAMGInterface │ │ │ │ │ ├── cyclicGAMGInterface.C │ │ │ │ │ └── cyclicGAMGInterface.H │ │ │ │ │ ├── processorCyclicGAMGInterface │ │ │ │ │ ├── processorCyclicGAMGInterface.C │ │ │ │ │ └── processorCyclicGAMGInterface.H │ │ │ │ │ └── processorGAMGInterface │ │ │ │ │ ├── processorGAMGInterface.C │ │ │ │ │ └── processorGAMGInterface.H │ │ │ │ ├── ICCG │ │ │ │ ├── ICCG.C │ │ │ │ └── ICCG.H │ │ │ │ ├── PBiCG │ │ │ │ ├── PBiCG.C │ │ │ │ └── PBiCG.H │ │ │ │ ├── PBiCGStab │ │ │ │ ├── PBiCGStab.C │ │ │ │ └── PBiCGStab.H │ │ │ │ ├── PCG │ │ │ │ ├── PCG.C │ │ │ │ └── PCG.H │ │ │ │ ├── PCGCache │ │ │ │ ├── PCGCache.C │ │ │ │ └── PCGCache.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 │ │ ├── Xfer │ │ │ ├── Xfer.H │ │ │ └── XferI.H │ │ ├── autoPtr │ │ │ ├── autoPtr.H │ │ │ └── autoPtrI.H │ │ ├── refCount │ │ │ └── refCount.H │ │ └── tmp │ │ │ ├── tmp.H │ │ │ └── tmpI.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 │ │ ├── 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 │ │ │ ├── cellData │ │ │ │ ├── cellData.C │ │ │ │ ├── cellData.H │ │ │ │ ├── cellDataI.H │ │ │ │ └── cellDataList.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 │ │ │ │ └── globalCellModeller.C │ │ │ ├── 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 │ │ │ │ ├── faceFunctors.H │ │ │ │ ├── faceI.H │ │ │ │ ├── faceIOList.C │ │ │ │ ├── faceIOList.H │ │ │ │ ├── faceIntersection.C │ │ │ │ ├── faceList.H │ │ │ │ ├── faceListFwd.H │ │ │ │ ├── faceTemplates.C │ │ │ │ └── oppositeFace.H │ │ │ ├── faceData │ │ │ │ ├── faceData.C │ │ │ │ ├── faceData.H │ │ │ │ ├── faceDataI.H │ │ │ │ ├── faceDataTemplates.C │ │ │ │ ├── facegpuList.H │ │ │ │ └── facegpuListFwd.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 │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ ├── nonuniformTransformCyclicPointPatch.C │ │ │ │ │ └── nonuniformTransformCyclicPointPatch.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── cyclicSlip │ │ │ │ │ │ ├── cyclicSlipPolyPatch.C │ │ │ │ │ │ └── cyclicSlipPolyPatch.H │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── emptyPolyPatch.C │ │ │ │ │ │ └── emptyPolyPatch.H │ │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ │ ├── nonuniformTransformCyclicPolyPatch.C │ │ │ │ │ │ └── nonuniformTransformCyclicPolyPatch.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 │ │ │ │ ├── ZoneMesh │ │ │ │ ├── ZoneMesh.C │ │ │ │ ├── ZoneMesh.H │ │ │ │ ├── cellZoneMesh.H │ │ │ │ ├── cellZoneMeshFwd.H │ │ │ │ ├── faceZoneMesh.H │ │ │ │ ├── faceZoneMeshFwd.H │ │ │ │ ├── pointZoneMesh.H │ │ │ │ └── pointZoneMeshFwd.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── tetPoints.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 │ │ ├── DiagTensor │ │ ├── DiagTensor.H │ │ ├── DiagTensorI.H │ │ └── diagTensor │ │ │ ├── diagTensor.C │ │ │ └── diagTensor.H │ │ ├── Pair │ │ ├── Pair.H │ │ └── labelPair.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 │ │ └── scalar │ │ │ ├── scalar.C │ │ │ └── scalar.H │ │ ├── SphericalTensor │ │ ├── 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 │ │ ├── labelTensor │ │ │ ├── labelTensor.C │ │ │ └── labelTensor.H │ │ ├── lists │ │ │ ├── sphericalTensorList.C │ │ │ ├── sphericalTensorList.H │ │ │ ├── symmTensorList.C │ │ │ ├── symmTensorList.H │ │ │ ├── tensorList.C │ │ │ └── tensorList.H │ │ └── tensor │ │ │ ├── tensor.C │ │ │ ├── tensor.H │ │ │ └── tensorI.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 │ │ ├── VectorSpaceM.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 │ │ ├── demandDrivenEntry │ │ ├── demandDrivenEntry.C │ │ ├── demandDrivenEntry.H │ │ └── demandDrivenEntryI.H │ │ ├── direction │ │ └── direction.H │ │ ├── functions │ │ ├── DataEntry │ │ │ ├── CSV │ │ │ │ ├── CSV.C │ │ │ │ ├── CSV.H │ │ │ │ └── CSVIO.C │ │ │ ├── CompatibilityConstant │ │ │ │ ├── CompatibilityConstant.C │ │ │ │ ├── CompatibilityConstant.H │ │ │ │ └── CompatibilityConstantIO.C │ │ │ ├── Constant │ │ │ │ ├── Constant.C │ │ │ │ ├── Constant.H │ │ │ │ └── ConstantIO.C │ │ │ ├── DataEntry │ │ │ │ ├── DataEntry.C │ │ │ │ ├── DataEntry.H │ │ │ │ ├── DataEntryFwd.H │ │ │ │ ├── DataEntryIO.C │ │ │ │ └── DataEntryNew.C │ │ │ ├── Table │ │ │ │ ├── Table.C │ │ │ │ ├── Table.H │ │ │ │ ├── TableBase.C │ │ │ │ ├── TableBase.H │ │ │ │ ├── TableBaseIO.C │ │ │ │ └── TableIO.C │ │ │ ├── TableFile │ │ │ │ ├── TableFile.C │ │ │ │ ├── TableFile.H │ │ │ │ └── TableFileIO.C │ │ │ ├── makeDataEntries.C │ │ │ └── polynomial │ │ │ │ ├── polynomial.C │ │ │ │ ├── polynomial.H │ │ │ │ └── polynomialIO.C │ │ ├── Polynomial │ │ │ ├── Polynomial.C │ │ │ ├── Polynomial.H │ │ │ ├── PolynomialI.H │ │ │ ├── PolynomialIO.C │ │ │ ├── polynomialFunction.C │ │ │ └── polynomialFunction.H │ │ └── TimeDataEntry │ │ │ └── TimeDataEntry │ │ │ ├── TimeDataEntry.C │ │ │ └── TimeDataEntry.H │ │ ├── globalIndexAndTransform │ │ ├── globalIndexAndTransform.C │ │ ├── globalIndexAndTransform.H │ │ ├── globalIndexAndTransformI.H │ │ └── vectorTensorTransform │ │ │ ├── vectorTensorTransform.C │ │ │ ├── vectorTensorTransform.H │ │ │ ├── vectorTensorTransformI.H │ │ │ └── vectorTensorTransformTemplates.C │ │ ├── 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 │ │ ├── label │ │ │ ├── label.C │ │ │ └── label.H │ │ ├── lists │ │ │ ├── labelIOList.C │ │ │ ├── labelIOList.H │ │ │ ├── labelList.H │ │ │ ├── labelListIOList.C │ │ │ └── labelListIOList.H │ │ ├── long │ │ │ ├── long.H │ │ │ └── longIO.C │ │ ├── longLong │ │ │ ├── longLong.H │ │ │ └── longLongIO.C │ │ ├── uLabel │ │ │ ├── uLabel.C │ │ │ └── uLabel.H │ │ ├── uint │ │ │ ├── uint.H │ │ │ └── uintIO.C │ │ └── ulong │ │ │ ├── ulong.H │ │ │ └── ulongIO.C │ │ ├── nil │ │ └── nil.H │ │ ├── nullObject │ │ ├── nullObject.C │ │ ├── nullObject.H │ │ └── nullObjectI.H │ │ ├── one │ │ ├── one.H │ │ └── oneI.H │ │ ├── ops │ │ └── ops.H │ │ ├── pTraits │ │ └── pTraits.H │ │ ├── quaternion │ │ ├── quaternion.C │ │ ├── quaternion.H │ │ └── quaternionI.H │ │ ├── random │ │ ├── Random │ │ │ ├── Random.C │ │ │ └── Random.H │ │ └── cachedRandom │ │ │ ├── cachedRandom.C │ │ │ ├── cachedRandom.H │ │ │ ├── cachedRandomI.H │ │ │ └── cachedRandomTemplates.C │ │ ├── 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 │ │ ├── strings │ │ ├── fileName │ │ │ ├── fileName.C │ │ │ ├── fileName.H │ │ │ ├── fileNameI.H │ │ │ └── fileNameIO.C │ │ ├── keyType │ │ │ ├── keyType.C │ │ │ ├── keyType.H │ │ │ └── keyTypeI.H │ │ ├── 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 │ │ ├── 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 │ │ ├── triad │ │ ├── triad.C │ │ ├── triad.H │ │ └── triadI.H │ │ └── zero │ │ ├── zero.H │ │ └── zeroI.H ├── Pstream │ ├── Allwmake │ ├── dummy │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ └── UPstream.C │ ├── gamma │ │ ├── IPread.C │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── OPwrite.C │ │ ├── Pstream.C │ │ ├── PstreamGlobals.C │ │ └── PstreamGlobals.H │ └── mpi │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── PstreamGlobals.C │ │ ├── PstreamGlobals.H │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ ├── UPstream.C │ │ ├── allReduce.H │ │ └── allReduceTemplates.C ├── TurbulenceModels │ ├── Allwmake │ ├── compressible │ │ ├── CompressibleTurbulenceModel │ │ │ ├── CompressibleTurbulenceModel.C │ │ │ └── CompressibleTurbulenceModel.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── RAS │ │ │ └── buoyantKEpsilon │ │ │ │ ├── buoyantKEpsilon.C │ │ │ │ └── buoyantKEpsilon.H │ │ ├── compressibleTurbulenceModel.C │ │ ├── compressibleTurbulenceModel.H │ │ └── compressibleTurbulenceModels.C │ ├── incompressible │ │ ├── IncompressibleTurbulenceModel │ │ │ ├── IncompressibleTurbulenceModel.C │ │ │ └── IncompressibleTurbulenceModel.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── incompressibleTurbulenceModel.C │ │ ├── incompressibleTurbulenceModel.H │ │ └── incompressibleTurbulenceModels.C │ ├── phaseCompressible │ │ ├── LES │ │ │ ├── Niceno │ │ │ │ ├── NicenoKEqn.C │ │ │ │ └── NicenoKEqn.H │ │ │ ├── SmagorinskyZhang │ │ │ │ ├── SmagorinskyZhang.C │ │ │ │ └── SmagorinskyZhang.H │ │ │ └── continuousGasKEqn │ │ │ │ ├── continuousGasKEqn.C │ │ │ │ └── continuousGasKEqn.H │ │ ├── PhaseCompressibleTurbulenceModel │ │ │ ├── PhaseCompressibleTurbulenceModel.C │ │ │ └── PhaseCompressibleTurbulenceModel.H │ │ └── RAS │ │ │ ├── LaheyKEpsilon │ │ │ ├── LaheyKEpsilon.C │ │ │ └── LaheyKEpsilon.H │ │ │ ├── continuousGasKEpsilon │ │ │ ├── continuousGasKEpsilon.C │ │ │ └── continuousGasKEpsilon.H │ │ │ └── mixtureKEpsilon │ │ │ ├── mixtureKEpsilon.C │ │ │ └── mixtureKEpsilon.H │ ├── phaseIncompressible │ │ └── PhaseIncompressibleTurbulenceModel │ │ │ ├── PhaseIncompressibleTurbulenceModel.C │ │ │ └── PhaseIncompressibleTurbulenceModel.H │ └── turbulenceModels │ │ ├── LES │ │ ├── LESModel │ │ │ ├── LESModel.C │ │ │ └── LESModel.H │ │ ├── LESdeltas │ │ │ ├── LESdelta │ │ │ │ ├── LESdelta.C │ │ │ │ └── LESdelta.H │ │ │ ├── PrandtlDelta │ │ │ │ ├── PrandtlDelta.C │ │ │ │ └── PrandtlDelta.H │ │ │ └── cubeRootVolDelta │ │ │ │ ├── cubeRootVolDelta.C │ │ │ │ └── cubeRootVolDelta.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 │ │ ├── eddyViscosity │ │ │ ├── LESeddyViscosity.C │ │ │ └── LESeddyViscosity.H │ │ └── kEqn │ │ │ ├── kEqn.C │ │ │ └── kEqn.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── RAS │ │ ├── RASModel │ │ │ ├── RASModel.C │ │ │ └── RASModel.H │ │ ├── derivedFvPatchFields │ │ │ ├── atmBoundaryLayerInletEpsilon │ │ │ │ ├── atmBoundaryLayerInletEpsilonFvPatchScalarField.C │ │ │ │ └── atmBoundaryLayerInletEpsilonFvPatchScalarField.H │ │ │ ├── atmBoundaryLayerInletVelocity │ │ │ │ ├── atmBoundaryLayerInletVelocityFvPatchVectorField.C │ │ │ │ └── atmBoundaryLayerInletVelocityFvPatchVectorField.H │ │ │ ├── doc │ │ │ │ └── incompressibleRASBoundaryConditionsDoc.H │ │ │ ├── turbulentMixingLengthDissipationRateInlet │ │ │ │ ├── turbulentMixingLengthDissipationRateInletFvPatchScalarField.C │ │ │ │ └── turbulentMixingLengthDissipationRateInletFvPatchScalarField.H │ │ │ ├── turbulentMixingLengthFrequencyInlet │ │ │ │ ├── turbulentMixingLengthFrequencyInletFvPatchScalarField.C │ │ │ │ └── turbulentMixingLengthFrequencyInletFvPatchScalarField.H │ │ │ └── wallFunctions │ │ │ │ ├── epsilonWallFunctions │ │ │ │ ├── epsilonLowReWallFunction │ │ │ │ │ ├── epsilonLowReWallFunctionFvPatchScalarField.C │ │ │ │ │ └── epsilonLowReWallFunctionFvPatchScalarField.H │ │ │ │ └── epsilonWallFunction │ │ │ │ │ ├── epsilonWallFunctionFvPatchScalarField.C │ │ │ │ │ └── epsilonWallFunctionFvPatchScalarField.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 │ │ │ │ ├── nutkAtmRoughWallFunction │ │ │ │ │ ├── nutkAtmRoughWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutkAtmRoughWallFunctionFvPatchScalarField.H │ │ │ │ ├── nutkRoughWallFunction │ │ │ │ │ ├── nutkRoughWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutkRoughWallFunctionFvPatchScalarField.H │ │ │ │ └── nutkWallFunction │ │ │ │ │ ├── nutkWallFunctionFvPatchScalarField.C │ │ │ │ │ └── nutkWallFunctionFvPatchScalarField.H │ │ │ │ └── omegaWallFunctions │ │ │ │ └── omegaWallFunction │ │ │ │ ├── omegaWallFunctionFvPatchScalarField.C │ │ │ │ └── omegaWallFunctionFvPatchScalarField.H │ │ └── kEpsilon │ │ │ ├── kEpsilon.C │ │ │ └── kEpsilon.H │ │ ├── TurbulenceModel │ │ ├── TurbulenceModel.C │ │ └── TurbulenceModel.H │ │ ├── derivedFvPatchFields │ │ ├── fixedShearStress │ │ │ ├── fixedShearStressFvPatchVectorField.C │ │ │ └── fixedShearStressFvPatchVectorField.H │ │ └── porousBafflePressure │ │ │ ├── porousBafflePressureFvPatchField.C │ │ │ ├── porousBafflePressureFvPatchField.H │ │ │ └── porousBafflePressureFvPatchFieldFwd.H │ │ ├── eddyViscosity │ │ ├── eddyViscosity.C │ │ └── eddyViscosity.H │ │ ├── laminar │ │ ├── laminar.C │ │ └── laminar.H │ │ ├── makeTurbulenceModel.H │ │ ├── turbulenceModel.C │ │ ├── turbulenceModel.H │ │ └── turbulenceModelDoc.H ├── dynamicFvMesh │ ├── Make │ │ ├── files │ │ └── options │ ├── dynamicFvMesh │ │ ├── dynamicFvMesh.C │ │ ├── dynamicFvMesh.H │ │ └── dynamicFvMeshNew.C │ ├── dynamicInkJetFvMesh │ │ ├── dynamicInkJetFvMesh.C │ │ └── dynamicInkJetFvMesh.H │ ├── dynamicMotionSolverFvMesh │ │ ├── dynamicMotionSolverFvMesh.C │ │ └── dynamicMotionSolverFvMesh.H │ ├── dynamicRefineFvMesh │ │ ├── dynamicMeshDict │ │ ├── dynamicRefineFvMesh.C │ │ └── dynamicRefineFvMesh.H │ ├── include │ │ ├── createDynamicFvMesh.H │ │ ├── createNamedDynamicFvMesh.H │ │ └── meshCourantNo.H │ ├── motionSolver │ │ ├── componentDisplacement │ │ │ ├── componentDisplacementMotionSolver.C │ │ │ └── componentDisplacementMotionSolver.H │ │ ├── componentVelocity │ │ │ ├── componentVelocityMotionSolver.C │ │ │ └── componentVelocityMotionSolver.H │ │ ├── displacement │ │ │ ├── displacementMotionSolver.C │ │ │ └── displacementMotionSolver.H │ │ ├── motionSolver │ │ │ ├── motionSolver.C │ │ │ └── motionSolver.H │ │ └── velocity │ │ │ ├── velocityMotionSolver.C │ │ │ └── velocityMotionSolver.H │ ├── solidBodyMotionFvMesh │ │ ├── multiSolidBodyMotionFvMesh.C │ │ ├── multiSolidBodyMotionFvMesh.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 │ │ │ ├── solidBodyMotionFunction │ │ │ │ ├── solidBodyMotionFunction.C │ │ │ │ ├── solidBodyMotionFunction.H │ │ │ │ └── solidBodyMotionFunctionNew.C │ │ │ └── tabulated6DoFMotion │ │ │ │ ├── tabulated6DoFMotion.C │ │ │ │ └── tabulated6DoFMotion.H │ │ ├── solidBodyMotionFvMesh.C │ │ └── solidBodyMotionFvMesh.H │ └── staticFvMesh │ │ ├── staticFvMesh.C │ │ └── staticFvMesh.H ├── edgeMesh │ ├── Make │ │ ├── files │ │ └── options │ ├── 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 ├── fileFormats │ ├── Make │ │ ├── files │ │ └── options │ ├── coordSet │ │ ├── coordSet.C │ │ └── coordSet.H │ ├── nas │ │ ├── NASCore.C │ │ └── NASCore.H │ ├── sampledSetWriters │ │ ├── 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 │ │ ├── vtk │ │ │ ├── vtkSetWriter.C │ │ │ ├── vtkSetWriter.H │ │ │ └── vtkSetWriterRunTime.C │ │ ├── writer.C │ │ ├── writer.H │ │ ├── writers.C │ │ ├── writers.H │ │ └── xmgrace │ │ │ ├── xmgraceSetWriter.C │ │ │ ├── xmgraceSetWriter.H │ │ │ └── xmgraceSetWriterRunTime.C │ ├── starcd │ │ ├── STARCDCore.C │ │ └── STARCDCore.H │ └── vtk │ │ ├── vtkUnstructuredReader.C │ │ ├── vtkUnstructuredReader.H │ │ └── vtkUnstructuredReaderTemplates.C ├── finiteVolume │ ├── Make │ │ ├── files │ │ └── options │ ├── cfdTools │ │ ├── compressible │ │ │ ├── compressibleContinuityErrs.H │ │ │ ├── compressibleCourantNo.H │ │ │ ├── compressibleCreatePhi.H │ │ │ ├── createRhoUf.H │ │ │ └── rhoEqn.H │ │ ├── general │ │ │ ├── MRF │ │ │ │ ├── IOMRFZoneList.C │ │ │ │ ├── IOMRFZoneList.H │ │ │ │ ├── MRFZone.C │ │ │ │ ├── MRFZone.H │ │ │ │ ├── MRFZoneI.H │ │ │ │ ├── MRFZoneList.C │ │ │ │ ├── MRFZoneList.H │ │ │ │ └── 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 │ │ │ ├── adjustPhi │ │ │ │ ├── adjustPhi.C │ │ │ │ └── adjustPhi.H │ │ │ ├── bound │ │ │ │ ├── bound.C │ │ │ │ └── bound.H │ │ │ ├── findRefCell │ │ │ │ ├── findRefCell.C │ │ │ │ └── findRefCell.H │ │ │ ├── include │ │ │ │ ├── alphaControls.H │ │ │ │ ├── checkPatchFieldTypes.H │ │ │ │ ├── createPcorrTypes.H │ │ │ │ ├── createPrghCorrTypes.H │ │ │ │ ├── fvCFD.H │ │ │ │ ├── initContinuityErrs.H │ │ │ │ ├── readGravitationalAcceleration.H │ │ │ │ ├── readPISOControls.H │ │ │ │ ├── readTimeControls.H │ │ │ │ ├── setDeltaT.H │ │ │ │ ├── setInitialDeltaT.H │ │ │ │ └── volContinuity.H │ │ │ ├── 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 │ │ │ └── solutionControl │ │ │ │ ├── pimpleControl │ │ │ │ ├── pimpleControl.C │ │ │ │ ├── pimpleControl.H │ │ │ │ └── pimpleControlI.H │ │ │ │ ├── simpleControl │ │ │ │ ├── simpleControl.C │ │ │ │ └── simpleControl.H │ │ │ │ └── solutionControl │ │ │ │ ├── solutionControl.C │ │ │ │ ├── solutionControl.H │ │ │ │ ├── solutionControlI.H │ │ │ │ └── solutionControlTemplates.C │ │ └── incompressible │ │ │ ├── CourantNo.H │ │ │ ├── continuityErrs.H │ │ │ ├── createPhi.H │ │ │ ├── createPhiv.H │ │ │ ├── createUf.H │ │ │ ├── movingMeshContinuityErrs.H │ │ │ └── movingMeshRhoUContinuityErrs.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 │ │ │ │ ├── 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 │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvPatchField.C │ │ │ │ │ ├── cyclicSlipFvPatchField.H │ │ │ │ │ ├── cyclicSlipFvPatchFields.C │ │ │ │ │ ├── cyclicSlipFvPatchFields.H │ │ │ │ │ └── cyclicSlipFvPatchFieldsFwd.H │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvPatchField.C │ │ │ │ │ ├── emptyFvPatchField.H │ │ │ │ │ ├── emptyFvPatchFields.C │ │ │ │ │ ├── emptyFvPatchFields.H │ │ │ │ │ └── emptyFvPatchFieldsFwd.H │ │ │ │ ├── jumpCyclic │ │ │ │ │ ├── jumpCyclicFvPatchField.C │ │ │ │ │ ├── jumpCyclicFvPatchField.H │ │ │ │ │ ├── jumpCyclicFvPatchFields.C │ │ │ │ │ ├── jumpCyclicFvPatchFields.H │ │ │ │ │ └── jumpCyclicFvPatchFieldsFwd.H │ │ │ │ ├── jumpCyclicAMI │ │ │ │ │ ├── jumpCyclicAMIFvPatchField.C │ │ │ │ │ ├── jumpCyclicAMIFvPatchField.H │ │ │ │ │ ├── jumpCyclicAMIFvPatchFields.C │ │ │ │ │ ├── jumpCyclicAMIFvPatchFields.H │ │ │ │ │ └── jumpCyclicAMIFvPatchFieldsFwd.H │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchField.C │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchField.H │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchFields.C │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchFields.H │ │ │ │ │ └── nonuniformTransformCyclicFvPatchFieldsFwd.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 │ │ │ │ ├── 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 │ │ │ │ ├── externalCoupledMixed │ │ │ │ │ ├── externalCoupledMixedFvPatchField.C │ │ │ │ │ ├── externalCoupledMixedFvPatchField.H │ │ │ │ │ ├── externalCoupledMixedFvPatchFields.C │ │ │ │ │ ├── externalCoupledMixedFvPatchFields.H │ │ │ │ │ └── externalCoupledMixedFvPatchFieldsFwd.H │ │ │ │ ├── fan │ │ │ │ │ ├── fanFvPatchField.C │ │ │ │ │ ├── fanFvPatchField.H │ │ │ │ │ ├── fanFvPatchFields.C │ │ │ │ │ ├── fanFvPatchFields.H │ │ │ │ │ └── fanFvPatchFieldsFwd.H │ │ │ │ ├── fanPressure │ │ │ │ │ ├── fanPressureFvPatchScalarField.C │ │ │ │ │ └── fanPressureFvPatchScalarField.H │ │ │ │ ├── fixedFluxPressure │ │ │ │ │ ├── fixedFluxPressureFvPatchScalarField.C │ │ │ │ │ └── fixedFluxPressureFvPatchScalarField.H │ │ │ │ ├── fixedInternalValueFvPatchField │ │ │ │ │ ├── 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 │ │ │ │ ├── fixedNormalInletOutletVelocity │ │ │ │ │ ├── fixedNormalInletOutletVelocityFvPatchVectorField.C │ │ │ │ │ └── fixedNormalInletOutletVelocityFvPatchVectorField.H │ │ │ │ ├── fixedNormalSlip │ │ │ │ │ ├── fixedNormalSlipFvPatchField.C │ │ │ │ │ ├── fixedNormalSlipFvPatchField.H │ │ │ │ │ ├── fixedNormalSlipFvPatchFields.C │ │ │ │ │ ├── fixedNormalSlipFvPatchFields.H │ │ │ │ │ └── fixedNormalSlipFvPatchFieldsFwd.H │ │ │ │ ├── fixedPressureCompressibleDensity │ │ │ │ │ ├── fixedPressureCompressibleDensityFvPatchScalarField.C │ │ │ │ │ └── fixedPressureCompressibleDensityFvPatchScalarField.H │ │ │ │ ├── flowRateInletVelocity │ │ │ │ │ ├── flowRateInletVelocityFvPatchVectorField.C │ │ │ │ │ └── flowRateInletVelocityFvPatchVectorField.H │ │ │ │ ├── fluxCorrectedVelocity │ │ │ │ │ ├── fluxCorrectedVelocityFvPatchVectorField.C │ │ │ │ │ └── fluxCorrectedVelocityFvPatchVectorField.H │ │ │ │ ├── freestream │ │ │ │ │ ├── freestreamFvPatchField.C │ │ │ │ │ ├── freestreamFvPatchField.H │ │ │ │ │ ├── freestreamFvPatchFields.C │ │ │ │ │ ├── freestreamFvPatchFields.H │ │ │ │ │ └── freestreamFvPatchFieldsFwd.H │ │ │ │ ├── freestreamPressure │ │ │ │ │ ├── freestreamPressureFvPatchScalarField.C │ │ │ │ │ └── freestreamPressureFvPatchScalarField.H │ │ │ │ ├── inletOutlet │ │ │ │ │ ├── inletOutletFvPatchField.C │ │ │ │ │ ├── inletOutletFvPatchField.H │ │ │ │ │ ├── inletOutletFvPatchFields.C │ │ │ │ │ ├── inletOutletFvPatchFields.H │ │ │ │ │ └── inletOutletFvPatchFieldsFwd.H │ │ │ │ ├── inletOutletTotalTemperature │ │ │ │ │ ├── inletOutletTotalTemperatureFvPatchScalarField.C │ │ │ │ │ └── inletOutletTotalTemperatureFvPatchScalarField.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 │ │ │ │ ├── mappedFixedPushedInternalValue │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchField.C │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchField.H │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchFields.C │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchFields.H │ │ │ │ │ └── mappedFixedPushedInternalValueFvPatchFieldsFwd.H │ │ │ │ ├── mappedFixedValue │ │ │ │ │ ├── mappedFixedValueFvPatchField.C │ │ │ │ │ ├── mappedFixedValueFvPatchField.H │ │ │ │ │ ├── mappedFixedValueFvPatchFields.C │ │ │ │ │ ├── mappedFixedValueFvPatchFields.H │ │ │ │ │ └── mappedFixedValueFvPatchFieldsFwd.H │ │ │ │ ├── mappedFlowRate │ │ │ │ │ ├── mappedFlowRateFvPatchVectorField.C │ │ │ │ │ └── mappedFlowRateFvPatchVectorField.H │ │ │ │ ├── mappedVelocityFluxFixedValue │ │ │ │ │ ├── mappedVelocityFluxFixedValueFvPatchField.C │ │ │ │ │ └── mappedVelocityFluxFixedValueFvPatchField.H │ │ │ │ ├── movingWallVelocity │ │ │ │ │ ├── movingWallVelocityFvPatchVectorField.C │ │ │ │ │ └── movingWallVelocityFvPatchVectorField.H │ │ │ │ ├── oscillatingFixedValue │ │ │ │ │ ├── oscillatingFixedValueFvPatchField.C │ │ │ │ │ ├── oscillatingFixedValueFvPatchField.H │ │ │ │ │ ├── oscillatingFixedValueFvPatchFields.C │ │ │ │ │ ├── oscillatingFixedValueFvPatchFields.H │ │ │ │ │ └── oscillatingFixedValueFvPatchFieldsFwd.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 │ │ │ │ ├── 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 │ │ │ │ ├── prghPressure │ │ │ │ │ ├── prghPressureFvPatchScalarField.C │ │ │ │ │ └── prghPressureFvPatchScalarField.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 │ │ │ │ ├── swirlFlowRateInletVelocity │ │ │ │ │ ├── swirlFlowRateInletVelocityFvPatchVectorField.C │ │ │ │ │ └── swirlFlowRateInletVelocityFvPatchVectorField.H │ │ │ │ ├── syringePressure │ │ │ │ │ ├── syringePressureFvPatchScalarField.C │ │ │ │ │ └── syringePressureFvPatchScalarField.H │ │ │ │ ├── timeVaryingMappedFixedValue │ │ │ │ │ ├── AverageIOField.C │ │ │ │ │ ├── AverageIOField.H │ │ │ │ │ ├── AverageIOFields.C │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchField.C │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchField.H │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFields.C │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFields.H │ │ │ │ │ └── timeVaryingMappedFixedValueFvPatchFieldsFwd.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 │ │ │ ├── doc │ │ │ │ ├── boundaryConditions.dox │ │ │ │ └── fvPatchFieldDoc.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.C │ │ │ │ │ ├── cyclicACMIFvsPatchField.H │ │ │ │ │ ├── cyclicACMIFvsPatchFields.C │ │ │ │ │ ├── cyclicACMIFvsPatchFields.H │ │ │ │ │ └── cyclicACMIFvsPatchFieldsFwd.H │ │ │ │ ├── cyclicAMI │ │ │ │ │ ├── cyclicAMIFvsPatchField.C │ │ │ │ │ ├── cyclicAMIFvsPatchField.H │ │ │ │ │ ├── cyclicAMIFvsPatchFields.C │ │ │ │ │ ├── cyclicAMIFvsPatchFields.H │ │ │ │ │ └── cyclicAMIFvsPatchFieldsFwd.H │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvsPatchField.C │ │ │ │ │ ├── cyclicSlipFvsPatchField.H │ │ │ │ │ ├── cyclicSlipFvsPatchFields.C │ │ │ │ │ ├── cyclicSlipFvsPatchFields.H │ │ │ │ │ └── cyclicSlipFvsPatchFieldsFwd.H │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvsPatchField.C │ │ │ │ │ ├── emptyFvsPatchField.H │ │ │ │ │ ├── emptyFvsPatchFields.C │ │ │ │ │ ├── emptyFvsPatchFields.H │ │ │ │ │ └── emptyFvsPatchFieldsFwd.H │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchField.C │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchField.H │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchFields.C │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchFields.H │ │ │ │ │ └── nonuniformTransformCyclicFvsPatchFieldsFwd.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 │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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.H │ │ │ │ └── cellLimitedGrads.C │ │ │ │ ├── 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 │ │ │ ├── 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 │ ├── fvMatrices │ │ ├── fvMatrices.C │ │ ├── fvMatrices.H │ │ ├── fvMatricesFwd.H │ │ ├── fvMatrix │ │ │ ├── fvMatrix.C │ │ │ ├── fvMatrix.H │ │ │ └── fvMatrixSolve.C │ │ ├── fvMatrixCache │ │ │ ├── fvMatrixCache.C │ │ │ └── fvMatrixCache.H │ │ ├── fvScalarMatrix │ │ │ ├── fvScalarMatrix.C │ │ │ └── fvScalarMatrix.H │ │ └── solvers │ │ │ ├── GAMGSymSolver │ │ │ └── GAMGAgglomerations │ │ │ │ └── faceAreaPairGAMGAgglomeration │ │ │ │ ├── faceAreaPairGAMGAgglomeration.C │ │ │ │ └── faceAreaPairGAMGAgglomeration.H │ │ │ └── MULES │ │ │ ├── CMULES.C │ │ │ ├── CMULES.H │ │ │ ├── CMULESTemplates.C │ │ │ ├── IMULES.C │ │ │ ├── IMULES.H │ │ │ ├── IMULESTemplates.C │ │ │ ├── MULES.C │ │ │ ├── MULES.H │ │ │ ├── MULESFunctors.H │ │ │ └── MULESTemplates.C │ ├── fvMesh │ │ ├── fvBoundaryMesh │ │ │ ├── fvBoundaryMesh.C │ │ │ └── fvBoundaryMesh.H │ │ ├── fvMesh.C │ │ ├── fvMesh.H │ │ ├── fvMeshGeometry.C │ │ ├── fvMeshLduAddressing.H │ │ ├── fvMeshMapper │ │ │ ├── fvBoundaryMeshMapper.H │ │ │ ├── fvMeshMapper.H │ │ │ ├── fvPatchMapper.C │ │ │ ├── fvPatchMapper.H │ │ │ ├── fvSurfaceMapper.C │ │ │ └── fvSurfaceMapper.H │ │ ├── fvMeshSubset │ │ │ ├── fvMeshSubset.C │ │ │ ├── fvMeshSubset.H │ │ │ └── fvMeshSubsetInterpolate.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 │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvPatch.C │ │ │ │ │ └── cyclicSlipFvPatch.H │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvPatch.C │ │ │ │ │ └── emptyFvPatch.H │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ ├── nonuniformTransformCyclicFvPatch.C │ │ │ │ │ └── nonuniformTransformCyclicFvPatch.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 │ │ │ │ ├── fvPatchFvMeshTemplates.C │ │ │ │ ├── fvPatchList.H │ │ │ │ ├── fvPatchNew.C │ │ │ │ └── fvPatchTemplates.C │ │ ├── singleCellFvMesh │ │ │ ├── singleCellFvMesh.C │ │ │ ├── singleCellFvMesh.H │ │ │ └── singleCellFvMeshInterpolate.C │ │ └── wallDist │ │ │ ├── nearWallDist.C │ │ │ ├── nearWallDist.H │ │ │ ├── nearWallDistNoSearch.C │ │ │ ├── nearWallDistNoSearch.H │ │ │ ├── patchDist.C │ │ │ ├── patchDist.H │ │ │ ├── reflectionVectors.C │ │ │ ├── reflectionVectors.H │ │ │ ├── wallDist.C │ │ │ ├── wallDist.H │ │ │ ├── wallDistData.C │ │ │ ├── wallDistData.H │ │ │ ├── wallDistReflection.C │ │ │ ├── wallDistReflection.H │ │ │ └── wallPointYPlus │ │ │ ├── wallPointYPlus.C │ │ │ ├── wallPointYPlus.H │ │ │ └── wallPointYPlusI.H │ ├── interpolation │ │ ├── interpolation │ │ │ ├── interpolation │ │ │ │ ├── interpolation.C │ │ │ │ ├── interpolation.H │ │ │ │ ├── interpolationNew.C │ │ │ │ └── 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 │ │ │ │ ├── cellPointWeightWallModified │ │ │ │ │ ├── cellPointWeightWallModified.C │ │ │ │ │ └── cellPointWeightWallModified.H │ │ │ │ ├── interpolationCellPointWallModified.C │ │ │ │ ├── interpolationCellPointWallModified.H │ │ │ │ ├── interpolationCellPointWallModifiedI.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 │ │ │ │ ├── CoBlended │ │ │ │ │ ├── CoBlended.C │ │ │ │ │ └── CoBlended.H │ │ │ │ ├── FitData │ │ │ │ │ ├── FitData.C │ │ │ │ │ └── FitData.H │ │ │ │ ├── LUST │ │ │ │ │ ├── LUST.C │ │ │ │ │ └── LUST.H │ │ │ │ ├── biLinearFit │ │ │ │ │ ├── biLinearFit.C │ │ │ │ │ └── biLinearFitPolynomial.H │ │ │ │ ├── clippedLinear │ │ │ │ │ ├── clippedLinear.C │ │ │ │ │ └── clippedLinear.H │ │ │ │ ├── cubic │ │ │ │ │ ├── cubic.C │ │ │ │ │ └── cubic.H │ │ │ │ ├── cubicUpwindFit │ │ │ │ │ ├── cubicUpwindFit.C │ │ │ │ │ └── cubicUpwindFitPolynomial.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 ├── fvMotionSolver │ ├── Make │ │ ├── files │ │ └── options │ ├── fvMotionSolvers │ │ ├── componentDisplacement │ │ │ └── componentLaplacian │ │ │ │ ├── displacementComponentLaplacianFvMotionSolver.C │ │ │ │ └── displacementComponentLaplacianFvMotionSolver.H │ │ ├── componentVelocity │ │ │ └── componentLaplacian │ │ │ │ ├── velocityComponentLaplacianFvMotionSolver.C │ │ │ │ └── velocityComponentLaplacianFvMotionSolver.H │ │ ├── displacement │ │ │ ├── SBRStress │ │ │ │ ├── displacementSBRStressFvMotionSolver.C │ │ │ │ └── displacementSBRStressFvMotionSolver.H │ │ │ ├── interpolation │ │ │ │ ├── displacementInterpolationMotionSolver.C │ │ │ │ └── displacementInterpolationMotionSolver.H │ │ │ ├── laplacian │ │ │ │ ├── displacementLaplacianFvMotionSolver.C │ │ │ │ └── displacementLaplacianFvMotionSolver.H │ │ │ └── layeredSolver │ │ │ │ ├── displacementLayeredMotionMotionSolver.C │ │ │ │ ├── displacementLayeredMotionMotionSolver.H │ │ │ │ ├── pointEdgeStructuredWalk.C │ │ │ │ ├── pointEdgeStructuredWalk.H │ │ │ │ └── pointEdgeStructuredWalkI.H │ │ ├── fvMotionSolverCore │ │ │ ├── fvMotionSolverCore.C │ │ │ ├── fvMotionSolverCore.H │ │ │ └── fvMotionSolverCoreTemplates.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 ├── fvOptions │ ├── Make │ │ ├── files │ │ └── options │ ├── constraints │ │ ├── derived │ │ │ ├── fixedTemperatureConstraint │ │ │ │ ├── fixedTemperatureConstraint.C │ │ │ │ └── fixedTemperatureConstraint.H │ │ │ └── temperatureLimitsConstraint │ │ │ │ ├── temperatureLimitsConstraint.C │ │ │ │ └── temperatureLimitsConstraint.H │ │ └── general │ │ │ └── explicitSetValue │ │ │ ├── ExplicitSetValue.C │ │ │ ├── ExplicitSetValue.H │ │ │ ├── ExplicitSetValueIO.C │ │ │ └── explicitSetValue.C │ ├── fvOptions │ │ ├── fvIOoptionList.C │ │ ├── fvIOoptionList.H │ │ ├── fvOption.C │ │ ├── fvOption.H │ │ ├── fvOptionI.H │ │ ├── fvOptionIO.C │ │ ├── fvOptionList.C │ │ ├── fvOptionList.H │ │ ├── fvOptionListTemplates.C │ │ └── makeFvOption.H │ ├── include │ │ └── createFvOptions.H │ └── sources │ │ ├── derived │ │ ├── MRFSource │ │ │ ├── MRFSource.C │ │ │ └── MRFSource.H │ │ ├── actuationDiskSource │ │ │ ├── actuationDiskSource.C │ │ │ ├── actuationDiskSource.H │ │ │ └── actuationDiskSourceTemplates.C │ │ ├── effectivenessHeatExchangerSource │ │ │ ├── effectivenessHeatExchangerSource.C │ │ │ └── effectivenessHeatExchangerSource.H │ │ ├── explicitPorositySource │ │ │ ├── explicitPorositySource.C │ │ │ └── explicitPorositySource.H │ │ ├── pressureGradientExplicitSource │ │ │ ├── pressureGradientExplicitSource.C │ │ │ ├── pressureGradientExplicitSource.H │ │ │ └── pressureGradientExplicitSourceIO.C │ │ ├── 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 │ │ └── solidificationMeltingSource │ │ │ ├── solidificationMeltingSource.C │ │ │ ├── solidificationMeltingSource.H │ │ │ ├── solidificationMeltingSourceIO.C │ │ │ └── solidificationMeltingSourceTemplates.C │ │ ├── general │ │ ├── codedSource │ │ │ ├── CodedSource.C │ │ │ ├── CodedSource.H │ │ │ ├── CodedSourceIO.C │ │ │ └── codedSource.C │ │ └── semiImplicitSource │ │ │ ├── SemiImplicitSource.C │ │ │ ├── SemiImplicitSource.H │ │ │ ├── SemiImplicitSourceI.H │ │ │ ├── SemiImplicitSourceIO.C │ │ │ └── semiImplicitSource.C │ │ └── interRegion │ │ ├── interRegionExplicitPorositySource │ │ ├── interRegionExplicitPorositySource.C │ │ └── interRegionExplicitPorositySource.H │ │ └── interRegionHeatTransferModel │ │ ├── constantHeatTransfer │ │ ├── constantHeatTransfer.C │ │ └── constantHeatTransfer.H │ │ ├── interRegionHeatTransferModel │ │ ├── interRegionHeatTransferModel.C │ │ ├── interRegionHeatTransferModel.H │ │ ├── interRegionHeatTransferModelI.H │ │ └── interRegionHeatTransferModelTemplates.C │ │ ├── tabulatedHeatTransfer │ │ ├── tabulatedHeatTransfer.C │ │ └── tabulatedHeatTransfer.H │ │ └── variableHeatTransfer │ │ ├── variableHeatTransfer.C │ │ └── variableHeatTransfer.H ├── genericPatchFields │ ├── Make │ │ ├── files │ │ └── options │ ├── genericFvPatchField │ │ ├── genericFvPatchField.C │ │ ├── genericFvPatchField.H │ │ ├── genericFvPatchFields.C │ │ └── genericFvPatchFields.H │ └── genericPointPatchField │ │ ├── genericPointPatchField.C │ │ ├── genericPointPatchField.H │ │ ├── genericPointPatchFields.C │ │ └── genericPointPatchFields.H ├── lagrangian │ ├── Allwmake │ └── basic │ │ ├── Cloud │ │ ├── Cloud.C │ │ ├── Cloud.H │ │ └── CloudIO.C │ │ ├── IOPosition │ │ ├── IOPosition.C │ │ └── IOPosition.H │ │ ├── InteractionLists │ │ ├── InteractionLists.C │ │ ├── InteractionLists.H │ │ ├── InteractionListsI.H │ │ └── referredWallFace │ │ │ ├── referredWallFace.C │ │ │ ├── referredWallFace.H │ │ │ └── referredWallFaceI.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── 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 ├── meshTools │ ├── AMIInterpolation │ │ ├── AMIInterpolation │ │ │ ├── AMIInterpolation.C │ │ │ ├── AMIInterpolation.H │ │ │ ├── AMIInterpolationF.H │ │ │ ├── AMIInterpolationI.H │ │ │ ├── AMIInterpolationName.C │ │ │ ├── AMIInterpolationParallelOps.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 │ │ │ ├── AMIPatchToPatchInterpolation.C │ │ │ └── AMIPatchToPatchInterpolation.H │ │ ├── GAMG │ │ │ ├── interfaceFields │ │ │ │ ├── cyclicACMIGAMGInterfaceField │ │ │ │ │ ├── cyclicACMIGAMGInterfaceField.C │ │ │ │ │ └── cyclicACMIGAMGInterfaceField.H │ │ │ │ └── cyclicAMIGAMGInterfaceField │ │ │ │ │ ├── cyclicAMIGAMGInterfaceField.C │ │ │ │ │ └── cyclicAMIGAMGInterfaceField.H │ │ │ └── interfaces │ │ │ │ ├── cyclicACMIGAMGInterface │ │ │ │ ├── cyclicACMIGAMGInterface.C │ │ │ │ └── cyclicACMIGAMGInterface.H │ │ │ │ └── cyclicAMIGAMGInterface │ │ │ │ ├── cyclicAMIGAMGInterface.C │ │ │ │ └── cyclicAMIGAMGInterface.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.C │ │ │ │ ├── cyclicACMIPointPatchField.H │ │ │ │ ├── cyclicACMIPointPatchFields.C │ │ │ │ └── cyclicACMIPointPatchFields.H │ │ │ └── cyclicACMIPolyPatch │ │ │ │ ├── cyclicACMIPolyPatch.C │ │ │ │ ├── cyclicACMIPolyPatch.H │ │ │ │ ├── cyclicACMIPolyPatchI.H │ │ │ │ └── cyclicACMIPolyPatchTemplates.C │ │ │ └── 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 │ ├── 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 │ │ │ ├── axesRotationI.H │ │ │ ├── coordinateRotation.C │ │ │ ├── coordinateRotation.H │ │ │ ├── coordinateRotationFunctor.H │ │ │ ├── coordinateRotationI.H │ │ │ ├── coordinateRotationNew.C │ │ │ ├── localAxesRotation.C │ │ │ └── localAxesRotation.H │ │ ├── coordinateSystem I.H │ │ ├── coordinateSystem.C │ │ ├── coordinateSystem.H │ │ ├── coordinateSystemI.H │ │ ├── coordinateSystemNew.C │ │ ├── coordinateSystems.C │ │ ├── coordinateSystems.H │ │ ├── cylindricalCS.C │ │ └── cylindricalCS.H │ ├── edgeFaceCirculator │ │ ├── edgeFaceCirculator.C │ │ ├── edgeFaceCirculator.H │ │ └── edgeFaceCirculatorI.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 │ │ ├── meshSearchFACECENTRETETSMeshObject.C │ │ ├── meshSearchFACECENTRETETSMeshObject.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 │ ├── primitiveMeshGeometry │ │ ├── primitiveMeshGeometry.C │ │ └── primitiveMeshGeometry.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 │ │ ├── regionSplit.C │ │ └── regionSplit.H │ ├── searchableSurface │ │ ├── closedTriSurfaceMesh.C │ │ ├── closedTriSurfaceMesh.H │ │ ├── searchableBox.C │ │ ├── searchableBox.H │ │ ├── searchableCylinder.C │ │ ├── searchableCylinder.H │ │ ├── searchableDisk.C │ │ ├── searchableDisk.H │ │ ├── searchablePlane.C │ │ ├── searchablePlane.H │ │ ├── searchablePlate.C │ │ ├── searchablePlate.H │ │ ├── searchableSphere.C │ │ ├── searchableSphere.H │ │ ├── searchableSurface.C │ │ ├── searchableSurface.H │ │ ├── searchableSurfaceCollection.C │ │ ├── searchableSurfaceCollection.H │ │ ├── searchableSurfaceWithGaps.C │ │ ├── searchableSurfaceWithGaps.H │ │ ├── searchableSurfaces.C │ │ ├── searchableSurfaces.H │ │ ├── searchableSurfacesQueries.C │ │ ├── searchableSurfacesQueries.H │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 ├── postProcessing │ ├── Allwmake │ ├── foamCalcFunctions │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── basic │ │ │ └── addSubtract │ │ │ │ ├── addSubtract.C │ │ │ │ ├── addSubtract.H │ │ │ │ ├── writeAddSubtractField.C │ │ │ │ └── writeAddSubtractValue.C │ │ ├── calcType │ │ │ ├── calcType.C │ │ │ ├── calcType.H │ │ │ └── calcTypeNew.C │ │ └── field │ │ │ ├── components │ │ │ ├── components.C │ │ │ ├── components.H │ │ │ └── writeComponentFields.C │ │ │ ├── div │ │ │ ├── div.C │ │ │ ├── div.H │ │ │ └── writeDivField.C │ │ │ ├── interpolate │ │ │ ├── interpolate.C │ │ │ ├── interpolate.H │ │ │ └── writeInterpolateField.C │ │ │ ├── mag │ │ │ ├── mag.C │ │ │ ├── mag.H │ │ │ └── writeMagField.C │ │ │ ├── magGrad │ │ │ ├── magGrad.C │ │ │ ├── magGrad.H │ │ │ └── writeMagGradField.C │ │ │ ├── magSqr │ │ │ ├── magSqr.C │ │ │ ├── magSqr.H │ │ │ └── writeMagSqrField.C │ │ │ └── randomise │ │ │ ├── randomise.C │ │ │ ├── randomise.H │ │ │ └── writeRandomField.C │ ├── functionObjects │ │ ├── Allwmake │ │ ├── IO │ │ │ ├── IOFunctionObjectsDoc.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── controlDict │ │ │ ├── partialWrite │ │ │ │ ├── IOpartialWrite.H │ │ │ │ ├── partialWrite.C │ │ │ │ ├── partialWrite.H │ │ │ │ ├── partialWriteFunctionObject.C │ │ │ │ ├── partialWriteFunctionObject.H │ │ │ │ └── partialWriteTemplates.C │ │ │ ├── removeRegisteredObject │ │ │ │ ├── IOremoveRegisteredObject.H │ │ │ │ ├── removeRegisteredObject.C │ │ │ │ ├── removeRegisteredObject.H │ │ │ │ ├── removeRegisteredObjectFunctionObject.C │ │ │ │ └── removeRegisteredObjectFunctionObject.H │ │ │ ├── writeDictionary │ │ │ │ ├── IOwriteDictionary.H │ │ │ │ ├── writeDictionary.C │ │ │ │ ├── writeDictionary.H │ │ │ │ ├── writeDictionaryFunctionObject.C │ │ │ │ └── writeDictionaryFunctionObject.H │ │ │ └── writeRegisteredObject │ │ │ │ ├── IOwriteRegisteredObject.H │ │ │ │ ├── writeRegisteredObject.C │ │ │ │ ├── writeRegisteredObject.H │ │ │ │ ├── writeRegisteredObjectFunctionObject.C │ │ │ │ └── writeRegisteredObjectFunctionObject.H │ │ ├── cloud │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── cloudFunctionObjectsDoc.H │ │ │ └── cloudInfo │ │ │ │ ├── IOcloudInfo.H │ │ │ │ ├── cloudInfo.C │ │ │ │ ├── cloudInfo.H │ │ │ │ ├── cloudInfoFunctionObject.C │ │ │ │ ├── cloudInfoFunctionObject.H │ │ │ │ └── postProcessingDict │ │ ├── doc │ │ │ └── functionObjects.dox │ │ ├── field │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── fieldAverage │ │ │ │ ├── controlDict │ │ │ │ ├── fieldAverage │ │ │ │ │ ├── IOFieldAverage.H │ │ │ │ │ ├── fieldAverage.C │ │ │ │ │ ├── fieldAverage.H │ │ │ │ │ └── fieldAverageTemplates.C │ │ │ │ ├── fieldAverageFunctionObject │ │ │ │ │ ├── fieldAverageFunctionObject.C │ │ │ │ │ └── fieldAverageFunctionObject.H │ │ │ │ └── fieldAverageItem │ │ │ │ │ ├── fieldAverageItem.C │ │ │ │ │ ├── fieldAverageItem.H │ │ │ │ │ └── fieldAverageItemIO.C │ │ │ ├── fieldCoordinateSystemTransform │ │ │ │ ├── IOfieldCoordinateSystemTransform.H │ │ │ │ ├── fieldCoordinateSystemTransform.C │ │ │ │ ├── fieldCoordinateSystemTransform.H │ │ │ │ ├── fieldCoordinateSystemTransformFunctionObject.C │ │ │ │ ├── fieldCoordinateSystemTransformFunctionObject.H │ │ │ │ ├── fieldCoordinateSystemTransformTemplates.C │ │ │ │ └── postProcessingDict │ │ │ ├── fieldFunctionObjectsDoc.H │ │ │ ├── fieldMinMax │ │ │ │ ├── IOfieldMinMax.H │ │ │ │ ├── controlDict │ │ │ │ ├── fieldMinMax.C │ │ │ │ ├── fieldMinMax.H │ │ │ │ ├── fieldMinMaxFunctionObject.C │ │ │ │ ├── fieldMinMaxFunctionObject.H │ │ │ │ └── fieldMinMaxTemplates.C │ │ │ ├── fieldValues │ │ │ │ ├── cellSource │ │ │ │ │ ├── IOcellSource.H │ │ │ │ │ ├── cellSource.C │ │ │ │ │ ├── cellSource.H │ │ │ │ │ ├── cellSourceFunctionObject.C │ │ │ │ │ ├── cellSourceFunctionObject.H │ │ │ │ │ ├── cellSourceI.H │ │ │ │ │ └── cellSourceTemplates.C │ │ │ │ ├── controlDict │ │ │ │ ├── faceSource │ │ │ │ │ ├── IOfaceSource.H │ │ │ │ │ ├── faceSource.C │ │ │ │ │ ├── faceSource.H │ │ │ │ │ ├── faceSourceFunctionObject.C │ │ │ │ │ ├── faceSourceFunctionObject.H │ │ │ │ │ ├── faceSourceI.H │ │ │ │ │ └── faceSourceTemplates.C │ │ │ │ ├── fieldValue │ │ │ │ │ ├── fieldValue.C │ │ │ │ │ ├── fieldValue.H │ │ │ │ │ ├── fieldValueI.H │ │ │ │ │ ├── fieldValueNew.C │ │ │ │ │ └── fieldValueTemplates.C │ │ │ │ └── fieldValueDelta │ │ │ │ │ ├── IOfieldValueDelta.H │ │ │ │ │ ├── fieldValueDelta.C │ │ │ │ │ ├── fieldValueDelta.H │ │ │ │ │ ├── fieldValueDeltaFunctionObject.C │ │ │ │ │ ├── fieldValueDeltaFunctionObject.H │ │ │ │ │ └── fieldValueDeltaTemplates.C │ │ │ ├── nearWallFields │ │ │ │ ├── IOnearWallFields.H │ │ │ │ ├── controlDict │ │ │ │ ├── findCellParticle.C │ │ │ │ ├── findCellParticle.H │ │ │ │ ├── findCellParticleCloud.C │ │ │ │ ├── nearWallFields.C │ │ │ │ ├── nearWallFields.H │ │ │ │ ├── nearWallFieldsFunctionObject.C │ │ │ │ ├── nearWallFieldsFunctionObject.H │ │ │ │ └── nearWallFieldsTemplates.C │ │ │ ├── processorField │ │ │ │ ├── IOprocessorField.H │ │ │ │ ├── postProcessingDict │ │ │ │ ├── processorField.C │ │ │ │ ├── processorField.H │ │ │ │ ├── processorFieldFunctionObject.C │ │ │ │ └── processorFieldFunctionObject.H │ │ │ ├── readFields │ │ │ │ ├── IOreadFields.H │ │ │ │ ├── postProcessingDict │ │ │ │ ├── readFields.C │ │ │ │ ├── readFields.H │ │ │ │ ├── readFieldsFunctionObject.C │ │ │ │ ├── readFieldsFunctionObject.H │ │ │ │ └── readFieldsTemplates.C │ │ │ ├── regionSizeDistribution │ │ │ │ ├── regionSizeDistribution.C │ │ │ │ ├── regionSizeDistribution.H │ │ │ │ ├── regionSizeDistributionFunctionObject.C │ │ │ │ ├── regionSizeDistributionFunctionObject.H │ │ │ │ └── regionSizeDistributionTemplates.C │ │ │ ├── streamLine │ │ │ │ ├── controlDict │ │ │ │ ├── streamLine.C │ │ │ │ ├── streamLine.H │ │ │ │ ├── streamLineFunctionObject.C │ │ │ │ ├── streamLineFunctionObject.H │ │ │ │ ├── streamLineParticle.C │ │ │ │ ├── streamLineParticle.H │ │ │ │ ├── streamLineParticleCloud.C │ │ │ │ └── streamLineParticleCloud.H │ │ │ ├── surfaceInterpolateFields │ │ │ │ ├── IOsurfaceInterpolateFields.H │ │ │ │ ├── surfaceInterpolateFields.C │ │ │ │ ├── surfaceInterpolateFields.H │ │ │ │ ├── surfaceInterpolateFieldsFunctionObject.C │ │ │ │ ├── surfaceInterpolateFieldsFunctionObject.H │ │ │ │ └── surfaceInterpolateFieldsTemplates.C │ │ │ └── wallBoundedStreamLine │ │ │ │ ├── controlDict │ │ │ │ ├── wallBoundedParticle.C │ │ │ │ ├── wallBoundedParticle.H │ │ │ │ ├── wallBoundedParticleTemplates.C │ │ │ │ ├── wallBoundedStreamLine.C │ │ │ │ ├── wallBoundedStreamLine.H │ │ │ │ ├── wallBoundedStreamLineFunctionObject.C │ │ │ │ ├── wallBoundedStreamLineFunctionObject.H │ │ │ │ ├── wallBoundedStreamLineParticle.C │ │ │ │ ├── wallBoundedStreamLineParticle.H │ │ │ │ ├── wallBoundedStreamLineParticleCloud.C │ │ │ │ └── wallBoundedStreamLineParticleCloud.H │ │ ├── forces │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── forceCoeffs │ │ │ │ ├── IOforceCoeffs.H │ │ │ │ ├── forceCoeffs.C │ │ │ │ ├── forceCoeffs.H │ │ │ │ ├── forceCoeffsFunctionObject.C │ │ │ │ └── forceCoeffsFunctionObject.H │ │ │ ├── forces │ │ │ │ ├── IOforces.H │ │ │ │ ├── forces.C │ │ │ │ ├── forces.H │ │ │ │ ├── forcesFunctionObject.C │ │ │ │ └── forcesFunctionObject.H │ │ │ └── forcesFunctionObjectsDoc.H │ │ ├── fvTools │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── calcFvcDiv │ │ │ │ ├── IOcalcFvcDiv.H │ │ │ │ ├── calcFvcDiv.C │ │ │ │ ├── calcFvcDiv.H │ │ │ │ ├── calcFvcDivFunctionObject.C │ │ │ │ ├── calcFvcDivFunctionObject.H │ │ │ │ └── calcFvcDivTemplates.C │ │ │ ├── calcFvcGrad │ │ │ │ ├── IOcalcFvcGrad.H │ │ │ │ ├── calcFvcGrad.C │ │ │ │ ├── calcFvcGrad.H │ │ │ │ ├── calcFvcGradFunctionObject.C │ │ │ │ ├── calcFvcGradFunctionObject.H │ │ │ │ └── calcFvcGradTemplates.C │ │ │ ├── calcMag │ │ │ │ ├── IOcalcMag.H │ │ │ │ ├── calcMag.C │ │ │ │ ├── calcMag.H │ │ │ │ ├── calcMagFunctionObject.C │ │ │ │ ├── calcMagFunctionObject.H │ │ │ │ └── calcMagTemplates.C │ │ │ └── doc │ │ │ │ └── fvToolsFunctionObjectsDoc.H │ │ ├── jobControl │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── abortCalculation │ │ │ │ ├── IOabortCalculation.H │ │ │ │ ├── abortCalculation.C │ │ │ │ ├── abortCalculation.H │ │ │ │ ├── abortCalculationFunctionObject.C │ │ │ │ └── abortCalculationFunctionObject.H │ │ │ └── jobControlFunctionObjectsDoc.H │ │ ├── systemCall │ │ │ ├── IOsystemCall.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── controlDict │ │ │ ├── systemCall.C │ │ │ ├── systemCall.H │ │ │ ├── systemCallFunctionObject.C │ │ │ └── systemCallFunctionObject.H │ │ └── utilities │ │ │ ├── CourantNo │ │ │ ├── CourantNo.C │ │ │ ├── CourantNo.H │ │ │ ├── CourantNoFunctionObject.C │ │ │ ├── CourantNoFunctionObject.H │ │ │ └── IOCourantNo.H │ │ │ ├── DESModelRegions │ │ │ ├── DESModelRegions.C │ │ │ ├── DESModelRegions.H │ │ │ ├── DESModelRegionsFunctionObject.C │ │ │ ├── DESModelRegionsFunctionObject.H │ │ │ └── IODESModelRegions.H │ │ │ ├── Lambda2 │ │ │ ├── IOLambda2.H │ │ │ ├── Lambda2.C │ │ │ ├── Lambda2.H │ │ │ ├── Lambda2FunctionObject.C │ │ │ └── Lambda2FunctionObject.H │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── Peclet │ │ │ ├── IOPeclet.H │ │ │ ├── Peclet.C │ │ │ ├── Peclet.H │ │ │ ├── PecletFunctionObject.C │ │ │ └── PecletFunctionObject.H │ │ │ ├── Q │ │ │ ├── IOQ.H │ │ │ ├── Q.C │ │ │ ├── Q.H │ │ │ ├── QFunctionObject.C │ │ │ └── QFunctionObject.H │ │ │ ├── blendingFactor │ │ │ ├── IOblendingFactor.H │ │ │ ├── blendingFactor.C │ │ │ ├── blendingFactor.H │ │ │ ├── blendingFactorFunctionObject.C │ │ │ ├── blendingFactorFunctionObject.H │ │ │ └── blendingFactorTemplates.C │ │ │ ├── codedFunctionObject │ │ │ ├── codedFunctionObject.C │ │ │ └── codedFunctionObject.H │ │ │ ├── doc │ │ │ └── utilitiesFunctionObjectsDoc.H │ │ │ ├── dsmcFields │ │ │ ├── IOdsmcFields.C │ │ │ ├── dsmcFields.C │ │ │ ├── dsmcFields.H │ │ │ ├── dsmcFieldsFunctionObject.C │ │ │ └── dsmcFieldsFunctionObject.H │ │ │ ├── pressureTools │ │ │ ├── IOpressureTools.H │ │ │ ├── pressureTools.C │ │ │ ├── pressureTools.H │ │ │ ├── pressureToolsFunctionObject.C │ │ │ └── pressureToolsFunctionObject.H │ │ │ ├── scalarTransport │ │ │ ├── IOscalarTransport.H │ │ │ ├── scalarTransport.C │ │ │ ├── scalarTransport.H │ │ │ ├── scalarTransportFunctionObject.C │ │ │ └── scalarTransportFunctionObject.H │ │ │ ├── setTimeStep │ │ │ ├── setTimeStepFunctionObject.C │ │ │ └── setTimeStepFunctionObject.H │ │ │ ├── timeActivatedFileUpdate │ │ │ ├── IOtimeActivatedFileUpdate.H │ │ │ ├── controlDict │ │ │ ├── timeActivatedFileUpdate.C │ │ │ ├── timeActivatedFileUpdate.H │ │ │ ├── timeActivatedFileUpdateFunctionObject.C │ │ │ └── timeActivatedFileUpdateFunctionObject.H │ │ │ ├── turbulenceFields │ │ │ ├── IOturbulenceFields.H │ │ │ ├── postProcessingDict │ │ │ ├── turbulenceFields.C │ │ │ ├── turbulenceFields.H │ │ │ ├── turbulenceFieldsFunctionObject.C │ │ │ ├── turbulenceFieldsFunctionObject.H │ │ │ └── turbulenceFieldsTemplates.C │ │ │ ├── vorticity │ │ │ ├── IOvorticity.H │ │ │ ├── vorticity.C │ │ │ ├── vorticity.H │ │ │ ├── vorticityFunctionObject.C │ │ │ └── vorticityFunctionObject.H │ │ │ ├── wallShearStress │ │ │ ├── IOwallShearStress.H │ │ │ ├── wallShearStress.C │ │ │ ├── wallShearStress.H │ │ │ ├── wallShearStressFunctionObject.C │ │ │ └── wallShearStressFunctionObject.H │ │ │ ├── yPlusLES │ │ │ ├── IOyPlusLES.H │ │ │ ├── yPlusLES.C │ │ │ ├── yPlusLES.H │ │ │ ├── yPlusLESFunctionObject.C │ │ │ └── yPlusLESFunctionObject.H │ │ │ └── yPlusRAS │ │ │ ├── IOyPlusRAS.H │ │ │ ├── yPlusRAS.C │ │ │ ├── yPlusRAS.H │ │ │ ├── yPlusRASFunctionObject.C │ │ │ └── yPlusRASFunctionObject.H │ └── postCalc │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── calc.H │ │ └── postCalc.C ├── regionCoupled │ ├── Make │ │ ├── files │ │ └── options │ └── derivedFvPatchFields │ │ └── energyRegionCoupled │ │ ├── energyRegionCoupledFvPatchScalarField.C │ │ └── energyRegionCoupledFvPatchScalarField.H ├── regionModels │ ├── Allwclean │ ├── Allwmake │ ├── doc │ │ └── regionBoundaryConditionsDoc.H │ ├── pyrolysisModels │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── noPyrolysis │ │ │ ├── noPyrolysis.C │ │ │ └── noPyrolysis.H │ │ ├── pyrolysisModel │ │ │ ├── pyrolysisModel.C │ │ │ ├── pyrolysisModel.H │ │ │ ├── pyrolysisModelCollection.C │ │ │ ├── pyrolysisModelCollection.H │ │ │ ├── pyrolysisModelI.H │ │ │ └── pyrolysisModelNew.C │ │ └── reactingOneDim │ │ │ ├── reactingOneDim.C │ │ │ ├── reactingOneDim.H │ │ │ └── reactingOneDimI.H │ ├── regionCoupling │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── derivedFvPatchFields │ │ │ ├── filmPyrolysisRadiativeCoupledMixed │ │ │ ├── filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.C │ │ │ └── filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.H │ │ │ ├── filmPyrolysisTemperatureCoupled │ │ │ ├── filmPyrolysisTemperatureCoupledFvPatchScalarField.C │ │ │ └── filmPyrolysisTemperatureCoupledFvPatchScalarField.H │ │ │ └── filmPyrolysisVelocityCoupled │ │ │ ├── filmPyrolysisVelocityCoupledFvPatchVectorField.C │ │ │ └── filmPyrolysisVelocityCoupledFvPatchVectorField.H │ ├── 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 │ │ │ ├── doc │ │ │ │ └── surfaceFilmBoundaryConditionsDoc.H │ │ │ ├── filmHeightInletVelocity │ │ │ │ ├── filmHeightInletVelocityFvPatchVectorField.C │ │ │ │ └── filmHeightInletVelocityFvPatchVectorField.H │ │ │ ├── inclinedFilmNusseltHeight │ │ │ │ ├── inclinedFilmNusseltHeightFvPatchScalarField.C │ │ │ │ └── inclinedFilmNusseltHeightFvPatchScalarField.H │ │ │ ├── inclinedFilmNusseltInletVelocity │ │ │ │ ├── inclinedFilmNusseltInletVelocityFvPatchVectorField.C │ │ │ │ └── inclinedFilmNusseltInletVelocityFvPatchVectorField.H │ │ │ └── wallFunctions │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── alphatFilmWallFunction │ │ │ │ ├── alphatFilmWallFunctionFvPatchScalarField.C │ │ │ │ └── alphatFilmWallFunctionFvPatchScalarField.H │ │ │ │ └── mutkFilmWallFunction │ │ │ │ ├── mutkFilmWallFunctionFvPatchScalarField.C │ │ │ │ └── mutkFilmWallFunctionFvPatchScalarField.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 │ │ │ │ ├── filmThermoModel │ │ │ │ │ ├── constantFilmThermo │ │ │ │ │ │ ├── constantFilmThermo.C │ │ │ │ │ │ └── constantFilmThermo.H │ │ │ │ │ ├── filmThermoModel │ │ │ │ │ │ ├── filmThermoModel.C │ │ │ │ │ │ ├── filmThermoModel.H │ │ │ │ │ │ └── filmThermoModelNew.C │ │ │ │ │ └── liquidFilmThermo │ │ │ │ │ │ ├── liquidFilmThermo.C │ │ │ │ │ │ └── liquidFilmThermo.H │ │ │ │ ├── filmTurbulenceModel │ │ │ │ │ ├── filmTurbulenceModel │ │ │ │ │ │ ├── filmTurbulenceModel.C │ │ │ │ │ │ ├── filmTurbulenceModel.H │ │ │ │ │ │ └── filmTurbulenceModelNew.C │ │ │ │ │ └── laminar │ │ │ │ │ │ ├── laminar.C │ │ │ │ │ │ └── laminar.H │ │ │ │ ├── force │ │ │ │ │ ├── contactAngleForce │ │ │ │ │ │ ├── contactAngleForce.C │ │ │ │ │ │ └── contactAngleForce.H │ │ │ │ │ ├── force │ │ │ │ │ │ ├── force.C │ │ │ │ │ │ ├── force.H │ │ │ │ │ │ └── forceNew.C │ │ │ │ │ ├── forceList │ │ │ │ │ │ ├── forceList.C │ │ │ │ │ │ └── forceList.H │ │ │ │ │ └── thermocapillaryForce │ │ │ │ │ │ ├── thermocapillaryForce.C │ │ │ │ │ │ └── thermocapillaryForce.H │ │ │ │ └── injectionModel │ │ │ │ │ ├── curvatureSeparation │ │ │ │ │ ├── curvatureSeparation.C │ │ │ │ │ └── curvatureSeparation.H │ │ │ │ │ ├── drippingInjection │ │ │ │ │ ├── drippingInjection.C │ │ │ │ │ └── drippingInjection.H │ │ │ │ │ ├── injectionModel │ │ │ │ │ ├── injectionModel.C │ │ │ │ │ ├── injectionModel.H │ │ │ │ │ └── injectionModelNew.C │ │ │ │ │ ├── injectionModelList │ │ │ │ │ ├── injectionModelList.C │ │ │ │ │ └── injectionModelList.H │ │ │ │ │ └── removeInjection │ │ │ │ │ ├── removeInjection.C │ │ │ │ │ └── removeInjection.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 │ │ │ │ ├── filmViscosityModel │ │ │ │ ├── constantViscosity │ │ │ │ │ ├── constantViscosity.C │ │ │ │ │ └── constantViscosity.H │ │ │ │ ├── filmViscosityModel │ │ │ │ │ ├── filmViscosityModel.C │ │ │ │ │ ├── filmViscosityModel.H │ │ │ │ │ └── filmViscosityModelNew.C │ │ │ │ ├── liquidViscosity │ │ │ │ │ ├── liquidViscosity.C │ │ │ │ │ └── liquidViscosity.H │ │ │ │ └── thixotropicViscosity │ │ │ │ │ ├── thixotropicViscosity.C │ │ │ │ │ └── thixotropicViscosity.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 │ │ │ │ └── standardPhaseChange │ │ │ │ ├── standardPhaseChange.C │ │ │ │ └── standardPhaseChange.H │ │ ├── surfaceFilmModel │ │ │ ├── surfaceFilmModel.C │ │ │ ├── surfaceFilmModel.H │ │ │ ├── surfaceFilmModelI.H │ │ │ └── surfaceFilmModelNew.C │ │ └── thermoSingleLayer │ │ │ ├── thermoSingleLayer.C │ │ │ ├── thermoSingleLayer.H │ │ │ └── thermoSingleLayerI.H │ └── thermalBaffleModels │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── derivedFvPatchFields │ │ ├── doc │ │ │ └── thermalBaffleBoundaryConditionsDoc.H │ │ └── thermalBaffle │ │ │ ├── thermalBaffleFvPatchScalarField.C │ │ │ └── thermalBaffleFvPatchScalarField.H │ │ ├── noThermo │ │ ├── noThermo.C │ │ └── noThermo.H │ │ ├── thermalBaffle │ │ ├── thermalBaffle.C │ │ ├── thermalBaffle.H │ │ └── thermalBaffleI.H │ │ └── thermalBaffleModel │ │ ├── thermalBaffleModel.C │ │ ├── thermalBaffleModel.H │ │ └── thermalBaffleModelNew.C ├── sampling │ ├── Make │ │ ├── files │ │ └── options │ ├── cuttingPlane │ │ ├── cuttingPlane.C │ │ ├── cuttingPlane.H │ │ └── cuttingPlaneTemplates.C │ ├── graphField │ │ ├── makeGraph.C │ │ ├── makeGraph.H │ │ ├── writeCellGraph.C │ │ ├── writeCellGraph.H │ │ ├── writePatchGraph.C │ │ └── writePatchGraph.H │ ├── meshToMeshInterpolation │ │ └── 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 │ │ │ ├── meshToMesh.C │ │ │ ├── meshToMesh.H │ │ │ ├── meshToMeshI.H │ │ │ ├── meshToMeshParallelOps.C │ │ │ └── meshToMeshTemplates.C │ ├── probes │ │ ├── IOprobes.H │ │ ├── patchProbes.C │ │ ├── patchProbes.H │ │ ├── patchProbesTemplates.C │ │ ├── probes.C │ │ ├── probes.H │ │ ├── probesDict │ │ ├── probesFunctionObject │ │ │ ├── probesFunctionObject.C │ │ │ └── probesFunctionObject.H │ │ ├── probesGrouping.C │ │ └── probesTemplates.C │ ├── sampledSet │ │ ├── array │ │ │ ├── arraySet.C │ │ │ └── arraySet.H │ │ ├── circle │ │ │ ├── circleSet.C │ │ │ └── circleSet.H │ │ ├── cloud │ │ │ ├── cloudSet.C │ │ │ └── cloudSet.H │ │ ├── face │ │ │ ├── faceOnlySet.C │ │ │ └── faceOnlySet.H │ │ ├── midPoint │ │ │ ├── midPointSet.C │ │ │ └── midPointSet.H │ │ ├── midPointAndFace │ │ │ ├── midPointAndFaceSet.C │ │ │ └── midPointAndFaceSet.H │ │ ├── patchCloud │ │ │ ├── patchCloudSet.C │ │ │ └── patchCloudSet.H │ │ ├── patchSeed │ │ │ ├── patchSeedSet.C │ │ │ └── patchSeedSet.H │ │ ├── polyLine │ │ │ ├── polyLineSet.C │ │ │ └── polyLineSet.H │ │ ├── sampledSet │ │ │ ├── sampledSet.C │ │ │ └── sampledSet.H │ │ ├── sampledSets │ │ │ ├── IOsampledSets.H │ │ │ ├── sampledSets.C │ │ │ ├── sampledSets.H │ │ │ ├── sampledSetsGrouping.C │ │ │ └── sampledSetsTemplates.C │ │ ├── sampledSetsFunctionObject │ │ │ ├── sampledSetsFunctionObject.C │ │ │ └── sampledSetsFunctionObject.H │ │ ├── triSurfaceMeshPointSet │ │ │ ├── triSurfaceMeshPointSet.C │ │ │ └── triSurfaceMeshPointSet.H │ │ └── uniform │ │ │ ├── uniformSet.C │ │ │ └── uniformSet.H │ └── sampledSurface │ │ ├── distanceSurface │ │ ├── distanceSurface.C │ │ ├── distanceSurface.H │ │ └── distanceSurfaceTemplates.C │ │ ├── isoSurface │ │ ├── isoSurface.C │ │ ├── isoSurface.H │ │ ├── isoSurfaceCell.C │ │ ├── isoSurfaceCell.H │ │ ├── isoSurfaceCellTemplates.C │ │ ├── isoSurfaceTemplates.C │ │ ├── sampledIsoSurface.C │ │ ├── sampledIsoSurface.H │ │ ├── sampledIsoSurfaceCell.C │ │ ├── sampledIsoSurfaceCell.H │ │ ├── sampledIsoSurfaceCellTemplates.C │ │ └── 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 │ │ ├── IOsampledSurfaces.H │ │ ├── sampledSurfaces.C │ │ ├── sampledSurfaces.H │ │ ├── sampledSurfacesGrouping.C │ │ └── sampledSurfacesTemplates.C │ │ ├── sampledSurfacesFunctionObject │ │ ├── sampledSurfacesFunctionObject.C │ │ └── sampledSurfacesFunctionObject.H │ │ ├── sampledTriSurfaceMesh │ │ ├── sampledTriSurfaceMesh.C │ │ ├── sampledTriSurfaceMesh.H │ │ └── sampledTriSurfaceMeshTemplates.C │ │ ├── thresholdCellFaces │ │ ├── sampledThresholdCellFaces.C │ │ ├── sampledThresholdCellFaces.H │ │ ├── sampledThresholdCellFacesTemplates.C │ │ ├── thresholdCellFaces.C │ │ └── thresholdCellFaces.H │ │ └── writers │ │ ├── dx │ │ ├── dxSurfaceWriter.C │ │ └── dxSurfaceWriter.H │ │ ├── ensight │ │ ├── ensightPTraits.C │ │ ├── ensightPTraits.H │ │ ├── ensightSurfaceWriter.C │ │ └── ensightSurfaceWriter.H │ │ ├── foamFile │ │ ├── foamFileSurfaceWriter.C │ │ └── foamFileSurfaceWriter.H │ │ ├── makeSurfaceWriterMethods.H │ │ ├── nastran │ │ ├── nastranSurfaceWriter.C │ │ ├── nastranSurfaceWriter.H │ │ └── nastranSurfaceWriterTemplates.C │ │ ├── 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 │ ├── pointPatchFields │ │ └── derived │ │ │ ├── sixDoFRigidBodyDisplacement │ │ │ ├── sixDoFRigidBodyDisplacementPointPatchVectorField.C │ │ │ └── sixDoFRigidBodyDisplacementPointPatchVectorField.H │ │ │ └── uncoupledSixDoFRigidBodyDisplacement │ │ │ ├── uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField.C │ │ │ └── uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField.H │ ├── 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 │ │ │ ├── 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 │ │ │ └── tabulatedAxialAngularSpring │ │ │ │ ├── tabulatedAxialAngularSpring.C │ │ │ │ └── tabulatedAxialAngularSpring.H │ │ ├── sixDoFRigidBodyMotion.C │ │ ├── sixDoFRigidBodyMotion.H │ │ ├── sixDoFRigidBodyMotionI.H │ │ ├── sixDoFRigidBodyMotionIO.C │ │ ├── sixDoFRigidBodyMotionState.C │ │ ├── sixDoFRigidBodyMotionState.H │ │ ├── sixDoFRigidBodyMotionStateI.H │ │ └── sixDoFRigidBodyMotionStateIO.C │ └── sixDoFRigidBodyMotionSolver │ │ ├── externalPointEdgePoint.C │ │ ├── externalPointEdgePoint.H │ │ ├── externalPointEdgePointI.H │ │ ├── pointPatchDist.C │ │ ├── pointPatchDist.H │ │ ├── sixDoFRigidBodyMotionSolver.C │ │ └── sixDoFRigidBodyMotionSolver.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 │ │ ├── ftr │ │ │ ├── FTRsurfaceFormat.C │ │ │ ├── FTRsurfaceFormat.H │ │ │ └── FTRsurfaceFormatRunTime.C │ │ ├── gts │ │ │ ├── GTSsurfaceFormat.C │ │ │ ├── GTSsurfaceFormat.H │ │ │ └── GTSsurfaceFormatRunTime.C │ │ ├── nas │ │ │ ├── NASsurfaceFormat.C │ │ │ ├── NASsurfaceFormat.H │ │ │ └── NASsurfaceFormatRunTime.C │ │ ├── obj │ │ │ ├── OBJstream.C │ │ │ ├── OBJstream.H │ │ │ ├── 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 │ ├── SLGThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── SLGThermo │ │ │ ├── SLGThermo.C │ │ │ └── SLGThermo.H │ ├── 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 │ │ │ ├── doc │ │ │ │ └── thermophysicalBoundaryConditionsDoc.H │ │ │ ├── energyJump │ │ │ │ ├── energyJump │ │ │ │ │ ├── energyJumpFvPatchScalarField.C │ │ │ │ │ └── energyJumpFvPatchScalarField.H │ │ │ │ └── energyJumpAMI │ │ │ │ │ ├── energyJumpAMIFvPatchScalarField.C │ │ │ │ │ └── energyJumpAMIFvPatchScalarField.H │ │ │ ├── fixedEnergy │ │ │ │ ├── fixedEnergyFvPatchScalarField.C │ │ │ │ └── fixedEnergyFvPatchScalarField.H │ │ │ ├── gradientEnergy │ │ │ │ ├── gradientEnergyFvPatchScalarField.C │ │ │ │ └── gradientEnergyFvPatchScalarField.H │ │ │ └── mixedEnergy │ │ │ │ ├── mixedEnergyFvPatchScalarField.C │ │ │ │ └── mixedEnergyFvPatchScalarField.H │ │ ├── fluidThermo │ │ │ ├── fluidThermo.C │ │ │ ├── fluidThermo.H │ │ │ └── makeThermo.H │ │ ├── heThermo │ │ │ ├── heThermo.C │ │ │ └── heThermo.H │ │ ├── mixtures │ │ │ ├── basicMixture │ │ │ │ ├── basicMixture.C │ │ │ │ └── basicMixture.H │ │ │ └── pureMixture │ │ │ │ ├── pureMixture.C │ │ │ │ └── pureMixture.H │ │ ├── psiThermo │ │ │ ├── hePsiThermo.C │ │ │ ├── hePsiThermo.H │ │ │ ├── psiThermo.C │ │ │ ├── psiThermo.H │ │ │ └── psiThermos.C │ │ └── rhoThermo │ │ │ ├── heRhoThermo.C │ │ │ ├── heRhoThermo.H │ │ │ ├── rhoThermo.C │ │ │ ├── rhoThermo.H │ │ │ └── rhoThermos.C │ ├── chemistryModel │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── chemistryModel │ │ │ ├── basicChemistryModel │ │ │ │ ├── basicChemistryModel.C │ │ │ │ ├── basicChemistryModel.H │ │ │ │ ├── basicChemistryModelI.H │ │ │ │ └── basicChemistryModelTemplates.C │ │ │ ├── chemistryModel │ │ │ │ ├── chemistryModel.C │ │ │ │ ├── chemistryModel.H │ │ │ │ └── chemistryModelI.H │ │ │ ├── makeChemistryModel.H │ │ │ ├── psiChemistryModel │ │ │ │ ├── psiChemistryModel.C │ │ │ │ ├── psiChemistryModel.H │ │ │ │ ├── psiChemistryModelI.H │ │ │ │ └── psiChemistryModels.C │ │ │ └── rhoChemistryModel │ │ │ │ ├── rhoChemistryModel.C │ │ │ │ ├── rhoChemistryModel.H │ │ │ │ ├── rhoChemistryModelI.H │ │ │ │ └── rhoChemistryModels.C │ │ └── chemistrySolver │ │ │ ├── EulerImplicit │ │ │ ├── EulerImplicit.C │ │ │ └── EulerImplicit.H │ │ │ ├── chemistrySolver │ │ │ ├── chemistrySolver.C │ │ │ ├── chemistrySolver.H │ │ │ ├── makeChemistrySolverTypes.H │ │ │ └── makeChemistrySolvers.C │ │ │ ├── noChemistrySolver │ │ │ ├── noChemistrySolver.C │ │ │ └── noChemistrySolver.H │ │ │ └── ode │ │ │ ├── ode.C │ │ │ └── ode.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 │ ├── properties │ │ ├── Allwmake │ │ ├── liquidMixtureProperties │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── liquidMixtureProperties │ │ │ │ ├── liquidMixtureProperties.C │ │ │ │ └── liquidMixtureProperties.H │ │ ├── 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 │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── 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 │ │ │ ├── liquidProperties │ │ │ │ ├── liquidProperties.C │ │ │ │ ├── liquidProperties.H │ │ │ │ └── liquidPropertiesI.H │ │ │ └── nC3H8O │ │ │ │ ├── nC3H8O.C │ │ │ │ ├── nC3H8O.H │ │ │ │ └── nC3H8OI.H │ │ ├── solidMixtureProperties │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── solidMixtureProperties │ │ │ │ ├── solidMixtureProperties.C │ │ │ │ └── solidMixtureProperties.H │ │ └── solidProperties │ │ │ ├── C │ │ │ ├── C.C │ │ │ └── C.H │ │ │ ├── CaCO3 │ │ │ ├── CaCO3.C │ │ │ └── CaCO3.H │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── ash │ │ │ ├── ash.C │ │ │ └── ash.H │ │ │ └── solidProperties │ │ │ ├── solidProperties.C │ │ │ ├── solidProperties.H │ │ │ ├── solidPropertiesI.H │ │ │ └── solidPropertiesNew.C │ ├── radiationModels │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── 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 │ │ ├── include │ │ │ ├── createIncompressibleRadiationModel.H │ │ │ └── createRadiationModel.H │ │ ├── radiationModel │ │ │ ├── P1 │ │ │ │ ├── P1.C │ │ │ │ └── P1.H │ │ │ ├── fvDOM │ │ │ │ ├── absorptionCoeffs │ │ │ │ │ ├── absorptionCoeffs.C │ │ │ │ │ ├── absorptionCoeffs.H │ │ │ │ │ └── absorptionCoeffsI.H │ │ │ │ ├── blackBodyEmission │ │ │ │ │ ├── blackBodyEmission.C │ │ │ │ │ └── blackBodyEmission.H │ │ │ │ ├── fvDOM │ │ │ │ │ ├── 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 │ │ └── submodels │ │ │ ├── absorptionEmissionModel │ │ │ ├── absorptionEmissionModel │ │ │ │ ├── absorptionEmissionModel.C │ │ │ │ ├── absorptionEmissionModel.H │ │ │ │ └── absorptionEmissionModelNew.C │ │ │ ├── binaryAbsorptionEmission │ │ │ │ ├── binaryAbsorptionEmission.C │ │ │ │ └── binaryAbsorptionEmission.H │ │ │ ├── constantAbsorptionEmission │ │ │ │ ├── constantAbsorptionEmission.C │ │ │ │ └── constantAbsorptionEmission.H │ │ │ ├── greyMeanAbsorptionEmission │ │ │ │ ├── greyMeanAbsorptionEmission.C │ │ │ │ └── greyMeanAbsorptionEmission.H │ │ │ ├── greyMeanSolidAbsorptionEmission │ │ │ │ ├── greyMeanSolidAbsorptionEmission.C │ │ │ │ └── greyMeanSolidAbsorptionEmission.H │ │ │ ├── noAbsorptionEmission │ │ │ │ ├── noAbsorptionEmission.C │ │ │ │ └── noAbsorptionEmission.H │ │ │ └── wideBandAbsorptionEmission │ │ │ │ ├── wideBandAbsorptionEmission.C │ │ │ │ └── wideBandAbsorptionEmission.H │ │ │ ├── scatterModel │ │ │ ├── constantScatter │ │ │ │ ├── constantScatter.C │ │ │ │ └── constantScatter.H │ │ │ ├── noScatter │ │ │ │ ├── noScatter.C │ │ │ │ └── noScatter.H │ │ │ └── scatterModel │ │ │ │ ├── scatterModel.C │ │ │ │ ├── scatterModel.H │ │ │ │ └── scatterModelNew.C │ │ │ └── sootModel │ │ │ ├── mixtureFractionSoot │ │ │ ├── mixtureFractionSoot.C │ │ │ ├── mixtureFractionSoot.H │ │ │ └── mixtureFractionSoots.C │ │ │ ├── noSoot │ │ │ ├── noSoot.C │ │ │ └── noSoot.H │ │ │ └── sootModel │ │ │ ├── makeSootTypes.H │ │ │ ├── sootModel.C │ │ │ ├── sootModel.H │ │ │ └── sootModelNew.C │ ├── reactionThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── chemistryReaders │ │ │ ├── chemistryReader │ │ │ │ ├── chemistryReader.C │ │ │ │ ├── chemistryReader.H │ │ │ │ └── makeChemistryReaders.C │ │ │ ├── chemkinReader │ │ │ │ ├── chemkinLexer.L │ │ │ │ ├── chemkinReader.C │ │ │ │ └── chemkinReader.H │ │ │ └── foamChemistryReader │ │ │ │ ├── foamChemistryReader.C │ │ │ │ └── foamChemistryReader.H │ │ ├── derivedFvPatchFields │ │ │ ├── fixedUnburntEnthalpy │ │ │ │ ├── fixedUnburntEnthalpyFvPatchScalarField.C │ │ │ │ └── fixedUnburntEnthalpyFvPatchScalarField.H │ │ │ ├── gradientUnburntEnthalpy │ │ │ │ ├── gradientUnburntEnthalpyFvPatchScalarField.C │ │ │ │ └── gradientUnburntEnthalpyFvPatchScalarField.H │ │ │ └── mixedUnburntEnthalpy │ │ │ │ ├── mixedUnburntEnthalpyFvPatchScalarField.C │ │ │ │ └── mixedUnburntEnthalpyFvPatchScalarField.H │ │ ├── makeReactionThermo.H │ │ ├── mixtures │ │ │ ├── SpecieMixture │ │ │ │ ├── SpecieMixture.C │ │ │ │ └── SpecieMixture.H │ │ │ ├── basicMultiComponentMixture │ │ │ │ ├── basicMultiComponentMixture.C │ │ │ │ ├── basicMultiComponentMixture.H │ │ │ │ └── basicMultiComponentMixtureI.H │ │ │ ├── egrMixture │ │ │ │ ├── egrMixture.C │ │ │ │ └── egrMixture.H │ │ │ ├── homogeneousMixture │ │ │ │ ├── homogeneousMixture.C │ │ │ │ └── homogeneousMixture.H │ │ │ ├── inhomogeneousMixture │ │ │ │ ├── inhomogeneousMixture.C │ │ │ │ └── inhomogeneousMixture.H │ │ │ ├── multiComponentMixture │ │ │ │ ├── multiComponentMixture.C │ │ │ │ └── multiComponentMixture.H │ │ │ ├── reactingMixture │ │ │ │ ├── reactingMixture.C │ │ │ │ └── reactingMixture.H │ │ │ ├── singleStepReactingMixture │ │ │ │ ├── singleStepReactingMixture.C │ │ │ │ ├── singleStepReactingMixture.H │ │ │ │ └── singleStepReactingMixtureI.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 │ ├── solidChemistryModel │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── basicSolidChemistryModel │ │ │ ├── basicSolidChemistryModel.C │ │ │ ├── basicSolidChemistryModel.H │ │ │ ├── basicSolidChemistryModelI.H │ │ │ ├── basicSolidChemistryModelNew.C │ │ │ └── basicSolidChemistryModels.C │ │ ├── makeSolidChemistryModel.H │ │ ├── pyrolysisChemistryModel │ │ │ ├── pyrolysisChemistryModel.C │ │ │ ├── pyrolysisChemistryModel.H │ │ │ └── pyrolysisChemistryModelI.H │ │ ├── solidChemistryModel │ │ │ ├── solidChemistryModel.C │ │ │ ├── solidChemistryModel.H │ │ │ └── solidChemistryModelI.H │ │ └── solidChemistrySolver │ │ │ ├── makeSolidChemistrySolverType.H │ │ │ └── makeSolidChemistrySolvers.C │ ├── solidSpecie │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── include │ │ │ └── solidThermoPhysicsTypes.H │ │ ├── reaction │ │ │ ├── Reactions │ │ │ │ └── solidReaction │ │ │ │ │ ├── solidReaction.C │ │ │ │ │ ├── solidReaction.H │ │ │ │ │ └── solidReactionI.H │ │ │ ├── reactionRate │ │ │ │ └── solidArrheniusReactionRate │ │ │ │ │ ├── solidArrheniusReactionRate.H │ │ │ │ │ └── solidArrheniusReactionRateI.H │ │ │ └── reactions │ │ │ │ ├── makeSolidReaction.H │ │ │ │ └── makeSolidReactions.C │ │ └── 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 │ │ ├── solidReactionThermo │ │ │ ├── makeReactingSolidThermo.H │ │ │ ├── solidReactionThermo.C │ │ │ ├── solidReactionThermo.H │ │ │ └── solidReactionThermos.C │ │ └── solidThermo │ │ │ ├── heSolidThermo.C │ │ │ ├── heSolidThermo.H │ │ │ ├── makeSolidThermo.H │ │ │ ├── solidThermo.C │ │ │ ├── solidThermo.H │ │ │ └── solidThermos.C │ ├── specie │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── atomicWeights │ │ │ ├── atomicWeights.C │ │ │ └── atomicWeights.H │ │ ├── equationOfState │ │ │ ├── PengRobinsonGas │ │ │ │ ├── PengRobinsonGas.C │ │ │ │ ├── PengRobinsonGas.H │ │ │ │ └── PengRobinsonGasI.H │ │ │ ├── adiabaticPerfectFluid │ │ │ │ ├── adiabaticPerfectFluid.C │ │ │ │ ├── adiabaticPerfectFluid.H │ │ │ │ └── adiabaticPerfectFluidI.H │ │ │ ├── icoPolynomial │ │ │ │ ├── icoPolynomial.C │ │ │ │ ├── icoPolynomial.H │ │ │ │ └── icoPolynomialI.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 │ │ │ └── rhoConst │ │ │ │ ├── rhoConst.C │ │ │ │ ├── rhoConst.H │ │ │ │ └── rhoConstI.H │ │ ├── include │ │ │ ├── reactionTypes.H │ │ │ └── thermoPhysicsTypes.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 │ │ │ │ └── ReversibleReaction │ │ │ │ │ ├── ReversibleReaction.C │ │ │ │ │ └── ReversibleReaction.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 │ │ │ │ ├── fallOffFunctions │ │ │ │ │ ├── LindemannFallOffFunction │ │ │ │ │ │ ├── LindemannFallOffFunction.H │ │ │ │ │ │ └── LindemannFallOffFunctionI.H │ │ │ │ │ ├── SRIFallOffFunction │ │ │ │ │ │ ├── SRIFallOffFunction.H │ │ │ │ │ │ └── SRIFallOffFunctionI.H │ │ │ │ │ └── TroeFallOffFunction │ │ │ │ │ │ ├── TroeFallOffFunction.H │ │ │ │ │ │ └── TroeFallOffFunctionI.H │ │ │ │ ├── infiniteReactionRate │ │ │ │ │ ├── infiniteReactionRate.H │ │ │ │ │ └── infiniteReactionRateI.H │ │ │ │ ├── powerSeries │ │ │ │ │ ├── powerSeriesReactionRate.H │ │ │ │ │ └── powerSeriesReactionRateI.H │ │ │ │ ├── thirdBodyArrheniusReactionRate │ │ │ │ │ ├── thirdBodyArrheniusReactionRate.H │ │ │ │ │ └── thirdBodyArrheniusReactionRateI.H │ │ │ │ └── thirdBodyEfficiencies │ │ │ │ │ ├── thirdBodyEfficiencies.H │ │ │ │ │ └── thirdBodyEfficienciesI.H │ │ │ └── reactions │ │ │ │ ├── makeLangmuirHinshelwoodReactions.C │ │ │ │ ├── makeReaction.H │ │ │ │ └── makeReactions.C │ │ ├── specie │ │ │ ├── specie.C │ │ │ ├── specie.H │ │ │ └── specieI.H │ │ ├── speciesTable │ │ │ └── speciesTable.H │ │ ├── thermo │ │ │ ├── absoluteEnthalpy │ │ │ │ └── absoluteEnthalpy.H │ │ │ ├── absoluteInternalEnergy │ │ │ │ └── absoluteInternalEnergy.H │ │ │ ├── eConst │ │ │ │ ├── eConstThermo.C │ │ │ │ ├── eConstThermo.H │ │ │ │ └── eConstThermoI.H │ │ │ ├── hConst │ │ │ │ ├── hConstThermo.C │ │ │ │ ├── hConstThermo.H │ │ │ │ └── hConstThermoI.H │ │ │ ├── hExponential │ │ │ │ ├── hExponentialThermo.C │ │ │ │ ├── hExponentialThermo.H │ │ │ │ └── hExponentialThermoI.H │ │ │ ├── hPolynomial │ │ │ │ ├── hPolynomialThermo.C │ │ │ │ ├── hPolynomialThermo.H │ │ │ │ └── hPolynomialThermoI.H │ │ │ ├── janaf │ │ │ │ ├── janafThermo.C │ │ │ │ ├── janafThermo.H │ │ │ │ └── janafThermoI.H │ │ │ ├── sensibleEnthalpy │ │ │ │ └── sensibleEnthalpy.H │ │ │ ├── sensibleInternalEnergy │ │ │ │ └── sensibleInternalEnergy.H │ │ │ └── thermo │ │ │ │ ├── thermo.C │ │ │ │ ├── thermo.H │ │ │ │ └── thermoI.H │ │ └── transport │ │ │ ├── const │ │ │ ├── constTransport.C │ │ │ ├── constTransport.H │ │ │ └── constTransportI.H │ │ │ ├── polynomial │ │ │ ├── polynomialTransport.C │ │ │ ├── polynomialTransport.H │ │ │ └── polynomialTransportI.H │ │ │ └── sutherland │ │ │ ├── sutherlandTransport.C │ │ │ ├── sutherlandTransport.H │ │ │ └── sutherlandTransportI.H │ └── thermophysicalFunctions │ │ ├── APIfunctions │ │ └── APIdiffCoefFunc │ │ │ ├── APIdiffCoefFunc.C │ │ │ └── APIdiffCoefFunc.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── NSRDSfunctions │ │ ├── NSRDSfunc0 │ │ │ ├── NSRDSfunc0.C │ │ │ └── NSRDSfunc0.H │ │ ├── NSRDSfunc1 │ │ │ ├── NSRDSfunc1.C │ │ │ └── NSRDSfunc1.H │ │ ├── NSRDSfunc14 │ │ │ ├── NSRDSfunc14.C │ │ │ └── NSRDSfunc14.H │ │ ├── NSRDSfunc2 │ │ │ ├── NSRDSfunc2.C │ │ │ └── NSRDSfunc2.H │ │ ├── NSRDSfunc3 │ │ │ ├── NSRDSfunc3.C │ │ │ └── NSRDSfunc3.H │ │ ├── NSRDSfunc4 │ │ │ ├── NSRDSfunc4.C │ │ │ └── NSRDSfunc4.H │ │ ├── NSRDSfunc5 │ │ │ ├── NSRDSfunc5.C │ │ │ └── NSRDSfunc5.H │ │ ├── NSRDSfunc6 │ │ │ ├── NSRDSfunc6.C │ │ │ └── NSRDSfunc6.H │ │ └── NSRDSfunc7 │ │ │ ├── NSRDSfunc7.C │ │ │ └── NSRDSfunc7.H │ │ └── thermophysicalFunction │ │ ├── thermophysicalFunction.C │ │ └── thermophysicalFunction.H ├── transportModels │ ├── Allwmake │ ├── compressible │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── compressibleTransportModel │ │ │ ├── compressibleTransportModel.C │ │ │ └── compressibleTransportModel.H │ ├── immiscibleIncompressibleTwoPhaseMixture │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── immiscibleIncompressibleTwoPhaseMixture.C │ │ └── immiscibleIncompressibleTwoPhaseMixture.H │ ├── incompressible │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── incompressibleTwoPhaseMixture │ │ │ ├── incompressibleTwoPhaseMixture.C │ │ │ └── incompressibleTwoPhaseMixture.H │ │ ├── singlePhaseTransportModel │ │ │ ├── singlePhaseTransportModel.C │ │ │ └── singlePhaseTransportModel.H │ │ ├── transportModel │ │ │ ├── transportModel.C │ │ │ └── transportModel.H │ │ └── viscosityModels │ │ │ ├── BirdCarreau │ │ │ ├── BirdCarreau.C │ │ │ └── BirdCarreau.H │ │ │ ├── CrossPowerLaw │ │ │ ├── CrossPowerLaw.C │ │ │ └── CrossPowerLaw.H │ │ │ ├── HerschelBulkley │ │ │ ├── HerschelBulkley.C │ │ │ └── HerschelBulkley.H │ │ │ ├── Newtonian │ │ │ ├── Newtonian.C │ │ │ └── Newtonian.H │ │ │ ├── powerLaw │ │ │ ├── powerLaw.C │ │ │ └── powerLaw.H │ │ │ └── viscosityModel │ │ │ ├── viscosityModel.C │ │ │ ├── viscosityModel.H │ │ │ └── viscosityModelNew.C │ ├── interfaceProperties │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── interfaceCompression │ │ │ ├── interfaceCompression.C │ │ │ └── interfaceCompression.H │ │ ├── interfaceProperties.C │ │ └── interfaceProperties.H │ ├── twoPhaseMixture │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── 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 │ │ └── timeVaryingAlphaContactAngle │ │ │ ├── timeVaryingAlphaContactAngleFvPatchScalarField.C │ │ │ └── timeVaryingAlphaContactAngleFvPatchScalarField.H │ │ └── alphaFixedPressure │ │ ├── alphaFixedPressureFvPatchScalarField.C │ │ └── alphaFixedPressureFvPatchScalarField.H ├── triSurface │ ├── Make │ │ ├── files │ │ └── options │ ├── faceTriangulation │ │ ├── faceTriangulation.C │ │ └── faceTriangulation.H │ ├── 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 │ │ │ ├── DX │ │ │ │ └── writeDX.C │ │ │ ├── GTS │ │ │ │ ├── readGTS.C │ │ │ │ └── writeGTS.C │ │ │ ├── NAS │ │ │ │ └── readNAS.C │ │ │ ├── OBJ │ │ │ │ ├── readOBJ.C │ │ │ │ └── writeOBJ.C │ │ │ ├── OFF │ │ │ │ ├── readOFF.C │ │ │ │ └── writeOFF.C │ │ │ ├── SMESH │ │ │ │ └── writeSMESH.C │ │ │ ├── STL │ │ │ │ ├── STLtriangle.H │ │ │ │ ├── STLtriangleI.H │ │ │ │ ├── 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 └── turbulenceModels │ ├── Allwmake │ ├── LES │ ├── Allwmake │ ├── LESdeltas │ │ ├── LESdelta │ │ │ ├── LESdelta.C │ │ │ └── LESdelta.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── PrandtlDelta │ │ │ ├── PrandtlDelta.C │ │ │ └── PrandtlDelta.H │ │ ├── cubeRootVolDelta │ │ │ ├── cubeRootVolDelta.C │ │ │ └── cubeRootVolDelta.H │ │ ├── maxDeltaxyz │ │ │ ├── maxDeltaxyz.C │ │ │ └── maxDeltaxyz.H │ │ └── smoothDelta │ │ │ ├── smoothDelta.C │ │ │ ├── smoothDelta.H │ │ │ └── smoothDeltaDeltaDataI.H │ └── LESfilters │ │ ├── LESfilter │ │ ├── LESfilter.C │ │ └── LESfilter.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── anisotropicFilter │ │ ├── anisotropicFilter.C │ │ └── anisotropicFilter.H │ │ ├── laplaceFilter │ │ ├── laplaceFilter.C │ │ └── laplaceFilter.H │ │ └── simpleFilter │ │ ├── simpleFilter.C │ │ └── simpleFilter.H │ ├── compressible │ ├── Allwmake │ ├── LES │ │ ├── DESModel │ │ │ ├── DESModel.C │ │ │ ├── DESModel.H │ │ │ └── DESModelDoc.H │ │ ├── GenEddyVisc │ │ │ ├── GenEddyVisc.C │ │ │ └── GenEddyVisc.H │ │ ├── GenSGSStress │ │ │ ├── GenSGSStress.C │ │ │ └── GenSGSStress.H │ │ ├── LESModel │ │ │ ├── LESModel.C │ │ │ ├── LESModel.H │ │ │ └── LESModelDoc.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── Smagorinsky │ │ │ ├── Smagorinsky.C │ │ │ └── Smagorinsky.H │ │ ├── SpalartAllmaras │ │ │ ├── SpalartAllmaras.C │ │ │ └── SpalartAllmaras.H │ │ ├── compressibleLESdelta │ │ │ ├── compressibleLESdelta.C │ │ │ └── compressibleLESdelta.H │ │ ├── homogeneousDynOneEqEddy │ │ │ ├── homogeneousDynOneEqEddy.C │ │ │ └── homogeneousDynOneEqEddy.H │ │ ├── lowReOneEqEddy │ │ │ ├── lowReOneEqEddy.C │ │ │ └── lowReOneEqEddy.H │ │ ├── oneEqEddy │ │ │ ├── oneEqEddy.C │ │ │ └── oneEqEddy.H │ │ └── vanDriestDelta │ │ │ ├── vanDriestDelta.C │ │ │ └── vanDriestDelta.H │ ├── RAS │ │ ├── LaunderSharmaKE │ │ │ ├── LaunderSharmaKE.C │ │ │ └── LaunderSharmaKE.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── RASModel │ │ │ ├── RASModel.C │ │ │ ├── RASModel.H │ │ │ └── RASModelDoc.H │ │ ├── RNGkEpsilon │ │ │ ├── RNGkEpsilon.C │ │ │ └── RNGkEpsilon.H │ │ ├── SpalartAllmaras │ │ │ ├── SpalartAllmaras.C │ │ │ └── SpalartAllmaras.H │ │ ├── backwardsCompatibility │ │ │ └── wallFunctions │ │ │ │ ├── backwardsCompatibilityWallFunctions.C │ │ │ │ ├── backwardsCompatibilityWallFunctions.H │ │ │ │ └── backwardsCompatibilityWallFunctionsTemplates.C │ │ ├── derivedFvPatchFields │ │ │ ├── convectiveHeatTransfer │ │ │ │ ├── convectiveHeatTransferFvPatchScalarField.C │ │ │ │ └── convectiveHeatTransferFvPatchScalarField.H │ │ │ ├── doc │ │ │ │ └── compressibleRASBoundaryConditionsDoc.H │ │ │ ├── turbulentMixingLengthDissipationRateInlet │ │ │ │ ├── turbulentMixingLengthDissipationRateInletFvPatchScalarField.C │ │ │ │ └── turbulentMixingLengthDissipationRateInletFvPatchScalarField.H │ │ │ ├── turbulentMixingLengthFrequencyInlet │ │ │ │ ├── turbulentMixingLengthFrequencyInletFvPatchScalarField.C │ │ │ │ └── turbulentMixingLengthFrequencyInletFvPatchScalarField.H │ │ │ └── wallFunctions │ │ │ │ ├── alphatWallFunctions │ │ │ │ ├── alphatJayatillekeWallFunction │ │ │ │ │ ├── alphatJayatillekeWallFunctionFvPatchScalarField.C │ │ │ │ │ └── alphatJayatillekeWallFunctionFvPatchScalarField.H │ │ │ │ └── alphatWallFunction │ │ │ │ │ ├── alphatWallFunctionFvPatchScalarField.C │ │ │ │ │ └── alphatWallFunctionFvPatchScalarField.H │ │ │ │ ├── epsilonWallFunctions │ │ │ │ ├── epsilonLowReWallFunction │ │ │ │ │ ├── epsilonLowReWallFunctionFvPatchScalarField.C │ │ │ │ │ └── epsilonLowReWallFunctionFvPatchScalarField.H │ │ │ │ └── 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 │ │ │ │ ├── mutWallFunctions │ │ │ │ ├── mutLowReWallFunction │ │ │ │ │ ├── mutLowReWallFunctionFvPatchScalarField.C │ │ │ │ │ └── mutLowReWallFunctionFvPatchScalarField.H │ │ │ │ ├── mutURoughWallFunction │ │ │ │ │ ├── mutURoughWallFunctionFvPatchScalarField.C │ │ │ │ │ └── mutURoughWallFunctionFvPatchScalarField.H │ │ │ │ ├── mutUSpaldingWallFunction │ │ │ │ │ ├── mutUSpaldingWallFunctionFvPatchScalarField.C │ │ │ │ │ └── mutUSpaldingWallFunctionFvPatchScalarField.H │ │ │ │ ├── mutUWallFunction │ │ │ │ │ ├── mutUWallFunctionFvPatchScalarField.C │ │ │ │ │ └── mutUWallFunctionFvPatchScalarField.H │ │ │ │ ├── mutWallFunction │ │ │ │ │ ├── mutWallFunctionFvPatchScalarField.C │ │ │ │ │ └── mutWallFunctionFvPatchScalarField.H │ │ │ │ ├── mutkRoughWallFunction │ │ │ │ │ ├── mutkRoughWallFunctionFvPatchScalarField.C │ │ │ │ │ └── mutkRoughWallFunctionFvPatchScalarField.H │ │ │ │ └── mutkWallFunction │ │ │ │ │ ├── mutkWallFunctionFvPatchScalarField.C │ │ │ │ │ └── mutkWallFunctionFvPatchScalarField.H │ │ │ │ ├── omegaWallFunctions │ │ │ │ └── omegaWallFunction │ │ │ │ │ ├── omegaWallFunctionFvPatchScalarField.C │ │ │ │ │ └── omegaWallFunctionFvPatchScalarField.H │ │ │ │ └── v2WallFunctions │ │ │ │ └── v2WallFunction │ │ │ │ ├── v2WallFunctionFvPatchScalarField.C │ │ │ │ └── v2WallFunctionFvPatchScalarField.H │ │ ├── kEpsilon │ │ │ ├── kEpsilon.C │ │ │ └── kEpsilon.H │ │ ├── kOmegaSST │ │ │ ├── kOmegaSST.C │ │ │ └── kOmegaSST.H │ │ ├── laminar │ │ │ ├── laminar.C │ │ │ └── laminar.H │ │ ├── realizableKE │ │ │ ├── realizableKE.C │ │ │ └── realizableKE.H │ │ └── v2f │ │ │ ├── v2f.C │ │ │ └── v2f.H │ └── turbulenceModel │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── derivedFvPatchFields │ │ ├── externalCoupledTemperatureMixed │ │ │ ├── externalCoupledTemperatureMixedFvPatchScalarField.C │ │ │ └── externalCoupledTemperatureMixedFvPatchScalarField.H │ │ ├── externalWallHeatFluxTemperature │ │ │ ├── externalWallHeatFluxTemperatureFvPatchScalarField.C │ │ │ └── externalWallHeatFluxTemperatureFvPatchScalarField.H │ │ ├── temperatureCoupledBase │ │ │ ├── temperatureCoupledBase.C │ │ │ └── temperatureCoupledBase.H │ │ ├── thermalBaffle1D │ │ │ ├── thermalBaffle1DFvPatchScalarField.C │ │ │ ├── thermalBaffle1DFvPatchScalarField.H │ │ │ ├── thermalBaffle1DFvPatchScalarFields.C │ │ │ └── thermalBaffle1DFvPatchScalarFields.H │ │ ├── totalFlowRateAdvectiveDiffusive │ │ │ ├── totalFlowRateAdvectiveDiffusiveFvPatchScalarField.C │ │ │ └── totalFlowRateAdvectiveDiffusiveFvPatchScalarField.H │ │ ├── turbulentHeatFluxTemperature │ │ │ ├── turbulentHeatFluxTemperatureFvPatchScalarField.C │ │ │ └── turbulentHeatFluxTemperatureFvPatchScalarField.H │ │ ├── turbulentTemperatureCoupledBaffleMixed │ │ │ ├── turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C │ │ │ └── turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H │ │ ├── turbulentTemperatureRadCoupledMixed │ │ │ ├── turbulentTemperatureRadCoupledMixedFvPatchScalarField.C │ │ │ └── turbulentTemperatureRadCoupledMixedFvPatchScalarField.H │ │ └── wallHeatTransfer │ │ │ ├── wallHeatTransferFvPatchScalarField.C │ │ │ └── wallHeatTransferFvPatchScalarField.H │ │ ├── laminar │ │ ├── laminar.C │ │ └── laminar.H │ │ ├── turbulenceModel.C │ │ ├── turbulenceModel.H │ │ └── turbulenceModelDoc.H │ ├── derivedFvPatchFields │ ├── Make │ │ ├── files │ │ └── options │ ├── fixedShearStress │ │ ├── fixedShearStressFvPatchVectorField.C │ │ └── fixedShearStressFvPatchVectorField.H │ └── porousBafflePressure │ │ ├── porousBafflePressureFvPatchField.C │ │ ├── porousBafflePressureFvPatchField.H │ │ ├── porousBafflePressureFvPatchFieldFwd.H │ │ ├── porousBafflePressureFvPatchFields.C │ │ └── porousBafflePressureFvPatchFields.H │ └── incompressible │ ├── Allwmake │ ├── LES │ ├── DESModel │ │ ├── DESModel.C │ │ ├── DESModel.H │ │ └── DESModelDoc.H │ ├── GenEddyVisc │ │ ├── GenEddyVisc.C │ │ └── GenEddyVisc.H │ ├── GenSGSStress │ │ ├── GenSGSStress.C │ │ └── GenSGSStress.H │ ├── LESModel │ │ ├── LESModel.C │ │ ├── LESModel.H │ │ └── LESModelDoc.H │ ├── Make │ │ ├── files │ │ └── options │ ├── Smagorinsky │ │ ├── Smagorinsky.C │ │ └── Smagorinsky.H │ ├── Smagorinsky2 │ │ ├── Smagorinsky2.C │ │ └── Smagorinsky2.H │ ├── SpalartAllmaras │ │ ├── SpalartAllmaras.C │ │ └── SpalartAllmaras.H │ ├── SpalartAllmarasDDES │ │ ├── SpalartAllmarasDDES.C │ │ └── SpalartAllmarasDDES.H │ ├── SpalartAllmarasIDDES │ │ ├── IDDESDelta │ │ │ ├── IDDESDelta.C │ │ │ └── IDDESDelta.H │ │ ├── SpalartAllmarasIDDES.C │ │ └── SpalartAllmarasIDDES.H │ ├── dynLagrangian │ │ ├── dynLagrangian.C │ │ └── dynLagrangian.H │ ├── dynOneEqEddy │ │ ├── dynOneEqEddy.C │ │ └── dynOneEqEddy.H │ ├── homogeneousDynOneEqEddy │ │ ├── homogeneousDynOneEqEddy.C │ │ └── homogeneousDynOneEqEddy.H │ ├── homogeneousDynSmagorinsky │ │ ├── homogeneousDynSmagorinsky.C │ │ └── homogeneousDynSmagorinsky.H │ ├── incompressibleLESdelta │ │ ├── incompressibleLESdelta.C │ │ └── incompressibleLESdelta.H │ ├── kOmegaSSTSAS │ │ ├── kOmegaSSTSAS.C │ │ └── kOmegaSSTSAS.H │ ├── laminar │ │ ├── laminar.C │ │ └── laminar.H │ ├── mixedSmagorinsky │ │ ├── mixedSmagorinsky.C │ │ └── mixedSmagorinsky.H │ ├── oneEqEddy │ │ ├── oneEqEddy.C │ │ └── oneEqEddy.H │ ├── scaleSimilarity │ │ ├── scaleSimilarity.C │ │ └── scaleSimilarity.H │ ├── spectEddyVisc │ │ ├── spectEddyVisc.C │ │ └── spectEddyVisc.H │ └── vanDriestDelta │ │ ├── vanDriestDelta.C │ │ └── vanDriestDelta.H │ ├── RAS │ ├── LaunderSharmaKE │ │ ├── LaunderSharmaKE.C │ │ └── LaunderSharmaKE.H │ ├── LienCubicKE │ │ ├── LienCubicKE.C │ │ └── LienCubicKE.H │ ├── Make │ │ ├── files │ │ └── options │ ├── RASModel │ │ ├── RASModel.C │ │ ├── RASModel.H │ │ └── RASModelDoc.H │ ├── RNGkEpsilon │ │ ├── RNGkEpsilon.C │ │ └── RNGkEpsilon.H │ ├── SpalartAllmaras │ │ ├── SpalartAllmaras.C │ │ └── SpalartAllmaras.H │ ├── backwardsCompatibility │ │ └── wallFunctions │ │ │ ├── backwardsCompatibilityWallFunctions.C │ │ │ ├── backwardsCompatibilityWallFunctions.H │ │ │ └── backwardsCompatibilityWallFunctionsTemplates.C │ ├── derivedFvPatchFields │ │ ├── atmBoundaryLayerInletEpsilon │ │ │ ├── atmBoundaryLayerInletEpsilonFvPatchScalarField.C │ │ │ └── atmBoundaryLayerInletEpsilonFvPatchScalarField.H │ │ ├── doc │ │ │ └── incompressibleRASBoundaryConditionsDoc.H │ │ ├── turbulentMixingLengthDissipationRateInlet │ │ │ ├── turbulentMixingLengthDissipationRateInletFvPatchScalarField.C │ │ │ └── turbulentMixingLengthDissipationRateInletFvPatchScalarField.H │ │ ├── turbulentMixingLengthFrequencyInlet │ │ │ ├── turbulentMixingLengthFrequencyInletFvPatchScalarField.C │ │ │ └── turbulentMixingLengthFrequencyInletFvPatchScalarField.H │ │ └── wallFunctions │ │ │ ├── alphatWallFunctions │ │ │ └── alphatJayatillekeWallFunction │ │ │ │ ├── alphatJayatillekeWallFunctionFvPatchScalarField.C │ │ │ │ └── alphatJayatillekeWallFunctionFvPatchScalarField.H │ │ │ ├── epsilonWallFunctions │ │ │ ├── epsilonLowReWallFunction │ │ │ │ ├── epsilonLowReWallFunctionFvPatchScalarField.C │ │ │ │ └── epsilonLowReWallFunctionFvPatchScalarField.H │ │ │ └── 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 │ │ │ ├── nutkAtmRoughWallFunction │ │ │ │ ├── nutkAtmRoughWallFunctionFvPatchScalarField.C │ │ │ │ └── nutkAtmRoughWallFunctionFvPatchScalarField.H │ │ │ ├── nutkRoughWallFunction │ │ │ │ ├── nutkRoughWallFunctionFvPatchScalarField.C │ │ │ │ └── nutkRoughWallFunctionFvPatchScalarField.H │ │ │ └── nutkWallFunction │ │ │ │ ├── nutkWallFunctionFvPatchScalarField.C │ │ │ │ └── nutkWallFunctionFvPatchScalarField.H │ │ │ ├── omegaWallFunctions │ │ │ └── omegaWallFunction │ │ │ │ ├── omegaWallFunctionFvPatchScalarField.C │ │ │ │ └── omegaWallFunctionFvPatchScalarField.H │ │ │ └── v2WallFunctions │ │ │ └── v2WallFunction │ │ │ ├── v2WallFunctionFvPatchScalarField.C │ │ │ └── v2WallFunctionFvPatchScalarField.H │ ├── include │ │ ├── nonLinearWallFunctionsI.H │ │ ├── wallDissipationI.H │ │ └── wallNonlinearViscosityI.H │ ├── kEpsilon │ │ ├── kEpsilon.C │ │ └── kEpsilon.H │ ├── kOmega │ │ ├── kOmega.C │ │ └── kOmega.H │ ├── kOmegaSST │ │ ├── kOmegaSST.C │ │ └── kOmegaSST.H │ ├── kkLOmega │ │ ├── kkLOmega.C │ │ └── kkLOmega.H │ ├── laminar │ │ ├── laminar.C │ │ └── laminar.H │ ├── qZeta │ │ ├── qZeta.C │ │ └── qZeta.H │ ├── realizableKE │ │ ├── realizableKE.C │ │ └── realizableKE.H │ └── v2f │ │ ├── v2f.C │ │ └── v2f.H │ └── turbulenceModel │ ├── Make │ ├── files │ └── options │ ├── derivedFvPatchFields │ ├── atmBoundaryLayerInletVelocity │ │ ├── atmBoundaryLayerInletVelocityFvPatchVectorField.C │ │ └── atmBoundaryLayerInletVelocityFvPatchVectorField.H │ └── turbulentHeatFluxTemperature │ │ ├── turbulentHeatFluxTemperatureFvPatchScalarField.C │ │ └── turbulentHeatFluxTemperatureFvPatchScalarField.H │ ├── laminar │ ├── laminar.C │ └── laminar.H │ ├── turbulenceModel.C │ ├── turbulenceModel.H │ └── turbulenceModelDoc.H └── wmake ├── Makefile ├── MakefileApps ├── MakefileFiles ├── MakefileOptions ├── makeWmake ├── rules ├── General │ ├── CGAL │ ├── X │ ├── bison │ ├── btyacc │ ├── btyacc++ │ ├── byacc │ ├── coco-cpp │ ├── flex │ ├── flex++ │ ├── general │ ├── moc │ ├── mplib │ ├── mplibGAMMA │ ├── mplibMPICH │ ├── mplibMPICH-GM │ ├── mplibMVAPICH2 │ ├── mplibOPENMPI │ ├── mplibQSMPI │ ├── mplibSGIMPI │ ├── mplibSYSTEMOPENMPI │ ├── sourceToDep │ ├── standard │ ├── version │ └── yacc ├── linux64Clang │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ ├── general │ ├── mplibHPMPI │ └── mplibINTELMPI └── linux64Nvcc │ ├── c │ ├── c++ │ ├── c++Debug │ ├── c++Opt │ ├── c++Prof │ ├── cDebug │ ├── cOpt │ ├── cProf │ ├── general │ ├── mplibHPMPI │ └── mplibINTELMPI ├── scripts ├── addCompile ├── makeDerivedFiles ├── makeDir ├── makeFiles ├── makeOptions └── makeTargetDir ├── src ├── Makefile ├── dirToString.c ├── makeParserCode ├── wmkdep.l ├── wmkdepend.cpp ├── wmkdependParser.atg ├── wmkdependParser.cpp ├── wmkdependParser.h ├── wmkdependScanner.cpp └── wmkdependScanner.h ├── wclean ├── wcleanAll ├── wcleanLnIncludeAll ├── wcleanMachine ├── wmake ├── wmakeCheckPwd ├── wmakeFilesAndOptions ├── wmakeFindEmptyMake ├── wmakeLnInclude ├── wmakeLnIncludeAll ├── wmakePrintBuild ├── wmakeScheduler └── wmakeSchedulerUptime /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/Allwmake -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/README.md -------------------------------------------------------------------------------- /applications/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/applications/Allwmake -------------------------------------------------------------------------------- /applications/solvers/heatTransfer/chtMultiRegionFoam/fluid/initContinuityErrs.H: -------------------------------------------------------------------------------- 1 | List cumulativeContErr(fluidRegions.size(), 0.0); 2 | -------------------------------------------------------------------------------- /applications/solvers/multiphase/interFoam/porousInterFoam/createPorousZones.H: -------------------------------------------------------------------------------- 1 | IOporosityModelList pZones(mesh); 2 | -------------------------------------------------------------------------------- /bin/engridFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/engridFoam -------------------------------------------------------------------------------- /bin/findEmptyMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/findEmptyMake -------------------------------------------------------------------------------- /bin/finddep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/finddep -------------------------------------------------------------------------------- /bin/foamAllHC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamAllHC -------------------------------------------------------------------------------- /bin/foamCheckJobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamCheckJobs -------------------------------------------------------------------------------- /bin/foamCleanPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamCleanPath -------------------------------------------------------------------------------- /bin/foamCleanTutorials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamCleanTutorials -------------------------------------------------------------------------------- /bin/foamClearPolyMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamClearPolyMesh -------------------------------------------------------------------------------- /bin/foamCopySettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamCopySettings -------------------------------------------------------------------------------- /bin/foamDistccd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamDistccd -------------------------------------------------------------------------------- /bin/foamEbrowse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamEbrowse -------------------------------------------------------------------------------- /bin/foamEndJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamEndJob -------------------------------------------------------------------------------- /bin/foamEtcFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamEtcFile -------------------------------------------------------------------------------- /bin/foamExec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamExec -------------------------------------------------------------------------------- /bin/foamGraphExecTime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamGraphExecTime -------------------------------------------------------------------------------- /bin/foamGraphResKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamGraphResKE -------------------------------------------------------------------------------- /bin/foamGraphResUVWP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamGraphResUVWP -------------------------------------------------------------------------------- /bin/foamInstallationTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamInstallationTest -------------------------------------------------------------------------------- /bin/foamJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamJob -------------------------------------------------------------------------------- /bin/foamLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamLog -------------------------------------------------------------------------------- /bin/foamNew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamNew -------------------------------------------------------------------------------- /bin/foamNewCase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamNewCase -------------------------------------------------------------------------------- /bin/foamNewSource: -------------------------------------------------------------------------------- 1 | ../etc/codeTemplates/source/foamNewSource -------------------------------------------------------------------------------- /bin/foamNewTemplate: -------------------------------------------------------------------------------- 1 | ../etc/codeTemplates/template/foamNewTemplate -------------------------------------------------------------------------------- /bin/foamPack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPack -------------------------------------------------------------------------------- /bin/foamPackBin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPackBin -------------------------------------------------------------------------------- /bin/foamPackBinAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPackBinAll -------------------------------------------------------------------------------- /bin/foamPackDeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPackDeps -------------------------------------------------------------------------------- /bin/foamPackDoxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPackDoxygen -------------------------------------------------------------------------------- /bin/foamPackMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPackMake -------------------------------------------------------------------------------- /bin/foamPackSource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPackSource -------------------------------------------------------------------------------- /bin/foamPackThirdParty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPackThirdParty -------------------------------------------------------------------------------- /bin/foamPackThirdPartyBin: -------------------------------------------------------------------------------- 1 | foamPackBin -------------------------------------------------------------------------------- /bin/foamPackThirdPartyBinAll: -------------------------------------------------------------------------------- 1 | foamPackBinAll -------------------------------------------------------------------------------- /bin/foamPackThirdPartyDeps: -------------------------------------------------------------------------------- 1 | foamPackDeps -------------------------------------------------------------------------------- /bin/foamPackThirdPartyMake: -------------------------------------------------------------------------------- 1 | foamPackMake -------------------------------------------------------------------------------- /bin/foamPrintJobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamPrintJobs -------------------------------------------------------------------------------- /bin/foamProcessInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamProcessInfo -------------------------------------------------------------------------------- /bin/foamRunTutorials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamRunTutorials -------------------------------------------------------------------------------- /bin/foamSolverSweeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamSolverSweeps -------------------------------------------------------------------------------- /bin/foamSystemCheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamSystemCheck -------------------------------------------------------------------------------- /bin/foamTags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamTags -------------------------------------------------------------------------------- /bin/foamUpdateCaseFileHeader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamUpdateCaseFileHeader -------------------------------------------------------------------------------- /bin/foamUpgradeTurbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/foamUpgradeTurbulenceProperties -------------------------------------------------------------------------------- /bin/mpirunDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/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/SimFlowCFD/RapidCFD-dev/HEAD/bin/paraFoam -------------------------------------------------------------------------------- /bin/rmclassall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/rmclassall -------------------------------------------------------------------------------- /bin/rmcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/rmcore -------------------------------------------------------------------------------- /bin/rmdepall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/rmdepall -------------------------------------------------------------------------------- /bin/rmdepold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/rmdepold -------------------------------------------------------------------------------- /bin/rmoall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/rmoall -------------------------------------------------------------------------------- /bin/rm~all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/rm~all -------------------------------------------------------------------------------- /bin/tools/CleanFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/CleanFunctions -------------------------------------------------------------------------------- /bin/tools/MakefileDirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/MakefileDirs -------------------------------------------------------------------------------- /bin/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/README -------------------------------------------------------------------------------- /bin/tools/RunFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/RunFunctions -------------------------------------------------------------------------------- /bin/tools/doxyFilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/doxyFilter -------------------------------------------------------------------------------- /bin/tools/doxyFilter-ignore.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/doxyFilter-ignore.awk -------------------------------------------------------------------------------- /bin/tools/doxyFilter-table.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/doxyFilter-table.awk -------------------------------------------------------------------------------- /bin/tools/doxyFilter-top.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/doxyFilter-top.awk -------------------------------------------------------------------------------- /bin/tools/doxyFilter.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/doxyFilter.awk -------------------------------------------------------------------------------- /bin/tools/doxyFilter.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/doxyFilter.sed -------------------------------------------------------------------------------- /bin/tools/foamConfigurePaths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/foamConfigurePaths -------------------------------------------------------------------------------- /bin/tools/foamListBinDirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/foamListBinDirs -------------------------------------------------------------------------------- /bin/tools/foamListSourceFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/foamListSourceFiles -------------------------------------------------------------------------------- /bin/tools/foamListThirdPartyBinDirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/foamListThirdPartyBinDirs -------------------------------------------------------------------------------- /bin/tools/foamLog.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/foamLog.db -------------------------------------------------------------------------------- /bin/tools/gtagsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/gtagsrc -------------------------------------------------------------------------------- /bin/tools/inlineReplace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/inlineReplace -------------------------------------------------------------------------------- /bin/tools/org-batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/org-batch -------------------------------------------------------------------------------- /bin/tools/pre-commit-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/pre-commit-hook -------------------------------------------------------------------------------- /bin/tools/pre-receive-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/pre-receive-hook -------------------------------------------------------------------------------- /bin/tools/replaceAllShellSun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/replaceAllShellSun -------------------------------------------------------------------------------- /bin/tools/scanpackages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/tools/scanpackages -------------------------------------------------------------------------------- /bin/touchapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/touchapp -------------------------------------------------------------------------------- /bin/touchdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/touchdep -------------------------------------------------------------------------------- /bin/touchlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/touchlib -------------------------------------------------------------------------------- /bin/toucho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/bin/toucho -------------------------------------------------------------------------------- /etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/bashrc -------------------------------------------------------------------------------- /etc/caseDicts/foamyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/caseDicts/foamyHexMeshDict -------------------------------------------------------------------------------- /etc/caseDicts/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/caseDicts/meshQualityDict -------------------------------------------------------------------------------- /etc/caseDicts/setConstraintTypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/caseDicts/setConstraintTypes -------------------------------------------------------------------------------- /etc/cellModels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/cellModels -------------------------------------------------------------------------------- /etc/codeTemplates/foamCommentStyles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/foamCommentStyles -------------------------------------------------------------------------------- /etc/codeTemplates/foamScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/foamScript -------------------------------------------------------------------------------- /etc/codeTemplates/source/_Template.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/source/_Template.C -------------------------------------------------------------------------------- /etc/codeTemplates/source/_Template.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/source/_Template.H -------------------------------------------------------------------------------- /etc/codeTemplates/source/_TemplateApp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/source/_TemplateApp.C -------------------------------------------------------------------------------- /etc/codeTemplates/source/_TemplateI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/source/_TemplateI.H -------------------------------------------------------------------------------- /etc/codeTemplates/source/_TemplateIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/source/_TemplateIO.C -------------------------------------------------------------------------------- /etc/codeTemplates/source/foamNewSource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/source/foamNewSource -------------------------------------------------------------------------------- /etc/codeTemplates/template/_TemplateTemplate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/template/_TemplateTemplate.C -------------------------------------------------------------------------------- /etc/codeTemplates/template/_TemplateTemplate.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/template/_TemplateTemplate.H -------------------------------------------------------------------------------- /etc/codeTemplates/template/_TemplateTemplateI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/template/_TemplateTemplateI.H -------------------------------------------------------------------------------- /etc/codeTemplates/template/foamNewTemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/codeTemplates/template/foamNewTemplate -------------------------------------------------------------------------------- /etc/config/CGAL.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/CGAL.csh -------------------------------------------------------------------------------- /etc/config/CGAL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/CGAL.sh -------------------------------------------------------------------------------- /etc/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/README -------------------------------------------------------------------------------- /etc/config/aliases.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/aliases.csh -------------------------------------------------------------------------------- /etc/config/aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/aliases.sh -------------------------------------------------------------------------------- /etc/config/ensight.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/ensight.csh -------------------------------------------------------------------------------- /etc/config/ensight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/ensight.sh -------------------------------------------------------------------------------- /etc/config/example/compiler.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/example/compiler.csh -------------------------------------------------------------------------------- /etc/config/example/compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/example/compiler.sh -------------------------------------------------------------------------------- /etc/config/example/openmpi.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/example/openmpi.csh -------------------------------------------------------------------------------- /etc/config/example/openmpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/example/openmpi.sh -------------------------------------------------------------------------------- /etc/config/example/paraview.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/example/paraview.csh -------------------------------------------------------------------------------- /etc/config/example/paraview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/example/paraview.sh -------------------------------------------------------------------------------- /etc/config/example/prefs.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/example/prefs.csh -------------------------------------------------------------------------------- /etc/config/example/prefs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/example/prefs.sh -------------------------------------------------------------------------------- /etc/config/gperftools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/gperftools.sh -------------------------------------------------------------------------------- /etc/config/metis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/metis.sh -------------------------------------------------------------------------------- /etc/config/paraview.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/paraview.csh -------------------------------------------------------------------------------- /etc/config/paraview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/paraview.sh -------------------------------------------------------------------------------- /etc/config/scotch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/scotch.sh -------------------------------------------------------------------------------- /etc/config/settings.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/settings.csh -------------------------------------------------------------------------------- /etc/config/settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/settings.sh -------------------------------------------------------------------------------- /etc/config/unset.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/unset.csh -------------------------------------------------------------------------------- /etc/config/unset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/config/unset.sh -------------------------------------------------------------------------------- /etc/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/controlDict -------------------------------------------------------------------------------- /etc/cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/cshrc -------------------------------------------------------------------------------- /etc/thermoData/therm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/thermoData/therm.dat -------------------------------------------------------------------------------- /etc/thermoData/thermoData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/etc/thermoData/thermoData -------------------------------------------------------------------------------- /src/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Allwmake -------------------------------------------------------------------------------- /src/OSspecific/POSIX/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/Allwmake -------------------------------------------------------------------------------- /src/OSspecific/POSIX/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/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/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/POSIX.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/POSIX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/POSIX.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/clockTime/clockTime.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/clockTime/clockTime.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/clockTime/clockTime.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/clockTime/clockTime.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/cpuTime/cpuTime.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/cpuTime/cpuTime.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/cpuTime/cpuTime.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/cpuTime/cpuTime.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/dummyPrintStack.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/dummyPrintStack.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/fileMonitor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/fileMonitor.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/fileMonitor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/fileMonitor.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/fileStat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/fileStat.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/fileStat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/fileStat.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/memInfo/memInfo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/memInfo/memInfo.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/memInfo/memInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/memInfo/memInfo.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/memInfo/memInfoIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/memInfo/memInfoIO.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/printStack.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/printStack.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/regExp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/regExp.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/regExp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/regExp.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigFpe.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigFpe.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigFpe.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigFpe.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigInt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigInt.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigInt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigInt.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigQuit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigQuit.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigQuit.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigQuit.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigSegv.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigSegv.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigSegv.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigSegv.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigWriteNow.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigWriteNow.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/signals/sigWriteNow.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/signals/sigWriteNow.H -------------------------------------------------------------------------------- /src/OSspecific/POSIX/timer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/timer.C -------------------------------------------------------------------------------- /src/OSspecific/POSIX/timer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OSspecific/POSIX/timer.H -------------------------------------------------------------------------------- /src/OpenFOAM/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/Make/files -------------------------------------------------------------------------------- /src/OpenFOAM/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/Make/options -------------------------------------------------------------------------------- /src/OpenFOAM/algorithms/subCycle/subCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/algorithms/subCycle/subCycle.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Cache/BasicCache.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Cache/BasicCache.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/HashTables/Map/Map.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/HashTables/Map/Map.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/BinSum/BinSum.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/BinSum/BinSum.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/BinSum/BinSum.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/BinSum/BinSum.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/List/List.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/List/List.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/List/List.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/List/List.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/List/ListI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/List/ListI.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/List/ListIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/List/ListIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/List/ListLoopM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/List/ListLoopM.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/ListOps/ListOps.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/ListOps/ListOps.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/ListOps/ListOps.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/ListOps/ListOps.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/PtrList/PtrList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/PtrList/PtrList.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/PtrList/PtrList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/PtrList/PtrList.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/SubList/SubList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/SubList/SubList.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/UList/UList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/UList/UList.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/UList/UList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/UList/UList.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/UList/UListI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/UList/UListI.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/UList/UListIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/UList/UListIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/gpuList/gpuList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/gpuList/gpuList.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/Lists/gpuList/gpuList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/Lists/gpuList/gpuList.H -------------------------------------------------------------------------------- /src/OpenFOAM/containers/NamedEnum/NamedEnum.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/NamedEnum/NamedEnum.C -------------------------------------------------------------------------------- /src/OpenFOAM/containers/NamedEnum/NamedEnum.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/containers/NamedEnum/NamedEnum.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Callback/Callback.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Callback/Callback.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Callback/Callback.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Callback/Callback.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobject.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobject/IOobject.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobject.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobject/IOobject.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobjectI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobject/IOobjectI.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobjectIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobject/IOobjectIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobjectReadHeader.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobject/IOobjectReadHeader.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobject/IOobjectWriteHeader.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobject/IOobjectWriteHeader.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjectList/IOobjectList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjectList/IOobjectList.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjectList/IOobjectList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjectList/IOobjectList.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOField/IOField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOField/IOField.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOField/IOField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOField/IOField.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOList/IOList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOList/IOList.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOList/IOList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOList/IOList.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOMap/IOMap.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOMap/IOMap.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOMap/IOMap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOMap/IOMap.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOMap/IOMapName.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOMap/IOMapName.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOPtrList/IOPtrList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOPtrList/IOPtrList.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOobjects/IOPtrList/IOPtrList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOobjects/IOPtrList/IOPtrList.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Fstreams/IFstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Fstreams/IFstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Fstreams/IFstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Fstreams/IFstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Fstreams/OFstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Fstreams/OFstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Fstreams/OFstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Fstreams/OFstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/INew.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/INew.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/IOmanip.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/IOmanip.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/IOstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/IOstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/IOstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/IOstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/InfoProxy.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/InfoProxy.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/Istream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/Istream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/Istream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/Istream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/Ostream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/Ostream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/IOstreams/Ostream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/IOstreams/Ostream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/IPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/IPstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/IPstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/IPstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/OPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/OPstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/OPstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/OPstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/Pstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/Pstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/Pstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/Pstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/UIPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/UIPstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/UIPstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/UIPstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/UOPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/UOPstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/UOPstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/UOPstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/UPstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/UPstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/UPstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Pstreams/exchange.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Pstreams/exchange.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Sstreams/ISstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Sstreams/ISstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Sstreams/ISstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Sstreams/ISstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Sstreams/ISstreamI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Sstreams/ISstreamI.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Sstreams/OSstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Sstreams/OSstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Sstreams/OSstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Sstreams/OSstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Sstreams/OSstreamI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Sstreams/OSstreamI.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Sstreams/ReadHex.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Sstreams/ReadHex.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Sstreams/ReadHex.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Sstreams/ReadHex.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Tstreams/ITstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Tstreams/ITstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/Tstreams/ITstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/Tstreams/ITstream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/gzstream/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/gzstream/COPYING.LIB -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/gzstream/gzstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/gzstream/gzstream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/gzstream/gzstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/gzstream/gzstream.h -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/gzstream/version: -------------------------------------------------------------------------------- 1 | 1.5 (08 Jan 2003) 2 | -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/hashes/OSHA1stream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/hashes/OSHA1stream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/token/token.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/token/token.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/token/token.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/token/token.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/token/tokenI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/token/tokenI.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/token/tokenIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/token/tokenIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/IOstreams/token/tokenList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/IOstreams/token/tokenList.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/Time.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/Time.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/Time.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/Time.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimeIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/TimeIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimePaths.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/TimePaths.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimePaths.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/TimePaths.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimeState.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/TimeState.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/TimeState.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/TimeState.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/findInstance.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/findInstance.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/findTimes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/findTimes.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/instant/instant.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/instant/instant.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/instant/instant.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/instant/instant.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/instant/instantList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/instant/instantList.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/subCycleTime.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/subCycleTime.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/subCycleTime.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/subCycleTime.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/timeSelector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/timeSelector.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/Time/timeSelector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/Time/timeSelector.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/dictionary/dictionary.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/dictionary/dictionary.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/dictionary/dictionary.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/dictionary/dictionary.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/dictionary/dictionaryIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/dictionary/dictionaryIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/dictionary/entry/entry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/dictionary/entry/entry.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/dictionary/entry/entry.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/dictionary/entry/entry.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/dictionary/entry/entryIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/dictionary/entry/entryIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/CocoParserErrors.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/error/CocoParserErrors.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/IOerror.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/error/IOerror.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/StaticAssert.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/error/StaticAssert.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/error.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/error/error.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/error.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/error/error.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/errorManip.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/error/errorManip.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/messageStream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/error/messageStream.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/error/messageStream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/error/messageStream.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/objectRegistry/objectRegistry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/objectRegistry/objectRegistry.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/objectRegistry/objectRegistry.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/objectRegistry/objectRegistry.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/regIOobject/regIOobject.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/regIOobject/regIOobject.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/regIOobject/regIOobject.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/regIOobject/regIOobject.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/regIOobject/regIOobjectI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/regIOobject/regIOobjectI.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/regIOobject/regIOobjectRead.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/regIOobject/regIOobjectRead.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/regIOobject/regIOobjectWrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/regIOobject/regIOobjectWrite.C -------------------------------------------------------------------------------- /src/OpenFOAM/db/typeInfo/className.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/typeInfo/className.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/typeInfo/debugName.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/typeInfo/debugName.H -------------------------------------------------------------------------------- /src/OpenFOAM/db/typeInfo/typeInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/db/typeInfo/typeInfo.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/DeviceConfig.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/DeviceConfig.C -------------------------------------------------------------------------------- /src/OpenFOAM/device/DeviceConfig.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/DeviceConfig.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/DeviceConfigI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/DeviceConfigI.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/DeviceMemory.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/DeviceMemory.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/DeviceMemoryI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/DeviceMemoryI.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/DeviceStream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/DeviceStream.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/DeviceStreamI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/DeviceStreamI.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/PageLockedBuffer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/PageLockedBuffer.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/PageLockedBufferI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/PageLockedBufferI.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/Textures.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/Textures.H -------------------------------------------------------------------------------- /src/OpenFOAM/device/TexturesI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/device/TexturesI.H -------------------------------------------------------------------------------- /src/OpenFOAM/dimensionSet/dimensionSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/dimensionSet/dimensionSet.C -------------------------------------------------------------------------------- /src/OpenFOAM/dimensionSet/dimensionSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/dimensionSet/dimensionSet.H -------------------------------------------------------------------------------- /src/OpenFOAM/dimensionSet/dimensionSetIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/dimensionSet/dimensionSetIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/dimensionSet/dimensionSets.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/dimensionSet/dimensionSets.C -------------------------------------------------------------------------------- /src/OpenFOAM/dimensionSet/dimensionSets.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/dimensionSet/dimensionSets.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/Field/Field.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/Field/Field.C -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/Field/Field.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/Field/Field.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/Field/FieldM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/Field/FieldM.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/Field/FieldMapper.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/Field/FieldMapper.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/Field/SubField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/Field/SubField.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/Field/SubFieldI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/Field/SubFieldI.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/fieldTypes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/fieldTypes.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/gpuField/gpuField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/gpuField/gpuField.C -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/gpuField/gpuField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/gpuField/gpuField.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/gpuField/gpuFieldM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/gpuField/gpuFieldM.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/oneField/oneField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/oneField/oneField.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/oneField/oneFieldI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/oneField/oneFieldI.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/primitiveFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/primitiveFields.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/Fields/primitiveFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/Fields/primitiveFieldsFwd.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/ReadFields/ReadFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/ReadFields/ReadFields.C -------------------------------------------------------------------------------- /src/OpenFOAM/fields/ReadFields/ReadFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/ReadFields/ReadFields.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/cloud/cloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/cloud/cloud.C -------------------------------------------------------------------------------- /src/OpenFOAM/fields/cloud/cloud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/cloud/cloud.H -------------------------------------------------------------------------------- /src/OpenFOAM/fields/cloud/mapClouds.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/fields/cloud/mapClouds.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/JobInfo/JobInfo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/JobInfo/JobInfo.C -------------------------------------------------------------------------------- /src/OpenFOAM/global/JobInfo/JobInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/JobInfo/JobInfo.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/argList/argList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/argList/argList.C -------------------------------------------------------------------------------- /src/OpenFOAM/global/argList/argList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/argList/argList.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/argList/argListI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/argList/argListI.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/argList/parRun.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/argList/parRun.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/clock/clock.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/clock/clock.C -------------------------------------------------------------------------------- /src/OpenFOAM/global/clock/clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/clock/clock.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/compiler.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/compiler.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/constants/constants.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/constants/constants.C -------------------------------------------------------------------------------- /src/OpenFOAM/global/constants/constants.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/constants/constants.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/debug/debug.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/debug/debug.C -------------------------------------------------------------------------------- /src/OpenFOAM/global/debug/debug.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/debug/debug.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/debug/simpleRegIOobject.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/debug/simpleRegIOobject.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/foamDoc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/foamDoc.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/foamVersion.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/foamVersion.H -------------------------------------------------------------------------------- /src/OpenFOAM/global/global.Cver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/global.Cver -------------------------------------------------------------------------------- /src/OpenFOAM/global/new.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/global/new.C -------------------------------------------------------------------------------- /src/OpenFOAM/graph/curve/curve.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/graph/curve/curve.C -------------------------------------------------------------------------------- /src/OpenFOAM/graph/curve/curve.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/graph/curve/curve.H -------------------------------------------------------------------------------- /src/OpenFOAM/graph/curve/curveTools.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/graph/curve/curveTools.C -------------------------------------------------------------------------------- /src/OpenFOAM/graph/curve/curveTools.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/graph/curve/curveTools.H -------------------------------------------------------------------------------- /src/OpenFOAM/graph/graph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/graph/graph.C -------------------------------------------------------------------------------- /src/OpenFOAM/graph/graph.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/graph/graph.H -------------------------------------------------------------------------------- /src/OpenFOAM/graph/writers/rawGraph/rawGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/graph/writers/rawGraph/rawGraph.C -------------------------------------------------------------------------------- /src/OpenFOAM/graph/writers/rawGraph/rawGraph.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/graph/writers/rawGraph/rawGraph.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/OSspecific.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/OSspecific.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/accessFoamNamespace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/accessFoamNamespace.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/addDictOption.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/addDictOption.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/addOverwriteOption.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/addOverwriteOption.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/addRegionOption.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/addRegionOption.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/addTimeOptions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/addTimeOptions.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/checkConstantOption.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/checkConstantOption.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/checkTimeOption.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/checkTimeOption.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/checkTimeOptions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/checkTimeOptions.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/createMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/createMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/createMeshNoClear.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/createMeshNoClear.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/createNamedMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/createNamedMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/createNamedPolyMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/createNamedPolyMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/createPolyMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/createPolyMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/createTime.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/createTime.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/demandDrivenData.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/demandDrivenData.H -------------------------------------------------------------------------------- /src/OpenFOAM/include/setRootCase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/include/setRootCase.H -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/Matrix/Matrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/Matrix/Matrix.C -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/Matrix/Matrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/Matrix/Matrix.H -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/Matrix/MatrixI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/Matrix/MatrixI.H -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/Matrix/MatrixIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/Matrix/MatrixIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/scalarMatrices/SVD/SVD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/scalarMatrices/SVD/SVD.C -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/scalarMatrices/SVD/SVD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/scalarMatrices/SVD/SVD.H -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/scalarMatrices/SVD/SVDI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/scalarMatrices/SVD/SVDI.H -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/solution/solution.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/solution/solution.C -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/solution/solution.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/solution/solution.H -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/tolerances/tolerances.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/tolerances/tolerances.C -------------------------------------------------------------------------------- /src/OpenFOAM/matrices/tolerances/tolerances.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/matrices/tolerances/tolerances.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/Xfer/Xfer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/memory/Xfer/Xfer.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/Xfer/XferI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/memory/Xfer/XferI.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/autoPtr/autoPtr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/memory/autoPtr/autoPtr.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/autoPtr/autoPtrI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/memory/autoPtr/autoPtrI.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/refCount/refCount.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/memory/refCount/refCount.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/tmp/tmp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/memory/tmp/tmp.H -------------------------------------------------------------------------------- /src/OpenFOAM/memory/tmp/tmpI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/memory/tmp/tmpI.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/GeoMesh/GeoMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/GeoMesh/GeoMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/Identifiers/zones/ZoneIDs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/Identifiers/zones/ZoneIDs.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/MeshObject/MeshObject.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/MeshObject/MeshObject.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/MeshObject/MeshObject.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/MeshObject/MeshObject.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/MeshObject/meshObject.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/MeshObject/meshObject.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/boundBox/boundBox.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/boundBox/boundBox.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/boundBox/boundBox.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/boundBox/boundBox.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/boundBox/boundBoxI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/boundBox/boundBoxI.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/data/data.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/data/data.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/data/data.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/data/data.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/lduMesh/lduMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/lduMesh/lduMesh.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/lduMesh/lduMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/lduMesh/lduMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/lduMesh/lduMeshTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/lduMesh/lduMeshTemplates.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/lduMesh/lduPrimitiveMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/lduMesh/lduPrimitiveMesh.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/lduMesh/lduPrimitiveMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/lduMesh/lduPrimitiveMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/cell/cell.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/cell/cell.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/cell/cell.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/cell/cell.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/cell/cellI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/cell/cellI.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/cell/cellList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/cell/cellList.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/edge/EdgeMap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/edge/EdgeMap.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/edge/edge.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/edge/edge.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/edge/edge.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/edge/edge.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/edge/edgeI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/edge/edgeI.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/edge/edgeList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/edge/edgeList.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/face/face.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/face/face.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/face/face.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/face/face.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/face/faceI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/face/faceI.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshShapes/face/faceList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshShapes/face/faceList.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshTools/matchPoints.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshTools/matchPoints.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshTools/matchPoints.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshTools/matchPoints.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshTools/mergePoints.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshTools/mergePoints.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/meshTools/mergePoints.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/meshTools/mergePoints.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/pointMesh/pointMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/pointMesh/pointMesh.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/pointMesh/pointMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/pointMesh/pointMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/polyMesh/polyMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/polyMesh/polyMesh.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/polyMesh/polyMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/polyMesh/polyMesh.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/polyMesh/polyMeshClear.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/polyMesh/polyMeshClear.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/polyMesh/polyMeshIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/polyMesh/polyMeshIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/polyMesh/polyMeshInitMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/polyMesh/polyMeshInitMesh.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/polyMesh/polyMeshUpdate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/polyMesh/polyMeshUpdate.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/polyMesh/zones/zone/zone.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/polyMesh/zones/zone/zone.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/polyMesh/zones/zone/zone.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/polyMesh/zones/zone/zone.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/primitiveShapes/line/line.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/primitiveShapes/line/line.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/primitiveShapes/line/line.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/primitiveShapes/line/line.H -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/treeBoundBox/treeBoundBox.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/treeBoundBox/treeBoundBox.C -------------------------------------------------------------------------------- /src/OpenFOAM/meshes/treeBoundBox/treeBoundBox.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/meshes/treeBoundBox/treeBoundBox.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/DiagTensor/DiagTensor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/DiagTensor/DiagTensor.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Pair/Pair.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Pair/Pair.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Pair/labelPair.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Pair/labelPair.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Scalar/Scalar.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Scalar/Scalar.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Scalar/Scalar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Scalar/Scalar.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Scalar/doubleFloat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Scalar/doubleFloat.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Scalar/scalar/scalar.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Scalar/scalar/scalar.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Scalar/scalar/scalar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Scalar/scalar/scalar.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Swap/Swap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Swap/Swap.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/SymmTensor/SymmTensor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/SymmTensor/SymmTensor.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Tensor/Tensor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Tensor/Tensor.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Tensor/TensorI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Tensor/TensorI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Tensor2D/Tensor2D.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Tensor2D/Tensor2D.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Tensor2D/Tensor2DI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Tensor2D/Tensor2DI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Tuple2/Tuple2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Tuple2/Tuple2.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Vector/Vector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Vector/Vector.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Vector/VectorI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Vector/VectorI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Vector2D/Vector2D.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Vector2D/Vector2D.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/Vector2D/Vector2DI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/Vector2D/Vector2DI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/bools/bool/bool.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/bools/bool/bool.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/bools/bool/bool.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/bools/bool/bool.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/bools/bool/boolIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/bools/bool/boolIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/chars/char/char.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/chars/char/char.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/chars/char/charIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/chars/char/charIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/chars/wchar/wchar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/chars/wchar/wchar.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/complex/complex.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/complex/complex.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/complex/complex.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/complex/complex.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/complex/complexI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/complex/complexI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/hashes/Hash/Hash.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/hashes/Hash/Hash.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/hashes/SHA1/SHA1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/hashes/SHA1/SHA1.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/hashes/SHA1/SHA1.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/hashes/SHA1/SHA1.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/hashes/SHA1/SHA1I.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/hashes/SHA1/SHA1I.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/int/int.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/int/int.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/int/intIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/int/intIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/label/label.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/label/label.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/label/label.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/label/label.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/long/long.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/long/long.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/long/longIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/long/longIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/uLabel/uLabel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/uLabel/uLabel.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/uLabel/uLabel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/uLabel/uLabel.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/uint/uint.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/uint/uint.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/uint/uintIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/uint/uintIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/ulong/ulong.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/ulong/ulong.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ints/ulong/ulongIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ints/ulong/ulongIO.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/nil/nil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/nil/nil.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/one/one.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/one/one.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/one/oneI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/one/oneI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/ops/ops.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/ops/ops.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/pTraits/pTraits.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/pTraits/pTraits.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/strings/word/word.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/strings/word/word.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/strings/word/word.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/strings/word/word.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/strings/word/wordI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/strings/word/wordI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/triad/triad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/triad/triad.C -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/triad/triad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/triad/triad.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/triad/triadI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/triad/triadI.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/zero/zero.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/zero/zero.H -------------------------------------------------------------------------------- /src/OpenFOAM/primitives/zero/zeroI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/OpenFOAM/primitives/zero/zeroI.H -------------------------------------------------------------------------------- /src/Pstream/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/Allwmake -------------------------------------------------------------------------------- /src/Pstream/dummy/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/dummy/Make/files -------------------------------------------------------------------------------- /src/Pstream/dummy/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Pstream/dummy/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/dummy/UIPread.C -------------------------------------------------------------------------------- /src/Pstream/dummy/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/dummy/UOPwrite.C -------------------------------------------------------------------------------- /src/Pstream/dummy/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/dummy/UPstream.C -------------------------------------------------------------------------------- /src/Pstream/gamma/IPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/gamma/IPread.C -------------------------------------------------------------------------------- /src/Pstream/gamma/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/gamma/Make/files -------------------------------------------------------------------------------- /src/Pstream/gamma/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/gamma/Make/options -------------------------------------------------------------------------------- /src/Pstream/gamma/OPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/gamma/OPwrite.C -------------------------------------------------------------------------------- /src/Pstream/gamma/Pstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/gamma/Pstream.C -------------------------------------------------------------------------------- /src/Pstream/gamma/PstreamGlobals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/gamma/PstreamGlobals.C -------------------------------------------------------------------------------- /src/Pstream/gamma/PstreamGlobals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/gamma/PstreamGlobals.H -------------------------------------------------------------------------------- /src/Pstream/mpi/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/Make/files -------------------------------------------------------------------------------- /src/Pstream/mpi/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/Make/options -------------------------------------------------------------------------------- /src/Pstream/mpi/PstreamGlobals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/PstreamGlobals.C -------------------------------------------------------------------------------- /src/Pstream/mpi/PstreamGlobals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/PstreamGlobals.H -------------------------------------------------------------------------------- /src/Pstream/mpi/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/UIPread.C -------------------------------------------------------------------------------- /src/Pstream/mpi/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/UOPwrite.C -------------------------------------------------------------------------------- /src/Pstream/mpi/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/UPstream.C -------------------------------------------------------------------------------- /src/Pstream/mpi/allReduce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/allReduce.H -------------------------------------------------------------------------------- /src/Pstream/mpi/allReduceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/Pstream/mpi/allReduceTemplates.C -------------------------------------------------------------------------------- /src/TurbulenceModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/TurbulenceModels/Allwmake -------------------------------------------------------------------------------- /src/TurbulenceModels/compressible/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/TurbulenceModels/compressible/Make/files -------------------------------------------------------------------------------- /src/dynamicFvMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/dynamicFvMesh/Make/files -------------------------------------------------------------------------------- /src/dynamicFvMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/dynamicFvMesh/Make/options -------------------------------------------------------------------------------- /src/dynamicFvMesh/include/meshCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/dynamicFvMesh/include/meshCourantNo.H -------------------------------------------------------------------------------- /src/edgeMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/edgeMesh/Make/files -------------------------------------------------------------------------------- /src/edgeMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/edgeMesh/Make/options -------------------------------------------------------------------------------- /src/edgeMesh/edgeMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/edgeMesh/edgeMesh.C -------------------------------------------------------------------------------- /src/edgeMesh/edgeMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/edgeMesh/edgeMesh.H -------------------------------------------------------------------------------- /src/edgeMesh/edgeMeshI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/edgeMesh/edgeMeshI.H -------------------------------------------------------------------------------- /src/edgeMesh/edgeMeshIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/edgeMesh/edgeMeshIO.C -------------------------------------------------------------------------------- /src/edgeMesh/edgeMeshNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/edgeMesh/edgeMeshNew.C -------------------------------------------------------------------------------- /src/fileFormats/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/Make/files -------------------------------------------------------------------------------- /src/fileFormats/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fileFormats/coordSet/coordSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/coordSet/coordSet.C -------------------------------------------------------------------------------- /src/fileFormats/coordSet/coordSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/coordSet/coordSet.H -------------------------------------------------------------------------------- /src/fileFormats/nas/NASCore.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/nas/NASCore.C -------------------------------------------------------------------------------- /src/fileFormats/nas/NASCore.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/nas/NASCore.H -------------------------------------------------------------------------------- /src/fileFormats/sampledSetWriters/writer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/sampledSetWriters/writer.C -------------------------------------------------------------------------------- /src/fileFormats/sampledSetWriters/writer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/sampledSetWriters/writer.H -------------------------------------------------------------------------------- /src/fileFormats/sampledSetWriters/writers.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/sampledSetWriters/writers.C -------------------------------------------------------------------------------- /src/fileFormats/sampledSetWriters/writers.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/sampledSetWriters/writers.H -------------------------------------------------------------------------------- /src/fileFormats/starcd/STARCDCore.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/starcd/STARCDCore.C -------------------------------------------------------------------------------- /src/fileFormats/starcd/STARCDCore.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/starcd/STARCDCore.H -------------------------------------------------------------------------------- /src/fileFormats/vtk/vtkUnstructuredReader.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/vtk/vtkUnstructuredReader.C -------------------------------------------------------------------------------- /src/fileFormats/vtk/vtkUnstructuredReader.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fileFormats/vtk/vtkUnstructuredReader.H -------------------------------------------------------------------------------- /src/finiteVolume/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/Make/files -------------------------------------------------------------------------------- /src/finiteVolume/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/Make/options -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fv/fv.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fv/fv.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fv/fv.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fv/fv.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvc.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcCurl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcCurl.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcCurl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcCurl.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcD2dt2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcD2dt2.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcD2dt2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcD2dt2.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcDDt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcDDt.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcDDt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcDDt.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcDdt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcDdt.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcDdt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcDdt.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcDiv.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcDiv.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcDiv.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcDiv.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcFlux.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcFlux.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcGrad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcGrad.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcGrad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcGrad.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcSup.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcSup.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvc/fvcSup.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvc/fvcSup.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvm.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvm.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvmD2dt2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvmD2dt2.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvmD2dt2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvmD2dt2.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvmDdt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvmDdt.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvmDdt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvmDdt.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvmDiv.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvmDiv.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvmDiv.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvmDiv.H -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvmSup.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvmSup.C -------------------------------------------------------------------------------- /src/finiteVolume/finiteVolume/fvm/fvmSup.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/finiteVolume/fvm/fvmSup.H -------------------------------------------------------------------------------- /src/finiteVolume/fvMatrices/fvMatrices.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMatrices/fvMatrices.C -------------------------------------------------------------------------------- /src/finiteVolume/fvMatrices/fvMatrices.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMatrices/fvMatrices.H -------------------------------------------------------------------------------- /src/finiteVolume/fvMatrices/fvMatricesFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMatrices/fvMatricesFwd.H -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/fvMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMesh/fvMesh.C -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/fvMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMesh/fvMesh.H -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/fvMeshGeometry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMesh/fvMeshGeometry.C -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/wallDist/patchDist.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMesh/wallDist/patchDist.C -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/wallDist/patchDist.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMesh/wallDist/patchDist.H -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/wallDist/wallDist.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMesh/wallDist/wallDist.C -------------------------------------------------------------------------------- /src/finiteVolume/fvMesh/wallDist/wallDist.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/fvMesh/wallDist/wallDist.H -------------------------------------------------------------------------------- /src/finiteVolume/surfaceMesh/surfaceMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/surfaceMesh/surfaceMesh.H -------------------------------------------------------------------------------- /src/finiteVolume/volMesh/volMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/finiteVolume/volMesh/volMesh.H -------------------------------------------------------------------------------- /src/fvMotionSolver/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvMotionSolver/Make/files -------------------------------------------------------------------------------- /src/fvMotionSolver/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvMotionSolver/Make/options -------------------------------------------------------------------------------- /src/fvOptions/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/Make/files -------------------------------------------------------------------------------- /src/fvOptions/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/Make/options -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/fvIOoptionList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/fvIOoptionList.C -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/fvIOoptionList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/fvIOoptionList.H -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/fvOption.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/fvOption.C -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/fvOption.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/fvOption.H -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/fvOptionI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/fvOptionI.H -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/fvOptionIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/fvOptionIO.C -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/fvOptionList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/fvOptionList.C -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/fvOptionList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/fvOptionList.H -------------------------------------------------------------------------------- /src/fvOptions/fvOptions/makeFvOption.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/fvOptions/makeFvOption.H -------------------------------------------------------------------------------- /src/fvOptions/include/createFvOptions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/fvOptions/include/createFvOptions.H -------------------------------------------------------------------------------- /src/genericPatchFields/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/genericPatchFields/Make/files -------------------------------------------------------------------------------- /src/genericPatchFields/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/genericPatchFields/Make/options -------------------------------------------------------------------------------- /src/lagrangian/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/Allwmake -------------------------------------------------------------------------------- /src/lagrangian/basic/Cloud/Cloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/Cloud/Cloud.C -------------------------------------------------------------------------------- /src/lagrangian/basic/Cloud/Cloud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/Cloud/Cloud.H -------------------------------------------------------------------------------- /src/lagrangian/basic/Cloud/CloudIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/Cloud/CloudIO.C -------------------------------------------------------------------------------- /src/lagrangian/basic/IOPosition/IOPosition.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/IOPosition/IOPosition.C -------------------------------------------------------------------------------- /src/lagrangian/basic/IOPosition/IOPosition.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/IOPosition/IOPosition.H -------------------------------------------------------------------------------- /src/lagrangian/basic/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/Make/files -------------------------------------------------------------------------------- /src/lagrangian/basic/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/Make/options -------------------------------------------------------------------------------- /src/lagrangian/basic/particle/particle.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/particle/particle.C -------------------------------------------------------------------------------- /src/lagrangian/basic/particle/particle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/particle/particle.H -------------------------------------------------------------------------------- /src/lagrangian/basic/particle/particleI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/particle/particleI.H -------------------------------------------------------------------------------- /src/lagrangian/basic/particle/particleIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/lagrangian/basic/particle/particleIO.C -------------------------------------------------------------------------------- /src/meshTools/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/Make/files -------------------------------------------------------------------------------- /src/meshTools/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/Make/options -------------------------------------------------------------------------------- /src/meshTools/algorithms/MeshWave/MeshWave.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/algorithms/MeshWave/MeshWave.C -------------------------------------------------------------------------------- /src/meshTools/algorithms/MeshWave/MeshWave.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/algorithms/MeshWave/MeshWave.H -------------------------------------------------------------------------------- /src/meshTools/cellClassification/cellInfo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellClassification/cellInfo.C -------------------------------------------------------------------------------- /src/meshTools/cellClassification/cellInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellClassification/cellInfo.H -------------------------------------------------------------------------------- /src/meshTools/cellClassification/cellInfoI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellClassification/cellInfoI.H -------------------------------------------------------------------------------- /src/meshTools/cellDist/cellDistFuncs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellDist/cellDistFuncs.C -------------------------------------------------------------------------------- /src/meshTools/cellDist/cellDistFuncs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellDist/cellDistFuncs.H -------------------------------------------------------------------------------- /src/meshTools/cellDist/patchWave/patchWave.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellDist/patchWave/patchWave.C -------------------------------------------------------------------------------- /src/meshTools/cellDist/patchWave/patchWave.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellDist/patchWave/patchWave.H -------------------------------------------------------------------------------- /src/meshTools/cellDist/wallPoint/wallPoint.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellDist/wallPoint/wallPoint.C -------------------------------------------------------------------------------- /src/meshTools/cellDist/wallPoint/wallPoint.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellDist/wallPoint/wallPoint.H -------------------------------------------------------------------------------- /src/meshTools/cellFeatures/cellFeatures.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellFeatures/cellFeatures.C -------------------------------------------------------------------------------- /src/meshTools/cellFeatures/cellFeatures.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellFeatures/cellFeatures.H -------------------------------------------------------------------------------- /src/meshTools/cellQuality/cellQuality.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellQuality/cellQuality.C -------------------------------------------------------------------------------- /src/meshTools/cellQuality/cellQuality.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/cellQuality/cellQuality.H -------------------------------------------------------------------------------- /src/meshTools/indexedOctree/treeDataEdge.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/indexedOctree/treeDataEdge.C -------------------------------------------------------------------------------- /src/meshTools/indexedOctree/treeDataEdge.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/indexedOctree/treeDataEdge.H -------------------------------------------------------------------------------- /src/meshTools/indexedOctree/treeDataFace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/indexedOctree/treeDataFace.C -------------------------------------------------------------------------------- /src/meshTools/indexedOctree/treeDataFace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/indexedOctree/treeDataFace.H -------------------------------------------------------------------------------- /src/meshTools/indexedOctree/treeDataPoint.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/indexedOctree/treeDataPoint.C -------------------------------------------------------------------------------- /src/meshTools/indexedOctree/treeDataPoint.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/indexedOctree/treeDataPoint.H -------------------------------------------------------------------------------- /src/meshTools/meshSearch/meshSearch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/meshSearch/meshSearch.C -------------------------------------------------------------------------------- /src/meshTools/meshSearch/meshSearch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/meshSearch/meshSearch.H -------------------------------------------------------------------------------- /src/meshTools/meshStructure/meshStructure.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/meshStructure/meshStructure.C -------------------------------------------------------------------------------- /src/meshTools/meshStructure/meshStructure.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/meshStructure/meshStructure.H -------------------------------------------------------------------------------- /src/meshTools/meshStructure/meshStructureI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/meshStructure/meshStructureI.H -------------------------------------------------------------------------------- /src/meshTools/meshTools/meshTools.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/meshTools/meshTools.C -------------------------------------------------------------------------------- /src/meshTools/meshTools/meshTools.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/meshTools/meshTools.H -------------------------------------------------------------------------------- /src/meshTools/meshTools/meshToolsTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/meshTools/meshToolsTemplates.C -------------------------------------------------------------------------------- /src/meshTools/momentOfInertia/volInt.ps.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/momentOfInertia/volInt.ps.gz -------------------------------------------------------------------------------- /src/meshTools/regionSplit/localPointRegion.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/regionSplit/localPointRegion.C -------------------------------------------------------------------------------- /src/meshTools/regionSplit/localPointRegion.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/regionSplit/localPointRegion.H -------------------------------------------------------------------------------- /src/meshTools/regionSplit/regionSplit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/regionSplit/regionSplit.C -------------------------------------------------------------------------------- /src/meshTools/regionSplit/regionSplit.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/regionSplit/regionSplit.H -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/cellSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/cellSet.C -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/cellSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/cellSet.H -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/cellZoneSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/cellZoneSet.C -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/cellZoneSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/cellZoneSet.H -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/faceSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/faceSet.C -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/faceSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/faceSet.H -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/faceZoneSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/faceZoneSet.C -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/faceZoneSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/faceZoneSet.H -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/pointSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/pointSet.C -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/pointSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/pointSet.H -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/pointZoneSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/pointZoneSet.C -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/pointZoneSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/pointZoneSet.H -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/topoSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/topoSet.C -------------------------------------------------------------------------------- /src/meshTools/sets/topoSets/topoSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/sets/topoSets/topoSet.H -------------------------------------------------------------------------------- /src/meshTools/surfaceSets/surfaceSets.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/surfaceSets/surfaceSets.C -------------------------------------------------------------------------------- /src/meshTools/surfaceSets/surfaceSets.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/meshTools/surfaceSets/surfaceSets.H -------------------------------------------------------------------------------- /src/postProcessing/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/postProcessing/Allwmake -------------------------------------------------------------------------------- /src/postProcessing/functionObjects/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/postProcessing/functionObjects/Allwmake -------------------------------------------------------------------------------- /src/postProcessing/functionObjects/jobControl/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/postProcessing/functionObjects/systemCall/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/postProcessing/postCalc/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/postProcessing/postCalc/Make/files -------------------------------------------------------------------------------- /src/postProcessing/postCalc/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/postProcessing/postCalc/Make/options -------------------------------------------------------------------------------- /src/postProcessing/postCalc/calc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/postProcessing/postCalc/calc.H -------------------------------------------------------------------------------- /src/postProcessing/postCalc/postCalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/postProcessing/postCalc/postCalc.C -------------------------------------------------------------------------------- /src/regionCoupled/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionCoupled/Make/files -------------------------------------------------------------------------------- /src/regionCoupled/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionCoupled/Make/options -------------------------------------------------------------------------------- /src/regionModels/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionModels/Allwclean -------------------------------------------------------------------------------- /src/regionModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionModels/Allwmake -------------------------------------------------------------------------------- /src/regionModels/pyrolysisModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionModels/pyrolysisModels/Make/files -------------------------------------------------------------------------------- /src/regionModels/regionCoupling/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionModels/regionCoupling/Make/files -------------------------------------------------------------------------------- /src/regionModels/regionCoupling/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionModels/regionCoupling/Make/options -------------------------------------------------------------------------------- /src/regionModels/regionModel/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionModels/regionModel/Make/files -------------------------------------------------------------------------------- /src/regionModels/regionModel/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/regionModels/regionModel/Make/options -------------------------------------------------------------------------------- /src/sampling/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/Make/files -------------------------------------------------------------------------------- /src/sampling/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/Make/options -------------------------------------------------------------------------------- /src/sampling/cuttingPlane/cuttingPlane.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/cuttingPlane/cuttingPlane.C -------------------------------------------------------------------------------- /src/sampling/cuttingPlane/cuttingPlane.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/cuttingPlane/cuttingPlane.H -------------------------------------------------------------------------------- /src/sampling/graphField/makeGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/graphField/makeGraph.C -------------------------------------------------------------------------------- /src/sampling/graphField/makeGraph.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/graphField/makeGraph.H -------------------------------------------------------------------------------- /src/sampling/graphField/writeCellGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/graphField/writeCellGraph.C -------------------------------------------------------------------------------- /src/sampling/graphField/writeCellGraph.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/graphField/writeCellGraph.H -------------------------------------------------------------------------------- /src/sampling/graphField/writePatchGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/graphField/writePatchGraph.C -------------------------------------------------------------------------------- /src/sampling/graphField/writePatchGraph.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/graphField/writePatchGraph.H -------------------------------------------------------------------------------- /src/sampling/probes/IOprobes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/IOprobes.H -------------------------------------------------------------------------------- /src/sampling/probes/patchProbes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/patchProbes.C -------------------------------------------------------------------------------- /src/sampling/probes/patchProbes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/patchProbes.H -------------------------------------------------------------------------------- /src/sampling/probes/patchProbesTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/patchProbesTemplates.C -------------------------------------------------------------------------------- /src/sampling/probes/probes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/probes.C -------------------------------------------------------------------------------- /src/sampling/probes/probes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/probes.H -------------------------------------------------------------------------------- /src/sampling/probes/probesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/probesDict -------------------------------------------------------------------------------- /src/sampling/probes/probesGrouping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/probesGrouping.C -------------------------------------------------------------------------------- /src/sampling/probes/probesTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/probes/probesTemplates.C -------------------------------------------------------------------------------- /src/sampling/sampledSet/array/arraySet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/array/arraySet.C -------------------------------------------------------------------------------- /src/sampling/sampledSet/array/arraySet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/array/arraySet.H -------------------------------------------------------------------------------- /src/sampling/sampledSet/circle/circleSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/circle/circleSet.C -------------------------------------------------------------------------------- /src/sampling/sampledSet/circle/circleSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/circle/circleSet.H -------------------------------------------------------------------------------- /src/sampling/sampledSet/cloud/cloudSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/cloud/cloudSet.C -------------------------------------------------------------------------------- /src/sampling/sampledSet/cloud/cloudSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/cloud/cloudSet.H -------------------------------------------------------------------------------- /src/sampling/sampledSet/face/faceOnlySet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/face/faceOnlySet.C -------------------------------------------------------------------------------- /src/sampling/sampledSet/face/faceOnlySet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/face/faceOnlySet.H -------------------------------------------------------------------------------- /src/sampling/sampledSet/uniform/uniformSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/uniform/uniformSet.C -------------------------------------------------------------------------------- /src/sampling/sampledSet/uniform/uniformSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sampling/sampledSet/uniform/uniformSet.H -------------------------------------------------------------------------------- /src/sixDoFRigidBodyMotion/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sixDoFRigidBodyMotion/Make/files -------------------------------------------------------------------------------- /src/sixDoFRigidBodyMotion/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/sixDoFRigidBodyMotion/Make/options -------------------------------------------------------------------------------- /src/surfMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/Make/files -------------------------------------------------------------------------------- /src/surfMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/Make/options -------------------------------------------------------------------------------- /src/surfMesh/MeshedSurface/MeshedSurface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/MeshedSurface/MeshedSurface.C -------------------------------------------------------------------------------- /src/surfMesh/MeshedSurface/MeshedSurface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/MeshedSurface/MeshedSurface.H -------------------------------------------------------------------------------- /src/surfMesh/MeshedSurface/MeshedSurfaceIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/MeshedSurface/MeshedSurfaceIO.C -------------------------------------------------------------------------------- /src/surfMesh/MeshedSurface/MeshedSurfaces.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/MeshedSurface/MeshedSurfaces.C -------------------------------------------------------------------------------- /src/surfMesh/MeshedSurface/MeshedSurfaces.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/MeshedSurface/MeshedSurfaces.H -------------------------------------------------------------------------------- /src/surfMesh/surfMesh/surfMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfMesh/surfMesh.C -------------------------------------------------------------------------------- /src/surfMesh/surfMesh/surfMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfMesh/surfMesh.H -------------------------------------------------------------------------------- /src/surfMesh/surfMesh/surfMeshClear.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfMesh/surfMeshClear.C -------------------------------------------------------------------------------- /src/surfMesh/surfMesh/surfMeshIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfMesh/surfMeshIO.C -------------------------------------------------------------------------------- /src/surfMesh/surfZone/surfZone/surfZone.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfZone/surfZone/surfZone.C -------------------------------------------------------------------------------- /src/surfMesh/surfZone/surfZone/surfZone.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfZone/surfZone/surfZone.H -------------------------------------------------------------------------------- /src/surfMesh/surfaceFormats/obj/OBJstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfaceFormats/obj/OBJstream.C -------------------------------------------------------------------------------- /src/surfMesh/surfaceFormats/obj/OBJstream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfaceFormats/obj/OBJstream.H -------------------------------------------------------------------------------- /src/surfMesh/surfaceFormats/stl/STLpoint.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/surfMesh/surfaceFormats/stl/STLpoint.H -------------------------------------------------------------------------------- /src/thermophysicalModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/thermophysicalModels/Allwmake -------------------------------------------------------------------------------- /src/thermophysicalModels/basic/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/thermophysicalModels/basic/Make/files -------------------------------------------------------------------------------- /src/thermophysicalModels/basic/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/thermophysicalModels/basic/Make/options -------------------------------------------------------------------------------- /src/thermophysicalModels/properties/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/thermophysicalModels/properties/Allwmake -------------------------------------------------------------------------------- /src/thermophysicalModels/properties/solidProperties/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude 3 | -------------------------------------------------------------------------------- /src/thermophysicalModels/specie/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/thermophysicalModels/specie/Make/files -------------------------------------------------------------------------------- /src/thermophysicalModels/specie/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/thermophysicalModels/thermophysicalFunctions/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/transportModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/transportModels/Allwmake -------------------------------------------------------------------------------- /src/transportModels/compressible/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/transportModels/compressible/Make/files -------------------------------------------------------------------------------- /src/triSurface/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/triSurface/Make/files -------------------------------------------------------------------------------- /src/triSurface/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/triSurface/Make/options -------------------------------------------------------------------------------- /src/triSurface/triSurface/stitchTriangles.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/triSurface/triSurface/stitchTriangles.C -------------------------------------------------------------------------------- /src/triSurface/triSurface/triSurface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/triSurface/triSurface/triSurface.C -------------------------------------------------------------------------------- /src/triSurface/triSurface/triSurface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/triSurface/triSurface/triSurface.H -------------------------------------------------------------------------------- /src/turbulenceModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/turbulenceModels/Allwmake -------------------------------------------------------------------------------- /src/turbulenceModels/LES/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/turbulenceModels/LES/Allwmake -------------------------------------------------------------------------------- /src/turbulenceModels/compressible/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/turbulenceModels/compressible/Allwmake -------------------------------------------------------------------------------- /src/turbulenceModels/incompressible/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/src/turbulenceModels/incompressible/Allwmake -------------------------------------------------------------------------------- /wmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/Makefile -------------------------------------------------------------------------------- /wmake/MakefileApps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/MakefileApps -------------------------------------------------------------------------------- /wmake/MakefileFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/MakefileFiles -------------------------------------------------------------------------------- /wmake/MakefileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/MakefileOptions -------------------------------------------------------------------------------- /wmake/makeWmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/makeWmake -------------------------------------------------------------------------------- /wmake/rules/General/CGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/CGAL -------------------------------------------------------------------------------- /wmake/rules/General/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/X -------------------------------------------------------------------------------- /wmake/rules/General/bison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/bison -------------------------------------------------------------------------------- /wmake/rules/General/btyacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/btyacc -------------------------------------------------------------------------------- /wmake/rules/General/btyacc++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/btyacc++ -------------------------------------------------------------------------------- /wmake/rules/General/byacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/byacc -------------------------------------------------------------------------------- /wmake/rules/General/coco-cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/coco-cpp -------------------------------------------------------------------------------- /wmake/rules/General/flex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/flex -------------------------------------------------------------------------------- /wmake/rules/General/flex++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/flex++ -------------------------------------------------------------------------------- /wmake/rules/General/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/general -------------------------------------------------------------------------------- /wmake/rules/General/moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/moc -------------------------------------------------------------------------------- /wmake/rules/General/mplib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplib -------------------------------------------------------------------------------- /wmake/rules/General/mplibGAMMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplibGAMMA -------------------------------------------------------------------------------- /wmake/rules/General/mplibMPICH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplibMPICH -------------------------------------------------------------------------------- /wmake/rules/General/mplibMPICH-GM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplibMPICH-GM -------------------------------------------------------------------------------- /wmake/rules/General/mplibMVAPICH2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplibMVAPICH2 -------------------------------------------------------------------------------- /wmake/rules/General/mplibOPENMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplibOPENMPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibQSMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplibQSMPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibSGIMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplibSGIMPI -------------------------------------------------------------------------------- /wmake/rules/General/mplibSYSTEMOPENMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/mplibSYSTEMOPENMPI -------------------------------------------------------------------------------- /wmake/rules/General/sourceToDep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/sourceToDep -------------------------------------------------------------------------------- /wmake/rules/General/standard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/standard -------------------------------------------------------------------------------- /wmake/rules/General/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/version -------------------------------------------------------------------------------- /wmake/rules/General/yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/General/yacc -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/c -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/c++ -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/cDebug -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/cOpt -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/cProf -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/general -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/mplibHPMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/mplibHPMPI -------------------------------------------------------------------------------- /wmake/rules/linux64Clang/mplibINTELMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Clang/mplibINTELMPI -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/c -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/c++ -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/c++Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/c++Debug -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/c++Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/c++Opt -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/c++Prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/c++Prof -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/cDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/cDebug -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/cOpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/cOpt -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/cProf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/cProf -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/general -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/mplibHPMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/mplibHPMPI -------------------------------------------------------------------------------- /wmake/rules/linux64Nvcc/mplibINTELMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/rules/linux64Nvcc/mplibINTELMPI -------------------------------------------------------------------------------- /wmake/scripts/addCompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/scripts/addCompile -------------------------------------------------------------------------------- /wmake/scripts/makeDerivedFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/scripts/makeDerivedFiles -------------------------------------------------------------------------------- /wmake/scripts/makeDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/scripts/makeDir -------------------------------------------------------------------------------- /wmake/scripts/makeFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/scripts/makeFiles -------------------------------------------------------------------------------- /wmake/scripts/makeOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/scripts/makeOptions -------------------------------------------------------------------------------- /wmake/scripts/makeTargetDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/scripts/makeTargetDir -------------------------------------------------------------------------------- /wmake/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/Makefile -------------------------------------------------------------------------------- /wmake/src/dirToString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/dirToString.c -------------------------------------------------------------------------------- /wmake/src/makeParserCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/makeParserCode -------------------------------------------------------------------------------- /wmake/src/wmkdep.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/wmkdep.l -------------------------------------------------------------------------------- /wmake/src/wmkdepend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/wmkdepend.cpp -------------------------------------------------------------------------------- /wmake/src/wmkdependParser.atg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/wmkdependParser.atg -------------------------------------------------------------------------------- /wmake/src/wmkdependParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/wmkdependParser.cpp -------------------------------------------------------------------------------- /wmake/src/wmkdependParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/wmkdependParser.h -------------------------------------------------------------------------------- /wmake/src/wmkdependScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/wmkdependScanner.cpp -------------------------------------------------------------------------------- /wmake/src/wmkdependScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/src/wmkdependScanner.h -------------------------------------------------------------------------------- /wmake/wclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wclean -------------------------------------------------------------------------------- /wmake/wcleanAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wcleanAll -------------------------------------------------------------------------------- /wmake/wcleanLnIncludeAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wcleanLnIncludeAll -------------------------------------------------------------------------------- /wmake/wcleanMachine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wcleanMachine -------------------------------------------------------------------------------- /wmake/wmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmake -------------------------------------------------------------------------------- /wmake/wmakeCheckPwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmakeCheckPwd -------------------------------------------------------------------------------- /wmake/wmakeFilesAndOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmakeFilesAndOptions -------------------------------------------------------------------------------- /wmake/wmakeFindEmptyMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmakeFindEmptyMake -------------------------------------------------------------------------------- /wmake/wmakeLnInclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmakeLnInclude -------------------------------------------------------------------------------- /wmake/wmakeLnIncludeAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmakeLnIncludeAll -------------------------------------------------------------------------------- /wmake/wmakePrintBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmakePrintBuild -------------------------------------------------------------------------------- /wmake/wmakeScheduler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmakeScheduler -------------------------------------------------------------------------------- /wmake/wmakeSchedulerUptime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimFlowCFD/RapidCFD-dev/HEAD/wmake/wmakeSchedulerUptime --------------------------------------------------------------------------------