├── .github └── pull_request_template.md ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md └── pfm ├── Allwmake ├── applications ├── Allwmake ├── solvers │ ├── DNS │ │ └── dnsFoamHIT │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ ├── dnsFoamHIT.C │ │ │ ├── globalProperties.H │ │ │ ├── readTransportProperties.H │ │ │ └── readTurbulenceProperties.H │ ├── deviationPropagation │ │ ├── singlePhaseDeviationPropagationMomentsPredictor │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── correctP.H │ │ │ ├── createFields.H │ │ │ ├── evolveDeviation.H │ │ │ ├── filterField.H │ │ │ └── singlePhaseDeviationPropagationMomentsPredictor.C │ │ ├── singlePhaseDeviationPropagationPredictor │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── convoluteDeviation.H │ │ │ ├── correctP.H │ │ │ ├── createFields.H │ │ │ ├── singlePhaseDeviationPropagationPredictor.C │ │ │ └── stopWatch.H │ │ └── singlePhaseDeviationPropagatorCalculator │ │ │ ├── KpuEqnExpl.H │ │ │ ├── KuuEqnExpl.H │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createElementList.H │ │ │ ├── createFields.H │ │ │ ├── reconstructAndWrite.H │ │ │ ├── singlePhaseDeviationPropagatorCalculator.C │ │ │ └── writeFields.H │ └── multiphase │ │ └── twoPhaseEulerTurbFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── CourantNos.H │ │ ├── EEqns.H │ │ ├── EEqnsSATFM.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── README.md │ │ ├── contErrs.H │ │ ├── correctContErrs.H │ │ ├── createFieldRefs.H │ │ ├── createFields.H │ │ ├── createMRF.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 │ │ │ ├── Beetstra │ │ │ │ ├── Beetstra.C │ │ │ │ └── Beetstra.H │ │ │ ├── Ergun │ │ │ │ ├── Ergun.C │ │ │ │ └── Ergun.H │ │ │ ├── Gibilaro │ │ │ │ ├── Gibilaro.C │ │ │ │ └── Gibilaro.H │ │ │ ├── GidaspowErgunWenYu │ │ │ │ ├── GidaspowErgunWenYu.C │ │ │ │ └── GidaspowErgunWenYu.H │ │ │ ├── GidaspowSchillerNaumann │ │ │ │ ├── GidaspowSchillerNaumann.C │ │ │ │ └── GidaspowSchillerNaumann.H │ │ │ ├── Gobin │ │ │ │ ├── Gobin.C │ │ │ │ └── Gobin.H │ │ │ ├── IshiiZuber │ │ │ │ ├── IshiiZuber.C │ │ │ │ └── IshiiZuber.H │ │ │ ├── Lain │ │ │ │ ├── Lain.C │ │ │ │ └── Lain.H │ │ │ ├── SchillerNaumann │ │ │ │ ├── SchillerNaumann.C │ │ │ │ └── SchillerNaumann.H │ │ │ ├── SyamlalOBrien │ │ │ │ ├── SyamlalOBrien.C │ │ │ │ └── SyamlalOBrien.H │ │ │ ├── Tang │ │ │ │ ├── Tang.C │ │ │ │ └── Tang.H │ │ │ ├── Tenneti │ │ │ │ ├── Tenneti.C │ │ │ │ └── Tenneti.H │ │ │ ├── TomiyamaAnalytic │ │ │ │ ├── TomiyamaAnalytic.C │ │ │ │ └── TomiyamaAnalytic.H │ │ │ ├── TomiyamaCorrelated │ │ │ │ ├── TomiyamaCorrelated.C │ │ │ │ └── TomiyamaCorrelated.H │ │ │ ├── WenYu │ │ │ │ ├── WenYu.C │ │ │ │ └── WenYu.H │ │ │ ├── WenYuC │ │ │ │ ├── WenYuC.C │ │ │ │ └── WenYuC.H │ │ │ ├── dragModel │ │ │ │ ├── dragModel.C │ │ │ │ ├── dragModel.H │ │ │ │ └── newDragModel.C │ │ │ └── segregated │ │ │ │ ├── segregated.C │ │ │ │ └── segregated.H │ │ ├── driftTemperatureModels │ │ │ ├── driftTemperatureModel │ │ │ │ ├── driftTemperatureModel.C │ │ │ │ ├── driftTemperatureModel.H │ │ │ │ └── newDriftTemperatureModel.C │ │ │ ├── driftTemperatureSATFM │ │ │ │ ├── driftTemperatureSATFM.C │ │ │ │ └── driftTemperatureSATFM.H │ │ │ └── noDriftTemperature │ │ │ │ ├── noDriftTemperature.C │ │ │ │ └── noDriftTemperature.H │ │ ├── driftVelocityModels │ │ │ ├── driftVelocityADM │ │ │ │ ├── driftVelocityADM.C │ │ │ │ └── driftVelocityADM.H │ │ │ ├── driftVelocityADMreg │ │ │ │ ├── driftVelocityADMreg.C │ │ │ │ └── driftVelocityADMreg.H │ │ │ ├── driftVelocityModel │ │ │ │ ├── driftVelocityModel.C │ │ │ │ ├── driftVelocityModel.H │ │ │ │ └── newDriftVelocityModel.C │ │ │ ├── driftVelocitySATFM │ │ │ │ ├── driftVelocitySATFM.C │ │ │ │ └── driftVelocitySATFM.H │ │ │ ├── driftVelocitySATFMreg │ │ │ │ ├── driftVelocitySATFMreg.C │ │ │ │ └── driftVelocitySATFMreg.H │ │ │ └── noDriftVelocity │ │ │ │ ├── noDriftVelocity.C │ │ │ │ └── noDriftVelocity.H │ │ ├── heatTransferModels │ │ │ ├── Gunn │ │ │ │ ├── Gunn.C │ │ │ │ └── Gunn.H │ │ │ ├── RanzMarshall │ │ │ │ ├── RanzMarshall.C │ │ │ │ └── RanzMarshall.H │ │ │ ├── heatTransferModel │ │ │ │ ├── heatTransferModel.C │ │ │ │ ├── heatTransferModel.H │ │ │ │ └── newHeatTransferModel.C │ │ │ └── sphericalHeatTransfer │ │ │ │ ├── sphericalHeatTransfer.C │ │ │ │ └── sphericalHeatTransfer.H │ │ ├── interPhaseForceModels │ │ │ ├── deWildeADM │ │ │ │ ├── deWildeIPhADM.C │ │ │ │ └── deWildeIPhADM.H │ │ │ ├── deWildeSATFM │ │ │ │ ├── deWildeIPhSATFM.C │ │ │ │ └── deWildeIPhSATFM.H │ │ │ ├── interPhaseForceModel │ │ │ │ ├── interPhaseForceModel.C │ │ │ │ ├── interPhaseForceModel.H │ │ │ │ └── newInterPhaseForceModel.C │ │ │ └── noInterPhaseForce │ │ │ │ ├── noInterPhaseForce.C │ │ │ │ └── noInterPhaseForce.H │ │ ├── liftModels │ │ │ ├── LegendreMagnaudet │ │ │ │ ├── LegendreMagnaudet.C │ │ │ │ └── LegendreMagnaudet.H │ │ │ ├── Moraga │ │ │ │ ├── Moraga.C │ │ │ │ └── Moraga.H │ │ │ ├── TomiyamaLift │ │ │ │ ├── TomiyamaLift.C │ │ │ │ └── TomiyamaLift.H │ │ │ ├── constantLiftCoefficient │ │ │ │ ├── constantLiftCoefficient.C │ │ │ │ └── constantLiftCoefficient.H │ │ │ ├── liftModel │ │ │ │ ├── liftModel.C │ │ │ │ ├── liftModel.H │ │ │ │ └── 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 │ │ │ ├── LopezDeBertodano │ │ │ │ ├── LopezDeBertodano.C │ │ │ │ └── LopezDeBertodano.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 │ │ │ ├── deWildeADM │ │ │ │ ├── deWildeADM.C │ │ │ │ └── deWildeADM.H │ │ │ ├── deWildeSATFM │ │ │ │ ├── deWildeSATFM.C │ │ │ │ └── deWildeSATFM.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 │ │ ├── pU │ │ ├── DDtU.H │ │ ├── UEqns.H │ │ ├── createDDtU.H │ │ └── pEqn.H │ │ ├── pUf │ │ ├── DDtU.H │ │ ├── UEqns.H │ │ ├── createDDtU.H │ │ └── pEqn.H │ │ ├── phaseCompressibleTurbulenceModels │ │ ├── ADMcontinuousModels │ │ │ ├── ADMcontinuousModel │ │ │ │ ├── ADMcontinuousModel.C │ │ │ │ └── ADMcontinuousModel.H │ │ │ └── regularizationModel │ │ │ │ ├── Stolz │ │ │ │ ├── StolzC.C │ │ │ │ └── StolzC.H │ │ │ │ ├── none │ │ │ │ ├── noneRegularizationC.C │ │ │ │ └── noneRegularizationC.H │ │ │ │ └── regularizationModel │ │ │ │ ├── newRegularizationModelC.C │ │ │ │ ├── regularizationModelC.C │ │ │ │ └── regularizationModelC.H │ │ ├── ADMdispersedModels │ │ │ ├── ADMdispersedModel │ │ │ │ ├── ADMdispersedModel.C │ │ │ │ └── ADMdispersedModel.H │ │ │ ├── frictionalStressModel │ │ │ │ ├── SchneiderbauerEtAl │ │ │ │ │ ├── SchneiderbauerEtAlFrictionalStressADM.C │ │ │ │ │ └── SchneiderbauerEtAlFrictionalStressADM.H │ │ │ │ └── frictionalStressModel │ │ │ │ │ ├── frictionalStressModelADM.C │ │ │ │ │ ├── frictionalStressModelADM.H │ │ │ │ │ └── newFrictionalStressModelADM.C │ │ │ └── regularizationModel │ │ │ │ ├── Stolz │ │ │ │ ├── Stolz.C │ │ │ │ └── Stolz.H │ │ │ │ ├── none │ │ │ │ ├── noneRegularization.C │ │ │ │ └── noneRegularization.H │ │ │ │ └── regularizationModel │ │ │ │ ├── newRegularizationModel.C │ │ │ │ ├── regularizationModel.C │ │ │ │ └── regularizationModel.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── SATFMcontinuousModels │ │ │ └── SATFMcontinuousModel │ │ │ │ ├── SATFMcontinuousModel.C │ │ │ │ └── SATFMcontinuousModel.H │ │ ├── SATFMdispersedModels │ │ │ ├── SATFMdispersedModel │ │ │ │ ├── SATFMdispersedModel.C │ │ │ │ └── SATFMdispersedModel.H │ │ │ └── derivedFvPatchFields │ │ │ │ ├── partialSlipFriction │ │ │ │ ├── partialSlipFrictionFvPatchVectorField.C │ │ │ │ └── partialSlipFrictionFvPatchVectorField.H │ │ │ │ └── particleKfixedGradient │ │ │ │ ├── particleKFvPatchVectorField.C │ │ │ │ └── particleKFvPatchVectorField.H │ │ ├── kineticTheoryModels │ │ │ ├── conductivityModel │ │ │ │ ├── Gidaspow │ │ │ │ │ ├── GidaspowConductivity.C │ │ │ │ │ └── GidaspowConductivity.H │ │ │ │ ├── HrenyaSinclair │ │ │ │ │ ├── HrenyaSinclairConductivity.C │ │ │ │ │ └── HrenyaSinclairConductivity.H │ │ │ │ ├── SchneiderbauerEtAl │ │ │ │ │ ├── SchneiderbauerEtAlConductivity.C │ │ │ │ │ └── SchneiderbauerEtAlConductivity.H │ │ │ │ ├── Syamlal │ │ │ │ │ ├── SyamlalConductivity.C │ │ │ │ │ └── SyamlalConductivity.H │ │ │ │ └── conductivityModel │ │ │ │ │ ├── conductivityModel.C │ │ │ │ │ ├── conductivityModel.H │ │ │ │ │ └── newConductivityModel.C │ │ │ ├── derivedFvPatchFields │ │ │ │ ├── JohnsonJacksonParticleSlip │ │ │ │ │ ├── JohnsonJacksonParticleSlipFvPatchVectorField.C │ │ │ │ │ └── JohnsonJacksonParticleSlipFvPatchVectorField.H │ │ │ │ ├── JohnsonJacksonParticleTheta │ │ │ │ │ ├── JohnsonJacksonParticleThetaFvPatchScalarField.C │ │ │ │ │ └── JohnsonJacksonParticleThetaFvPatchScalarField.H │ │ │ │ ├── particleSlipSoleimaniSchneiderbauer │ │ │ │ │ ├── particleSlipSoleimaniSchneiderbauerFvPatchVectorField.C │ │ │ │ │ └── particleSlipSoleimaniSchneiderbauerFvPatchVectorField.H │ │ │ │ └── particleThetaSoleimaniSchneiderbauer │ │ │ │ │ ├── particleThetaSoleimaniSchneiderbauerFvPatchScalarField.C │ │ │ │ │ └── particleThetaSoleimaniSchneiderbauerFvPatchScalarField.H │ │ │ ├── frictionalStressModel │ │ │ │ ├── ChialvoEtAl │ │ │ │ │ ├── ChialvoEtAlFrictionalStress.C │ │ │ │ │ └── ChialvoEtAlFrictionalStress.H │ │ │ │ ├── JohnsonJackson │ │ │ │ │ ├── JohnsonJacksonFrictionalStress.C │ │ │ │ │ └── JohnsonJacksonFrictionalStress.H │ │ │ │ ├── JohnsonJacksonSchaeffer │ │ │ │ │ ├── JohnsonJacksonSchaefferFrictionalStress.C │ │ │ │ │ └── JohnsonJacksonSchaefferFrictionalStress.H │ │ │ │ ├── Schaeffer │ │ │ │ │ ├── SchaefferFrictionalStress.C │ │ │ │ │ └── SchaefferFrictionalStress.H │ │ │ │ ├── SchneiderbauerEtAl │ │ │ │ │ ├── SchneiderbauerEtAlFrictionalStress.C │ │ │ │ │ └── SchneiderbauerEtAlFrictionalStress.H │ │ │ │ └── frictionalStressModel │ │ │ │ │ ├── frictionalStressModel.C │ │ │ │ │ ├── frictionalStressModel.H │ │ │ │ │ └── newFrictionalStressModel.C │ │ │ ├── granularPressureModel │ │ │ │ ├── Lun │ │ │ │ │ ├── LunPressure.C │ │ │ │ │ └── LunPressure.H │ │ │ │ ├── SchneiderbauerEtAl │ │ │ │ │ ├── SchneiderbauerEtAlPressure.C │ │ │ │ │ └── SchneiderbauerEtAlPressure.H │ │ │ │ ├── SyamlalRogersOBrien │ │ │ │ │ ├── SyamlalRogersOBrienPressure.C │ │ │ │ │ └── SyamlalRogersOBrienPressure.H │ │ │ │ └── granularPressureModel │ │ │ │ │ ├── granularPressureModel.C │ │ │ │ │ ├── granularPressureModel.H │ │ │ │ │ └── newGranularPressureModel.C │ │ │ ├── kineticTheoryModel │ │ │ │ ├── kineticTheoryModel.C │ │ │ │ └── kineticTheoryModel.H │ │ │ ├── radialModel │ │ │ │ ├── Arastoopour │ │ │ │ │ ├── ArastoopourRadial.C │ │ │ │ │ └── ArastoopourRadial.H │ │ │ │ ├── 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 │ │ │ │ ├── SchneiderbauerEtAl │ │ │ │ ├── SchneiderbauerEtAlViscosity.C │ │ │ │ └── SchneiderbauerEtAlViscosity.H │ │ │ │ ├── Syamlal │ │ │ │ ├── SyamlalViscosity.C │ │ │ │ └── SyamlalViscosity.H │ │ │ │ ├── none │ │ │ │ ├── noneViscosity.C │ │ │ │ └── noneViscosity.H │ │ │ │ └── viscosityModel │ │ │ │ ├── newViscosityModel.C │ │ │ │ ├── viscosityModel.C │ │ │ │ └── viscosityModel.H │ │ ├── phaseCompressibleTurbulenceModel.H │ │ ├── phaseCompressibleTurbulenceModelFwd.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 │ │ │ └── vanWachemSasicDiameter │ │ │ │ ├── vanWachemSasicDiameter.C │ │ │ │ └── vanWachemSasicDiameter.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 │ │ └── twoPhaseSystemTemplates.C │ │ └── write.H └── utilities │ ├── deviationPropagation │ ├── computeDeviationPropagatorsDifference │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── computeDeviationPropagatorsDifference.C │ │ └── createFields.H │ ├── computeDistanceMatrix │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── computeDistanceMatrix.C │ │ └── createFields.H │ ├── computeOriginOfInfluenceField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── computeOriginOfInfluenceField.C │ ├── convertPropagatorMoments │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── convertPropagatorMoments.C │ │ ├── findCellIDs.H │ │ └── setCovMat.H │ ├── createBinaryDeviationPropagators │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── createBinaryDeviationPropagators.C │ ├── createCellOrigList │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── createCellOrigList.C │ ├── findNearestRefState │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── findNearestRefState.C │ ├── formatPropagatorPropertiesAsFields │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── formatPropagatorPropertiesAsFields.C │ ├── illustrateDeviationPropagatorMoments │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── illustrateDeviationPropagatorMoments.C │ ├── illustrateDeviationPropagators │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── illustrateDeviationPropagators.C │ ├── integrateDeviationPropagators │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ └── integrateDeviationPropagators.C │ ├── marchThroughSinglePhaseTimeSeries │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ └── marchThroughSinglePhaseTimeSeries.C │ └── mirrorDataBase │ │ ├── Make │ │ ├── files │ │ └── options │ │ └── mirrorDataBase.C │ ├── miscellaneous │ ├── cellCenters │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── cellCenters.C │ ├── computeFieldDifference │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── computeFieldDifference.C │ │ └── createFields.H │ └── symmetrizer │ │ ├── Make │ │ ├── files │ │ └── options │ │ └── symmetrizer.C │ ├── postProcessing │ ├── POD │ │ ├── README.md │ │ ├── scalarSnapshots │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── scalarSnapshots.C │ │ └── vectorSnapshots │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ └── vectorSnapshots.C │ ├── probeSubsetsExtraction │ │ ├── createDataFile.py │ │ └── getProbeSubsets.py │ └── replayDatabase │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── createFields.H │ │ └── replayDatabase.C │ └── preProcessing │ └── boxTurbPope │ ├── Make │ ├── files │ └── options │ ├── boxTurbPope.C │ ├── createFields.H │ └── readBoxTurbDict.H ├── src ├── Allwmake ├── OpenFOAM │ └── primitives │ │ ├── TensorHigherOrder │ │ ├── Tensor3rdOrder.H │ │ ├── Tensor3rdOrderI.H │ │ ├── Tensor4thOrder.H │ │ ├── Tensor4thOrderI.H │ │ ├── lists │ │ │ └── tensorHigherOrderList.H │ │ └── tensorHigherOrder │ │ │ ├── tensor3rdOrder.H │ │ │ └── tensor4thOrder.H │ │ └── TensorHigherOrderSpace │ │ ├── Tensor3rdOrderSpace.H │ │ ├── Tensor3rdOrderSpaceI.H │ │ ├── Tensor4thOrderSpace.H │ │ └── Tensor4thOrderSpaceI.H ├── POD │ ├── EigenSolver │ │ ├── EigenSolver.C │ │ └── EigenSolver.H │ ├── Make │ │ ├── files │ │ └── options │ ├── POD │ │ ├── POD.C │ │ └── POD.H │ ├── PODEigenBase │ │ ├── PODEigenBase.C │ │ └── PODEigenBase.H │ ├── PODODE │ │ ├── PODODE.C │ │ └── PODODE.H │ ├── PODOrthoNormalBase │ │ ├── PODOrthoNormalBase.C │ │ ├── PODOrthoNormalBase.H │ │ ├── PODOrthoNormalBases.H │ │ ├── PODOrthoNormalBasesFwd.H │ │ ├── scalarPODOrthoNormalBase.C │ │ └── scalarPODOrthoNormalBase.H │ └── scalarTransportPOD │ │ ├── scalarTransportPOD.C │ │ └── scalarTransportPOD.H ├── TurbulenceModels │ ├── Allwmake │ ├── phaseCompressibleT │ │ ├── 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 │ │ │ ├── kOmegaSSTSato │ │ │ ├── kOmegaSSTSato.C │ │ │ └── kOmegaSSTSato.H │ │ │ └── mixtureKEpsilon │ │ │ ├── mixtureKEpsilon.C │ │ │ └── mixtureKEpsilon.H │ └── turbulenceModels │ │ ├── LES │ │ └── LESfilters │ │ │ ├── ParmentierADMFilter │ │ │ ├── ParmentierADMFilter.C │ │ │ └── ParmentierADMFilter.H │ │ │ ├── ParmentierTestFilter │ │ │ ├── ParmentierTestFilter.C │ │ │ └── ParmentierTestFilter.H │ │ │ ├── laplaceAnIsoFilter │ │ │ ├── laplaceAnIsoFilter.C │ │ │ └── laplaceAnIsoFilter.H │ │ │ ├── laplaceAnIsoFilter4 │ │ │ ├── laplaceAnIsoFilter4.C │ │ │ └── laplaceAnIsoFilter4.H │ │ │ ├── simpleFilterADM │ │ │ ├── simpleFilterADM.C │ │ │ └── simpleFilterADM.H │ │ │ └── simpleTestFilter │ │ │ ├── simpleTestFilter.C │ │ │ └── simpleTestFilter.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── turbulenceModel.C │ │ └── turbulenceModel.H ├── deviationPropagation │ ├── Make │ │ ├── files │ │ └── options │ ├── dataBase │ │ ├── dataBase.C │ │ └── dataBase.H │ ├── deviationPropagatorMoments │ │ ├── deviationPropagatorMoments │ │ │ ├── deviationPropagatorMoments.C │ │ │ ├── deviationPropagatorMoments.H │ │ │ └── newDeviationPropagatorMoments.C │ │ ├── noDeviationPropagatorMoments │ │ │ ├── noDeviationPropagatorMoments.C │ │ │ └── noDeviationPropagatorMoments.H │ │ └── singlePhaseDeviationPropagatorMoments │ │ │ ├── singlePhaseDeviationPropagatorMoments.C │ │ │ └── singlePhaseDeviationPropagatorMoments.H │ ├── deviationPropagators │ │ ├── deviationPropagators │ │ │ ├── deviationPropagators.C │ │ │ ├── deviationPropagators.H │ │ │ └── newDeviationPropagators.C │ │ ├── noDeviationPropagators │ │ │ ├── noDeviationPropagators.C │ │ │ └── noDeviationPropagators.H │ │ └── singlePhaseDeviationPropagators │ │ │ ├── singlePhaseDeviationPropagators.C │ │ │ └── singlePhaseDeviationPropagators.H │ ├── fieldNorm │ │ ├── diffNorm │ │ │ ├── diffNorm.C │ │ │ └── diffNorm.H │ │ └── fieldNorm │ │ │ ├── fieldNorm.C │ │ │ ├── fieldNorm.H │ │ │ └── newFieldNorm.C │ └── referenceStates │ │ ├── generalReferenceStates │ │ ├── generalReferenceStates.C │ │ └── generalReferenceStates.H │ │ └── referenceStates │ │ ├── newReferenceStates.C │ │ ├── referenceStates.C │ │ └── referenceStates.H ├── finiteVolume │ ├── Make │ │ ├── files │ │ └── options │ └── fields │ │ └── fvPatchFields │ │ └── derived │ │ └── spatiallyVaryingFlowRateInletVelocity │ │ ├── spatiallyVaryingFlowRateInletVelocityFvPatchVectorField.C │ │ └── spatiallyVaryingFlowRateInletVelocityFvPatchVectorField.H ├── functionObjects │ ├── field │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── sampleCellSets │ │ │ ├── sampleCellSets.C │ │ │ ├── sampleCellSets.H │ │ │ └── sampleCellSetsTemplates.C │ ├── mappingAverageField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── ReadMe.md │ │ ├── interpolationProperties │ │ ├── mapAveField.C │ │ ├── mapAveField.H │ │ └── mapAveFieldTemplates.C │ └── propagatorMoments │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── singlePhasePassiveScalarPropagatorMoments │ │ ├── KccEqnExpl.H │ │ ├── KccEqnImpl.H │ │ ├── singlePhasePassiveScalarPropagatorMoments.C │ │ └── singlePhasePassiveScalarPropagatorMoments.H │ │ └── singlePhaseVelocityDeviationPropagatorMoments │ │ ├── KuuEqnExpl.H │ │ ├── KuuEqnImpl.H │ │ ├── reconstructAndWrite.H │ │ ├── singlePhaseVelocityDeviationPropagatorMoments.C │ │ └── singlePhaseVelocityDeviationPropagatorMoments.H └── randomProcesses │ ├── Kmesh │ ├── Kmesh.C │ └── Kmesh.H │ ├── Make │ ├── files │ └── options │ ├── fft │ ├── calcEk.C │ ├── calcEk.H │ ├── fft.C │ ├── fft.H │ ├── fftRenumber.C │ ├── fftRenumber.H │ ├── kShellIntegration.C │ └── kShellIntegration.H │ ├── noise │ ├── noiseFFT.C │ └── noiseFFT.H │ ├── processes │ └── UOprocess │ │ ├── UOprocess.C │ │ └── UOprocess.H │ └── turbulence │ ├── Ek.H │ ├── turbGenPope.C │ └── turbGenPope.H └── tutorials ├── POD └── moldFlow │ ├── 0.orig │ ├── U │ ├── nut │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── transportProperties │ └── turbulenceProperties │ ├── makeMesh │ └── system │ ├── PODsolverDict │ ├── blockMeshDict.m4 │ ├── controlDict │ ├── createPatchDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── topoSetDict ├── deviationPropagation ├── VortexShedding2D │ ├── fullPropagator │ │ ├── README.md │ │ ├── cleanDatabase.sh │ │ ├── generatePropagator.sh │ │ ├── generateReferenceData.sh │ │ ├── generateValidationData.sh │ │ ├── plotMultiStepDistances.py │ │ ├── plotUFields.py │ │ ├── predictLongTerm.sh │ │ ├── predictMultiSteps.sh │ │ ├── predictionTestLongTerm │ │ │ ├── constant │ │ │ │ ├── dataBaseProperties │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── patches │ │ │ ├── predictWithoutExactSolution.sh │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── monitorU │ │ ├── predictionTestMultiStep │ │ │ ├── batchTestPredictions.sh │ │ │ ├── constant │ │ │ │ ├── dataBaseProperties │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── patches │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── probesDict │ │ ├── propagatorGeneration │ │ │ ├── constant │ │ │ │ ├── dataBaseProperties │ │ │ │ ├── transportProperties │ │ │ │ ├── tsProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── createDeviationPropagators.sh │ │ │ ├── formatIntegratedDeviationPropagators.py │ │ │ ├── listOfReferenceStates │ │ │ ├── orderDeviationPropagatorsByTargetCells.py │ │ │ ├── orig.0 │ │ │ │ ├── K_pu │ │ │ │ ├── K_uu │ │ │ │ └── U │ │ │ ├── patches │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── probesDict │ │ ├── referenceData │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── orig.0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── validationData │ │ │ └── uin_120 │ │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ ├── orig.0 │ │ │ ├── U │ │ │ └── p │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict_init │ │ │ ├── controlDict_valid_long │ │ │ ├── controlDict_valid_multistep │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── monitorU │ │ │ └── probesDict │ └── momentsApproximatedPropagator │ │ ├── Allclean.sh │ │ ├── README.md │ │ ├── cleanPredictionTestLongTerm.sh │ │ ├── cleanPredictionTestMultiStep.sh │ │ ├── cleanPropagator.sh │ │ ├── cleanReferenceData.sh │ │ ├── cleanValidationData.sh │ │ ├── generatePropagator.sh │ │ ├── generateReferenceData.sh │ │ ├── generateValidationData.sh │ │ ├── plotMultiStepDistances.py │ │ ├── plotUFields.py │ │ ├── predictLongTerm.sh │ │ ├── predictMultiSteps.sh │ │ ├── predictionTestLongTerm │ │ ├── constant │ │ │ ├── dataBaseProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── patches │ │ ├── predictWithoutExactSolution.sh │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── monitorU │ │ ├── predictionTestMultiStep │ │ ├── batchTestPredictions.sh │ │ ├── constant │ │ │ ├── dataBaseProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── patches │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict_sidewalls │ │ │ ├── blockMeshDict_sym │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── probesDict │ │ ├── propagatorGeneration │ │ ├── constant │ │ │ ├── dataBaseProperties │ │ │ ├── transportProperties │ │ │ ├── tsProperties │ │ │ └── turbulenceProperties │ │ ├── createDeviationPropagatorMoments.sh │ │ ├── orig.0 │ │ │ ├── K_pu │ │ │ ├── K_uu │ │ │ └── U │ │ ├── settings.py │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── probesDict │ │ ├── referenceData │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── orig.0 │ │ │ ├── U │ │ │ └── p │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── validationData │ │ └── uin_120 │ │ ├── constant │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ ├── orig.0 │ │ ├── U │ │ └── p │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── controlDict_init │ │ ├── controlDict_valid_long │ │ ├── controlDict_valid_multistep │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── monitorU │ │ └── probesDict ├── VortexShedding3D │ └── momentsApproximatedPropagator │ │ ├── README.md │ │ ├── cleanPredictionData.sh │ │ ├── cleanPropagator.sh │ │ ├── cleanReferenceData.sh │ │ ├── cleanValidationData.sh │ │ ├── generatePropagator.sh │ │ ├── generateReferenceData.sh │ │ ├── generateValidationData.sh │ │ ├── plotAutoCorrelation.py │ │ ├── plotUFields.py │ │ ├── predictLongTerm.sh │ │ ├── predictionTestLongTerm │ │ ├── constant │ │ │ ├── dataBaseProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── patches │ │ ├── predictWithoutExactSolution.sh │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── monitorU │ │ │ └── probesDict │ │ ├── propagatorGeneration │ │ ├── constant │ │ │ ├── dataBaseProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── settings.py │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── referenceData │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── equilibrateFlow.sh │ │ ├── generateMoments.sh │ │ ├── orig.0 │ │ │ ├── K_uu │ │ │ ├── U │ │ │ └── p │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict_dataGen │ │ │ ├── controlDict_equil │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── validationData │ │ └── uin_110 │ │ ├── constant │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ ├── equilibrateFlow.sh │ │ ├── generateValidationDataLong.sh │ │ ├── orig.0 │ │ ├── U │ │ └── p │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict_equil │ │ ├── controlDict_valid_long │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── monitorU │ │ └── probesDict └── scripts │ ├── Ofpp.py │ └── fitGaussian.py ├── mapAveField └── cylinder │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── interpolationProperties │ ├── transportProperties │ └── turbulenceProperties │ ├── orig.0 │ ├── U │ └── p │ ├── preDecompose.sh │ └── system │ ├── blockMeshDict.m4 │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── mirrorMeshDict │ ├── rMesh │ ├── blockMeshDict.m4 │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── mapFieldsDict │ └── setFieldsDict │ └── setFieldsDict ├── multiphase └── twoPhaseEulerTurbFoam │ ├── ADM │ └── fluidizedBed │ │ ├── 0.orig │ │ ├── RADM.air │ │ ├── RADM.particles │ │ ├── T.air │ │ ├── T.particles │ │ ├── Theta.particles │ │ ├── U.air │ │ ├── U.particles │ │ ├── U1star │ │ ├── U2star │ │ ├── alpha.air │ │ ├── alpha.particles │ │ ├── alphat.air │ │ ├── alphat.particles │ │ ├── nut.air │ │ ├── nut.particles │ │ ├── p │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.particles │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.particles │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── controlDict.foam │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ ├── KT │ ├── SingleSpoutvanBuijtenen │ │ ├── 0.orig │ │ │ ├── T.air │ │ │ ├── T.particles │ │ │ ├── Theta.particles │ │ │ ├── U.air │ │ │ ├── U.particles │ │ │ ├── alpha.air │ │ │ ├── alpha.particles │ │ │ ├── alphat.air │ │ │ ├── alphat.particles │ │ │ ├── nut.particles │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.particles │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.particles │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── heatTransferPeriodicBox │ │ ├── 0.heat │ │ │ ├── T.air │ │ │ ├── T.particles │ │ │ ├── Theta.particles │ │ │ ├── U │ │ │ ├── U.air │ │ │ ├── U.airMean │ │ │ ├── U.particles │ │ │ ├── U.particlesMean │ │ │ ├── Ur │ │ │ ├── alpha.air │ │ │ ├── alpha.particles │ │ │ ├── alpha.particlesMean │ │ │ ├── alphat.particles │ │ │ ├── dgdt │ │ │ ├── nuFric.particles │ │ │ ├── nut.particles │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ ├── pf.particles │ │ │ ├── phi │ │ │ ├── phi.air │ │ │ └── phi.particles │ │ ├── 0.momentum │ │ │ ├── H.air │ │ │ ├── H.particles │ │ │ ├── R.air │ │ │ ├── R.particles │ │ │ ├── T.air │ │ │ ├── T.particles │ │ │ ├── Theta.particles │ │ │ ├── U.air │ │ │ ├── U.particles │ │ │ ├── alpha.particles │ │ │ ├── alphaP2Mean.air │ │ │ ├── alphaP2Mean.particles │ │ │ ├── alphat.air │ │ │ ├── alphat.particles │ │ │ ├── k.air │ │ │ ├── k.particles │ │ │ ├── nut.air │ │ │ ├── nut.particles │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.particles │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.particles │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── stepResponseFluidizedBed │ │ ├── 0.orig │ │ ├── H.air │ │ ├── H.particles │ │ ├── R.air │ │ ├── R.particles │ │ ├── T.air │ │ ├── T.particles │ │ ├── Theta.particles │ │ ├── U.air │ │ ├── U.particles │ │ ├── alpha.air │ │ ├── alpha.particles │ │ ├── alphaP2Mean.air │ │ ├── alphaP2Mean.particles │ │ ├── alphat.air │ │ ├── alphat.particles │ │ ├── k.air │ │ ├── k.particles │ │ ├── nut.air │ │ ├── nut.particles │ │ ├── p │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.particles │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.particles │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── SATFM │ ├── fluidizedBed │ ├── 0.orig │ │ ├── H.air │ │ ├── H.particles │ │ ├── R.air │ │ ├── R.particles │ │ ├── T.air │ │ ├── T.particles │ │ ├── Theta.particles │ │ ├── U.air │ │ ├── U.particles │ │ ├── alpha.air │ │ ├── alpha.particles │ │ ├── alphaP2Mean.air │ │ ├── alphaP2Mean.particles │ │ ├── alphat.air │ │ ├── alphat.particles │ │ ├── k.air │ │ ├── k.particles │ │ ├── nut.air │ │ ├── nut.particles │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.particles │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.particles │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── controlDict.foam │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ ├── heatTransferPeriodicBox │ ├── 0.heat │ │ ├── Ceps.air │ │ ├── Ceps.particles │ │ ├── Cmu.air │ │ ├── Cmu.particles │ │ ├── Cp.air │ │ ├── H.air │ │ ├── H.particles │ │ ├── R.air │ │ ├── R.particles │ │ ├── T.air │ │ ├── T.particles │ │ ├── U │ │ ├── U.air │ │ ├── U.airMean │ │ ├── U.particles │ │ ├── U.particlesMean │ │ ├── Ur │ │ ├── alpha.air │ │ ├── alpha.particles │ │ ├── alpha.particlesMean │ │ ├── alphaP2Mean.particles │ │ ├── alphat.air │ │ ├── alphat.particles │ │ ├── dgdt │ │ ├── dragCorr │ │ ├── driftTemp │ │ ├── heatTransferCorr │ │ ├── k.air │ │ ├── k.particles │ │ ├── nuFric.particles │ │ ├── nut.air │ │ ├── nut.particles │ │ ├── p │ │ ├── p_rgh │ │ ├── pf.particles │ │ ├── phi │ │ ├── phi.air │ │ ├── phi.particles │ │ ├── xiGS │ │ ├── xiGatS │ │ ├── xiPhi2DivU │ │ ├── xiPhiDivU │ │ ├── xiPhiG │ │ ├── xiPhiGG │ │ ├── xiPhiS │ │ ├── xiTGS │ │ ├── xiTGatS │ │ ├── xiTPhiG │ │ └── xiTPhiGG │ ├── 0.momentum │ │ ├── H.air │ │ ├── H.particles │ │ ├── R.air │ │ ├── R.particles │ │ ├── T.air │ │ ├── T.particles │ │ ├── Theta.particles │ │ ├── U.air │ │ ├── U.particles │ │ ├── alpha.particles │ │ ├── alphaP2Mean.particles │ │ ├── alphat.air │ │ ├── alphat.particles │ │ ├── epsilon.air │ │ ├── k.air │ │ ├── k.particles │ │ ├── nut.air │ │ ├── nut.particles │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.particles │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.particles │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ ├── riser │ ├── 0.orig │ │ ├── H.air │ │ ├── H.particles │ │ ├── R.air │ │ ├── R.particles │ │ ├── T.air │ │ ├── T.particles │ │ ├── Theta.particles │ │ ├── U.air │ │ ├── U.particles │ │ ├── alpha.particles │ │ ├── alphaP2Mean.particles │ │ ├── alphat.air │ │ ├── alphat.particles │ │ ├── k.air │ │ ├── k.particles │ │ ├── nut.air │ │ ├── nut.particles │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── NETL_riser.zip │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.particles │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.particles │ └── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── stepResponseFluidizedBed │ ├── 0.orig │ ├── H.air │ ├── H.particles │ ├── R.air │ ├── R.particles │ ├── T.air │ ├── T.particles │ ├── Theta.particles │ ├── U.air │ ├── U.particles │ ├── alpha.air │ ├── alpha.particles │ ├── alphaP2Mean.air │ ├── alphaP2Mean.particles │ ├── alphat.air │ ├── alphat.particles │ ├── k.air │ ├── k.particles │ ├── nut.air │ ├── nut.particles │ ├── p │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── g │ ├── phaseProperties │ ├── thermophysicalProperties.air │ ├── thermophysicalProperties.particles │ ├── turbulenceProperties.air │ └── turbulenceProperties.particles │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict └── speciesPropagation └── VortexShedding2D ├── cleanReferenceData.sh ├── generatePropagatorParameters.sh ├── generateReferenceData.sh └── referenceData ├── constant ├── dataBaseProperties ├── transportProperties └── turbulenceProperties ├── orig.0 ├── K_cc ├── U └── p └── system ├── blockMeshDict ├── controlDict_data ├── controlDict_equil ├── decomposeParDict ├── fvSchemes └── fvSolution /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/README.md -------------------------------------------------------------------------------- /pfm/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/Allwmake -------------------------------------------------------------------------------- /pfm/applications/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/Allwmake -------------------------------------------------------------------------------- /pfm/applications/solvers/DNS/dnsFoamHIT/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/DNS/dnsFoamHIT/Make/files -------------------------------------------------------------------------------- /pfm/applications/solvers/DNS/dnsFoamHIT/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/DNS/dnsFoamHIT/Make/options -------------------------------------------------------------------------------- /pfm/applications/solvers/DNS/dnsFoamHIT/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/DNS/dnsFoamHIT/createFields.H -------------------------------------------------------------------------------- /pfm/applications/solvers/DNS/dnsFoamHIT/dnsFoamHIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/DNS/dnsFoamHIT/dnsFoamHIT.C -------------------------------------------------------------------------------- /pfm/applications/solvers/DNS/dnsFoamHIT/globalProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/DNS/dnsFoamHIT/globalProperties.H -------------------------------------------------------------------------------- /pfm/applications/solvers/DNS/dnsFoamHIT/readTransportProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/DNS/dnsFoamHIT/readTransportProperties.H -------------------------------------------------------------------------------- /pfm/applications/solvers/DNS/dnsFoamHIT/readTurbulenceProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/DNS/dnsFoamHIT/readTurbulenceProperties.H -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/Make/files -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/Make/options -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/correctP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/correctP.H -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/createFields.H -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/stopWatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagationPredictor/stopWatch.H -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/KpuEqnExpl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/KpuEqnExpl.H -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/KuuEqnExpl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/KuuEqnExpl.H -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/Make/files -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/Make/options -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/createFields.H -------------------------------------------------------------------------------- /pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/writeFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/deviationPropagation/singlePhaseDeviationPropagatorCalculator/writeFields.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/Allwclean -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/Allwmake -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/CourantNos.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/CourantNos.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/EEqns.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/EEqns.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/EEqnsSATFM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/EEqnsSATFM.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/Make/files -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/Make/options -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/README.md -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/contErrs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/contErrs.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/correctContErrs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/correctContErrs.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/createFieldRefs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/createFieldRefs.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/createFields.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/createMRF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/createMRF.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/Make/files -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/Make/options -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Ergun/Ergun.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Ergun/Ergun.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Ergun/Ergun.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Ergun/Ergun.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Gobin/Gobin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Gobin/Gobin.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Gobin/Gobin.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Gobin/Gobin.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Lain/Lain.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Lain/Lain.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Lain/Lain.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Lain/Lain.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Tang/Tang.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Tang/Tang.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Tang/Tang.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/Tang/Tang.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/WenYu/WenYu.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/WenYu/WenYu.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/WenYu/WenYu.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/interfacialModels/dragModels/WenYu/WenYu.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pU/DDtU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pU/DDtU.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pU/UEqns.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pU/UEqns.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pU/createDDtU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pU/createDDtU.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pU/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pU/pEqn.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pUf/DDtU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pUf/DDtU.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pUf/UEqns.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pUf/UEqns.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pUf/createDDtU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pUf/createDDtU.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pUf/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/pUf/pEqn.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseEulerFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseEulerFoam.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/Make/files -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/Make/options -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/diameterModels/IATE/IATE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/diameterModels/IATE/IATE.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/diameterModels/IATE/IATE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/diameterModels/IATE/IATE.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/phaseModel/phaseModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/phaseModel/phaseModel.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/phaseModel/phaseModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/phaseModel/phaseModel.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/twoPhaseSystem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/twoPhaseSystem.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/twoPhaseSystem.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/twoPhaseSystem.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/twoPhaseSystemI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/twoPhaseSystemI.H -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/twoPhaseSystemTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/twoPhaseSystem/twoPhaseSystemTemplates.C -------------------------------------------------------------------------------- /pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/write.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/solvers/multiphase/twoPhaseEulerTurbFoam/write.H -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeDeviationPropagatorsDifference/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeDeviationPropagatorsDifference/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeDeviationPropagatorsDifference/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeDeviationPropagatorsDifference/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeDeviationPropagatorsDifference/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeDeviationPropagatorsDifference/createFields.H -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeDistanceMatrix/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeDistanceMatrix/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeDistanceMatrix/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeDistanceMatrix/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeDistanceMatrix/computeDistanceMatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeDistanceMatrix/computeDistanceMatrix.C -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeDistanceMatrix/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeDistanceMatrix/createFields.H -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeOriginOfInfluenceField/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeOriginOfInfluenceField/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/computeOriginOfInfluenceField/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/computeOriginOfInfluenceField/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/convertPropagatorMoments.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/convertPropagatorMoments.C -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/findCellIDs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/findCellIDs.H -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/setCovMat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/convertPropagatorMoments/setCovMat.H -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/createBinaryDeviationPropagators/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/createBinaryDeviationPropagators/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/createBinaryDeviationPropagators/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/createBinaryDeviationPropagators/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/createCellOrigList/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/createCellOrigList/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/createCellOrigList/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/createCellOrigList/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/createCellOrigList/createCellOrigList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/createCellOrigList/createCellOrigList.C -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/findNearestRefState/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/findNearestRefState/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/findNearestRefState/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/findNearestRefState/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/findNearestRefState/findNearestRefState.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/findNearestRefState/findNearestRefState.C -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/formatPropagatorPropertiesAsFields/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/formatPropagatorPropertiesAsFields/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/formatPropagatorPropertiesAsFields/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/formatPropagatorPropertiesAsFields/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/illustrateDeviationPropagatorMoments/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/illustrateDeviationPropagatorMoments/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/illustrateDeviationPropagatorMoments/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/illustrateDeviationPropagatorMoments/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/illustrateDeviationPropagators/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/illustrateDeviationPropagators/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/illustrateDeviationPropagators/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/illustrateDeviationPropagators/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/integrateDeviationPropagators/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/integrateDeviationPropagators/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/integrateDeviationPropagators/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/integrateDeviationPropagators/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/integrateDeviationPropagators/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/integrateDeviationPropagators/createFields.H -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/marchThroughSinglePhaseTimeSeries/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/marchThroughSinglePhaseTimeSeries/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/marchThroughSinglePhaseTimeSeries/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/marchThroughSinglePhaseTimeSeries/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/marchThroughSinglePhaseTimeSeries/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/marchThroughSinglePhaseTimeSeries/createFields.H -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/mirrorDataBase/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/mirrorDataBase/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/mirrorDataBase/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/mirrorDataBase/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/deviationPropagation/mirrorDataBase/mirrorDataBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/deviationPropagation/mirrorDataBase/mirrorDataBase.C -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/cellCenters/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/cellCenters/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/cellCenters/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/cellCenters/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/cellCenters/cellCenters.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/cellCenters/cellCenters.C -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/computeFieldDifference/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/computeFieldDifference/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/computeFieldDifference/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/computeFieldDifference/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/computeFieldDifference/computeFieldDifference.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/computeFieldDifference/computeFieldDifference.C -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/computeFieldDifference/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/computeFieldDifference/createFields.H -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/symmetrizer/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/symmetrizer/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/symmetrizer/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/symmetrizer/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/miscellaneous/symmetrizer/symmetrizer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/miscellaneous/symmetrizer/symmetrizer.C -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/POD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/POD/README.md -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/POD/scalarSnapshots/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/POD/scalarSnapshots/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/POD/scalarSnapshots/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/POD/scalarSnapshots/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/POD/scalarSnapshots/scalarSnapshots.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/POD/scalarSnapshots/scalarSnapshots.C -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/POD/vectorSnapshots/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/POD/vectorSnapshots/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/POD/vectorSnapshots/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/POD/vectorSnapshots/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/POD/vectorSnapshots/vectorSnapshots.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/POD/vectorSnapshots/vectorSnapshots.C -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/probeSubsetsExtraction/createDataFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/probeSubsetsExtraction/createDataFile.py -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/probeSubsetsExtraction/getProbeSubsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/probeSubsetsExtraction/getProbeSubsets.py -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/replayDatabase/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/replayDatabase/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/replayDatabase/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/replayDatabase/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/replayDatabase/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/replayDatabase/createFields.H -------------------------------------------------------------------------------- /pfm/applications/utilities/postProcessing/replayDatabase/replayDatabase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/postProcessing/replayDatabase/replayDatabase.C -------------------------------------------------------------------------------- /pfm/applications/utilities/preProcessing/boxTurbPope/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/preProcessing/boxTurbPope/Make/files -------------------------------------------------------------------------------- /pfm/applications/utilities/preProcessing/boxTurbPope/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/preProcessing/boxTurbPope/Make/options -------------------------------------------------------------------------------- /pfm/applications/utilities/preProcessing/boxTurbPope/boxTurbPope.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/preProcessing/boxTurbPope/boxTurbPope.C -------------------------------------------------------------------------------- /pfm/applications/utilities/preProcessing/boxTurbPope/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/preProcessing/boxTurbPope/createFields.H -------------------------------------------------------------------------------- /pfm/applications/utilities/preProcessing/boxTurbPope/readBoxTurbDict.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/applications/utilities/preProcessing/boxTurbPope/readBoxTurbDict.H -------------------------------------------------------------------------------- /pfm/src/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/Allwmake -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrder/Tensor3rdOrder.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrder/Tensor3rdOrder.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrder/Tensor3rdOrderI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrder/Tensor3rdOrderI.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrder/Tensor4thOrder.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrder/Tensor4thOrder.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrder/Tensor4thOrderI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrder/Tensor4thOrderI.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrder/lists/tensorHigherOrderList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrder/lists/tensorHigherOrderList.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrder/tensorHigherOrder/tensor3rdOrder.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrder/tensorHigherOrder/tensor3rdOrder.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrder/tensorHigherOrder/tensor4thOrder.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrder/tensorHigherOrder/tensor4thOrder.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrderSpace/Tensor3rdOrderSpace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrderSpace/Tensor3rdOrderSpace.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrderSpace/Tensor3rdOrderSpaceI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrderSpace/Tensor3rdOrderSpaceI.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrderSpace/Tensor4thOrderSpace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrderSpace/Tensor4thOrderSpace.H -------------------------------------------------------------------------------- /pfm/src/OpenFOAM/primitives/TensorHigherOrderSpace/Tensor4thOrderSpaceI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/OpenFOAM/primitives/TensorHigherOrderSpace/Tensor4thOrderSpaceI.H -------------------------------------------------------------------------------- /pfm/src/POD/EigenSolver/EigenSolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/EigenSolver/EigenSolver.C -------------------------------------------------------------------------------- /pfm/src/POD/EigenSolver/EigenSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/EigenSolver/EigenSolver.H -------------------------------------------------------------------------------- /pfm/src/POD/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/Make/files -------------------------------------------------------------------------------- /pfm/src/POD/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/Make/options -------------------------------------------------------------------------------- /pfm/src/POD/POD/POD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/POD/POD.C -------------------------------------------------------------------------------- /pfm/src/POD/POD/POD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/POD/POD.H -------------------------------------------------------------------------------- /pfm/src/POD/PODEigenBase/PODEigenBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODEigenBase/PODEigenBase.C -------------------------------------------------------------------------------- /pfm/src/POD/PODEigenBase/PODEigenBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODEigenBase/PODEigenBase.H -------------------------------------------------------------------------------- /pfm/src/POD/PODODE/PODODE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODODE/PODODE.C -------------------------------------------------------------------------------- /pfm/src/POD/PODODE/PODODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODODE/PODODE.H -------------------------------------------------------------------------------- /pfm/src/POD/PODOrthoNormalBase/PODOrthoNormalBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODOrthoNormalBase/PODOrthoNormalBase.C -------------------------------------------------------------------------------- /pfm/src/POD/PODOrthoNormalBase/PODOrthoNormalBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODOrthoNormalBase/PODOrthoNormalBase.H -------------------------------------------------------------------------------- /pfm/src/POD/PODOrthoNormalBase/PODOrthoNormalBases.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODOrthoNormalBase/PODOrthoNormalBases.H -------------------------------------------------------------------------------- /pfm/src/POD/PODOrthoNormalBase/PODOrthoNormalBasesFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODOrthoNormalBase/PODOrthoNormalBasesFwd.H -------------------------------------------------------------------------------- /pfm/src/POD/PODOrthoNormalBase/scalarPODOrthoNormalBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODOrthoNormalBase/scalarPODOrthoNormalBase.C -------------------------------------------------------------------------------- /pfm/src/POD/PODOrthoNormalBase/scalarPODOrthoNormalBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/PODOrthoNormalBase/scalarPODOrthoNormalBase.H -------------------------------------------------------------------------------- /pfm/src/POD/scalarTransportPOD/scalarTransportPOD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/scalarTransportPOD/scalarTransportPOD.C -------------------------------------------------------------------------------- /pfm/src/POD/scalarTransportPOD/scalarTransportPOD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/POD/scalarTransportPOD/scalarTransportPOD.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/Allwmake -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/LES/Niceno/NicenoKEqn.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/LES/Niceno/NicenoKEqn.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/LES/Niceno/NicenoKEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/LES/Niceno/NicenoKEqn.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/LES/SmagorinskyZhang/SmagorinskyZhang.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/LES/SmagorinskyZhang/SmagorinskyZhang.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/LES/SmagorinskyZhang/SmagorinskyZhang.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/LES/SmagorinskyZhang/SmagorinskyZhang.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/LES/continuousGasKEqn/continuousGasKEqn.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/LES/continuousGasKEqn/continuousGasKEqn.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/LES/continuousGasKEqn/continuousGasKEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/LES/continuousGasKEqn/continuousGasKEqn.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/RAS/LaheyKEpsilon/LaheyKEpsilon.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/RAS/LaheyKEpsilon/LaheyKEpsilon.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/RAS/LaheyKEpsilon/LaheyKEpsilon.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/RAS/LaheyKEpsilon/LaheyKEpsilon.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/RAS/continuousGasKEpsilon/continuousGasKEpsilon.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/RAS/continuousGasKEpsilon/continuousGasKEpsilon.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/RAS/continuousGasKEpsilon/continuousGasKEpsilon.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/RAS/continuousGasKEpsilon/continuousGasKEpsilon.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/RAS/kOmegaSSTSato/kOmegaSSTSato.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/RAS/kOmegaSSTSato/kOmegaSSTSato.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/RAS/kOmegaSSTSato/kOmegaSSTSato.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/RAS/kOmegaSSTSato/kOmegaSSTSato.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/RAS/mixtureKEpsilon/mixtureKEpsilon.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/RAS/mixtureKEpsilon/mixtureKEpsilon.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/phaseCompressibleT/RAS/mixtureKEpsilon/mixtureKEpsilon.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/phaseCompressibleT/RAS/mixtureKEpsilon/mixtureKEpsilon.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/ParmentierADMFilter/ParmentierADMFilter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/ParmentierADMFilter/ParmentierADMFilter.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/ParmentierADMFilter/ParmentierADMFilter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/ParmentierADMFilter/ParmentierADMFilter.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/ParmentierTestFilter/ParmentierTestFilter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/ParmentierTestFilter/ParmentierTestFilter.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/ParmentierTestFilter/ParmentierTestFilter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/ParmentierTestFilter/ParmentierTestFilter.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/laplaceAnIsoFilter/laplaceAnIsoFilter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/laplaceAnIsoFilter/laplaceAnIsoFilter.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/laplaceAnIsoFilter/laplaceAnIsoFilter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/laplaceAnIsoFilter/laplaceAnIsoFilter.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/laplaceAnIsoFilter4/laplaceAnIsoFilter4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/laplaceAnIsoFilter4/laplaceAnIsoFilter4.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/laplaceAnIsoFilter4/laplaceAnIsoFilter4.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/laplaceAnIsoFilter4/laplaceAnIsoFilter4.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/simpleFilterADM/simpleFilterADM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/simpleFilterADM/simpleFilterADM.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/simpleFilterADM/simpleFilterADM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/simpleFilterADM/simpleFilterADM.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/simpleTestFilter/simpleTestFilter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/simpleTestFilter/simpleTestFilter.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/simpleTestFilter/simpleTestFilter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/LES/LESfilters/simpleTestFilter/simpleTestFilter.H -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/Make/files -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/Make/options -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/turbulenceModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/turbulenceModel.C -------------------------------------------------------------------------------- /pfm/src/TurbulenceModels/turbulenceModels/turbulenceModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/TurbulenceModels/turbulenceModels/turbulenceModel.H -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/Make/files -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/Make/options -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/dataBase/dataBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/dataBase/dataBase.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/dataBase/dataBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/dataBase/dataBase.H -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/deviationPropagators/deviationPropagators/deviationPropagators.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/deviationPropagators/deviationPropagators/deviationPropagators.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/deviationPropagators/deviationPropagators/deviationPropagators.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/deviationPropagators/deviationPropagators/deviationPropagators.H -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/deviationPropagators/deviationPropagators/newDeviationPropagators.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/deviationPropagators/deviationPropagators/newDeviationPropagators.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/deviationPropagators/noDeviationPropagators/noDeviationPropagators.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/deviationPropagators/noDeviationPropagators/noDeviationPropagators.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/deviationPropagators/noDeviationPropagators/noDeviationPropagators.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/deviationPropagators/noDeviationPropagators/noDeviationPropagators.H -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/fieldNorm/diffNorm/diffNorm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/fieldNorm/diffNorm/diffNorm.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/fieldNorm/diffNorm/diffNorm.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/fieldNorm/diffNorm/diffNorm.H -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/fieldNorm/fieldNorm/fieldNorm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/fieldNorm/fieldNorm/fieldNorm.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/fieldNorm/fieldNorm/fieldNorm.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/fieldNorm/fieldNorm/fieldNorm.H -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/fieldNorm/fieldNorm/newFieldNorm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/fieldNorm/fieldNorm/newFieldNorm.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/referenceStates/generalReferenceStates/generalReferenceStates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/referenceStates/generalReferenceStates/generalReferenceStates.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/referenceStates/generalReferenceStates/generalReferenceStates.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/referenceStates/generalReferenceStates/generalReferenceStates.H -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/referenceStates/referenceStates/newReferenceStates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/referenceStates/referenceStates/newReferenceStates.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/referenceStates/referenceStates/referenceStates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/referenceStates/referenceStates/referenceStates.C -------------------------------------------------------------------------------- /pfm/src/deviationPropagation/referenceStates/referenceStates/referenceStates.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/deviationPropagation/referenceStates/referenceStates/referenceStates.H -------------------------------------------------------------------------------- /pfm/src/finiteVolume/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/finiteVolume/Make/files -------------------------------------------------------------------------------- /pfm/src/finiteVolume/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/finiteVolume/Make/options -------------------------------------------------------------------------------- /pfm/src/functionObjects/field/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/field/Make/files -------------------------------------------------------------------------------- /pfm/src/functionObjects/field/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/field/Make/options -------------------------------------------------------------------------------- /pfm/src/functionObjects/field/sampleCellSets/sampleCellSets.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/field/sampleCellSets/sampleCellSets.C -------------------------------------------------------------------------------- /pfm/src/functionObjects/field/sampleCellSets/sampleCellSets.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/field/sampleCellSets/sampleCellSets.H -------------------------------------------------------------------------------- /pfm/src/functionObjects/field/sampleCellSets/sampleCellSetsTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/field/sampleCellSets/sampleCellSetsTemplates.C -------------------------------------------------------------------------------- /pfm/src/functionObjects/mappingAverageField/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/mappingAverageField/Make/files -------------------------------------------------------------------------------- /pfm/src/functionObjects/mappingAverageField/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/mappingAverageField/Make/options -------------------------------------------------------------------------------- /pfm/src/functionObjects/mappingAverageField/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/mappingAverageField/ReadMe.md -------------------------------------------------------------------------------- /pfm/src/functionObjects/mappingAverageField/interpolationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/mappingAverageField/interpolationProperties -------------------------------------------------------------------------------- /pfm/src/functionObjects/mappingAverageField/mapAveField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/mappingAverageField/mapAveField.C -------------------------------------------------------------------------------- /pfm/src/functionObjects/mappingAverageField/mapAveField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/mappingAverageField/mapAveField.H -------------------------------------------------------------------------------- /pfm/src/functionObjects/mappingAverageField/mapAveFieldTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/mappingAverageField/mapAveFieldTemplates.C -------------------------------------------------------------------------------- /pfm/src/functionObjects/propagatorMoments/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/propagatorMoments/Make/files -------------------------------------------------------------------------------- /pfm/src/functionObjects/propagatorMoments/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/propagatorMoments/Make/options -------------------------------------------------------------------------------- /pfm/src/functionObjects/propagatorMoments/singlePhasePassiveScalarPropagatorMoments/KccEqnExpl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/propagatorMoments/singlePhasePassiveScalarPropagatorMoments/KccEqnExpl.H -------------------------------------------------------------------------------- /pfm/src/functionObjects/propagatorMoments/singlePhasePassiveScalarPropagatorMoments/KccEqnImpl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/propagatorMoments/singlePhasePassiveScalarPropagatorMoments/KccEqnImpl.H -------------------------------------------------------------------------------- /pfm/src/functionObjects/propagatorMoments/singlePhaseVelocityDeviationPropagatorMoments/KuuEqnExpl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/propagatorMoments/singlePhaseVelocityDeviationPropagatorMoments/KuuEqnExpl.H -------------------------------------------------------------------------------- /pfm/src/functionObjects/propagatorMoments/singlePhaseVelocityDeviationPropagatorMoments/KuuEqnImpl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/functionObjects/propagatorMoments/singlePhaseVelocityDeviationPropagatorMoments/KuuEqnImpl.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/Kmesh/Kmesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/Kmesh/Kmesh.C -------------------------------------------------------------------------------- /pfm/src/randomProcesses/Kmesh/Kmesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/Kmesh/Kmesh.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/Make/files -------------------------------------------------------------------------------- /pfm/src/randomProcesses/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/Make/options -------------------------------------------------------------------------------- /pfm/src/randomProcesses/fft/calcEk.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/fft/calcEk.C -------------------------------------------------------------------------------- /pfm/src/randomProcesses/fft/calcEk.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/fft/calcEk.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/fft/fft.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/fft/fft.C -------------------------------------------------------------------------------- /pfm/src/randomProcesses/fft/fft.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/fft/fft.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/fft/fftRenumber.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/fft/fftRenumber.C -------------------------------------------------------------------------------- /pfm/src/randomProcesses/fft/fftRenumber.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/fft/fftRenumber.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/fft/kShellIntegration.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/fft/kShellIntegration.C -------------------------------------------------------------------------------- /pfm/src/randomProcesses/fft/kShellIntegration.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/fft/kShellIntegration.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/noise/noiseFFT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/noise/noiseFFT.C -------------------------------------------------------------------------------- /pfm/src/randomProcesses/noise/noiseFFT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/noise/noiseFFT.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/processes/UOprocess/UOprocess.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/processes/UOprocess/UOprocess.C -------------------------------------------------------------------------------- /pfm/src/randomProcesses/processes/UOprocess/UOprocess.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/processes/UOprocess/UOprocess.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/turbulence/Ek.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/turbulence/Ek.H -------------------------------------------------------------------------------- /pfm/src/randomProcesses/turbulence/turbGenPope.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/turbulence/turbGenPope.C -------------------------------------------------------------------------------- /pfm/src/randomProcesses/turbulence/turbGenPope.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/src/randomProcesses/turbulence/turbGenPope.H -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/0.orig/U -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/0.orig/nut -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/0.orig/p -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/constant/transportProperties -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/constant/turbulenceProperties -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/makeMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/makeMesh -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/system/PODsolverDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/system/PODsolverDict -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/system/blockMeshDict.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/system/blockMeshDict.m4 -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/system/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/system/createPatchDict -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/POD/moldFlow/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/POD/moldFlow/system/topoSetDict -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/README.md -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/cleanDatabase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/cleanDatabase.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/generatePropagator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/generatePropagator.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/generateReferenceData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/generateReferenceData.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/generateValidationData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/generateValidationData.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/plotMultiStepDistances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/plotMultiStepDistances.py -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/plotUFields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/plotUFields.py -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/predictLongTerm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/predictLongTerm.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/predictMultiSteps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/predictMultiSteps.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/predictionTestLongTerm/patches: -------------------------------------------------------------------------------- 1 | 2 | 3 3 | ( 4 | in 5 | out 6 | cylinder 7 | ) 8 | 9 | -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/predictionTestMultiStep/patches: -------------------------------------------------------------------------------- 1 | 2 | 3 3 | ( 4 | in 5 | out 6 | cylinder 7 | ) 8 | 9 | -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/propagatorGeneration/orig.0/K_pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/propagatorGeneration/orig.0/K_pu -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/propagatorGeneration/orig.0/K_uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/propagatorGeneration/orig.0/K_uu -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/propagatorGeneration/orig.0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/propagatorGeneration/orig.0/U -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/propagatorGeneration/patches: -------------------------------------------------------------------------------- 1 | 2 | 3 3 | ( 4 | in 5 | out 6 | cylinder 7 | ) 8 | 9 | -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/orig.0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/orig.0/U -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/orig.0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/orig.0/p -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/referenceData/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/validationData/uin_120/orig.0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/validationData/uin_120/orig.0/U -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/validationData/uin_120/orig.0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/fullPropagator/validationData/uin_120/orig.0/p -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/Allclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/Allclean.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/README.md -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/cleanPropagator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/cleanPropagator.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/plotUFields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/plotUFields.py -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/predictLongTerm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/predictLongTerm.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/predictionTestLongTerm/patches: -------------------------------------------------------------------------------- 1 | 2 | 3 3 | ( 4 | in 5 | out 6 | cylinder 7 | ) 8 | 9 | -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding2D/momentsApproximatedPropagator/predictionTestMultiStep/patches: -------------------------------------------------------------------------------- 1 | 2 | 3 3 | ( 4 | in 5 | out 6 | cylinder 7 | ) 8 | 9 | -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/README.md -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/cleanPropagator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/cleanPropagator.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/plotUFields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/plotUFields.py -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/predictLongTerm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/predictLongTerm.sh -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/VortexShedding3D/momentsApproximatedPropagator/predictionTestLongTerm/patches: -------------------------------------------------------------------------------- 1 | 2 | 7 3 | ( 4 | in 5 | out 6 | up down 7 | cylinder 8 | back 9 | front 10 | ) 11 | 12 | -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/scripts/Ofpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/scripts/Ofpp.py -------------------------------------------------------------------------------- /pfm/tutorials/deviationPropagation/scripts/fitGaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/deviationPropagation/scripts/fitGaussian.py -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/constant/interpolationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/constant/interpolationProperties -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/constant/transportProperties -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/constant/turbulenceProperties -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/orig.0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/orig.0/U -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/orig.0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/orig.0/p -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/preDecompose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/preDecompose.sh -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/blockMeshDict.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/blockMeshDict.m4 -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/mirrorMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/rMesh/blockMeshDict.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/rMesh/blockMeshDict.m4 -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/rMesh/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/rMesh/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/rMesh/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/rMesh/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/rMesh/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/rMesh/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/rMesh/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/rMesh/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/rMesh/mapFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/rMesh/mapFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/rMesh/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/rMesh/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/mapAveField/cylinder/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/mapAveField/cylinder/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/RADM.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/RADM.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/RADM.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/RADM.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/Theta.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/Theta.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/U1star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/U1star -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/U2star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/U2star -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/alpha.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/alpha.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/alpha.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/alphat.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/alphat.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/nut.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/nut.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/0.orig/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/constant/g -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/constant/phaseProperties -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/constant/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/constant/thermophysicalProperties.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/constant/turbulenceProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/constant/turbulenceProperties.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/controlDict.foam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/controlDict.foam -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/ADM/fluidizedBed/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/Theta.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/Theta.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/alpha.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/alpha.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/alpha.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/alphat.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/alphat.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/0.orig/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/constant/g -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/constant/phaseProperties -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/SingleSpoutvanBuijtenen/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/Theta.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/Theta.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U.airMean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U.airMean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U.particlesMean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/U.particlesMean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/Ur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/Ur -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/alpha.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/alpha.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/alpha.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/alpha.particlesMean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/alpha.particlesMean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/alphat.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/alphat.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/dgdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/dgdt -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/nuFric.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/nuFric.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/pf.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/pf.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/phi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/phi -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/phi.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/phi.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/phi.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.heat/phi.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/H.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/H.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/H.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/H.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/R.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/R.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/R.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/R.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/Theta.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/Theta.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/alpha.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/alpha.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/alphaP2Mean.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/alphaP2Mean.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/alphat.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/alphat.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/k.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/k.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/k.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/k.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/nut.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/nut.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/0.momentum/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/constant/g -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/constant/phaseProperties -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/heatTransferPeriodicBox/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/H.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/H.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/H.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/H.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/R.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/R.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/R.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/R.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/Theta.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/Theta.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alpha.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alpha.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alpha.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alphaP2Mean.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alphaP2Mean.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alphat.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/alphat.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/k.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/k.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/k.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/k.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/nut.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/nut.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/0.orig/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/constant/g -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/constant/phaseProperties -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/KT/stepResponseFluidizedBed/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/H.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/H.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/H.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/H.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/R.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/R.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/R.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/R.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/Theta.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/Theta.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alpha.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alpha.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alpha.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alphaP2Mean.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alphaP2Mean.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alphaP2Mean.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alphaP2Mean.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alphat.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/alphat.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/k.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/k.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/k.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/k.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/nut.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/nut.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/0.orig/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/constant/g -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/constant/phaseProperties -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/constant/turbulenceProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/constant/turbulenceProperties.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/controlDict.foam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/controlDict.foam -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/fluidizedBed/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Ceps.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Ceps.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Ceps.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Ceps.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Cmu.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Cmu.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Cmu.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Cmu.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Cp.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Cp.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/H.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/H.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/H.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/H.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/R.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/R.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/R.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/R.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U.airMean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U.airMean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U.particlesMean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/U.particlesMean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Ur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/Ur -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/alpha.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/alpha.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/alpha.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/alphat.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/alphat.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/dgdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/dgdt -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/dragCorr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/dragCorr -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/driftTemp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/driftTemp -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/heatTransferCorr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/heatTransferCorr -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/k.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/k.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/k.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/k.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/nut.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/nut.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/pf.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/pf.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/phi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/phi -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/phi.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/phi.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/phi.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/phi.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiGS -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiGatS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiGatS -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhi2DivU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhi2DivU -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhiDivU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhiDivU -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhiG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhiG -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhiGG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhiGG -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhiS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiPhiS -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiTGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiTGS -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiTGatS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiTGatS -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiTPhiG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiTPhiG -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiTPhiGG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.heat/xiTPhiGG -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/H.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/H.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/R.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/R.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/k.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/k.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/nut.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/nut.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/0.momentum/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/constant/g -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/heatTransferPeriodicBox/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/H.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/H.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/H.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/H.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/R.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/R.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/R.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/R.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/Theta.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/Theta.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/alpha.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/alpha.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/alphaP2Mean.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/alphaP2Mean.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/alphat.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/alphat.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/k.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/k.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/k.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/k.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/nut.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/nut.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/0.orig/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/NETL_riser.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/NETL_riser.zip -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/g -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/phaseProperties -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/thermophysicalProperties.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/turbulenceProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/turbulenceProperties.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/turbulenceProperties.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/constant/turbulenceProperties.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/riser/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/H.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/H.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/H.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/H.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/R.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/R.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/R.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/R.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/T.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/T.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/T.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/U.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/U.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/U.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/alpha.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/alphat.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/alphat.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/k.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/k.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/k.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/k.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/nut.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/nut.air -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/nut.particles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/nut.particles -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/p -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/0.orig/p_rgh -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/Allclean -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/Allrun -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/constant/g -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/controlDict -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/fvSolution -------------------------------------------------------------------------------- /pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/multiphase/twoPhaseEulerTurbFoam/SATFM/stepResponseFluidizedBed/system/setFieldsDict -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/cleanReferenceData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/cleanReferenceData.sh -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/generatePropagatorParameters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/generatePropagatorParameters.sh -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/generateReferenceData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/generateReferenceData.sh -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/constant/dataBaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/constant/dataBaseProperties -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/constant/transportProperties -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/constant/turbulenceProperties -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/orig.0/K_cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/orig.0/K_cc -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/orig.0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/orig.0/U -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/orig.0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/orig.0/p -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/blockMeshDict -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/controlDict_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/controlDict_data -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/controlDict_equil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/controlDict_equil -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/decomposeParDict -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/fvSchemes -------------------------------------------------------------------------------- /pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/pfmFOAM-public/HEAD/pfm/tutorials/speciesPropagation/VortexShedding2D/referenceData/system/fvSolution --------------------------------------------------------------------------------