├── .gitignore ├── ChangeLog ├── LICENSE ├── README.md ├── doc └── user_guide.pdf ├── fe40 ├── downloadEigen ├── src │ ├── Allwclean │ ├── Allwmake │ ├── libs │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── EDFModels │ │ │ ├── EDFModel │ │ │ │ ├── EDFModel.C │ │ │ │ └── EDFModel.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── models │ │ │ │ ├── DebyeHuckel │ │ │ │ ├── DebyeHuckel.C │ │ │ │ └── DebyeHuckel.H │ │ │ │ ├── EDFEquations │ │ │ │ ├── EDFEquation.C │ │ │ │ ├── EDFEquation.H │ │ │ │ └── newEDFEquation.C │ │ │ │ ├── NernstPlanck │ │ │ │ ├── NernstPlanck.C │ │ │ │ └── NernstPlanck.H │ │ │ │ ├── Ohmic │ │ │ │ ├── Ohmic.C │ │ │ │ └── Ohmic.H │ │ │ │ ├── PoissonBoltzmann │ │ │ │ ├── PoissonBoltzmann.C │ │ │ │ └── PoissonBoltzmann.H │ │ │ │ ├── noModel │ │ │ │ ├── noModel.C │ │ │ │ └── noModel.H │ │ │ │ └── slipSmoluchowski │ │ │ │ ├── slipSmoluchowski.C │ │ │ │ └── slipSmoluchowski.H │ │ ├── boundaryConditions │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── boltzmannEquilibrium │ │ │ │ ├── boltzmannEquilibriumFvPatchScalarField.C │ │ │ │ └── boltzmannEquilibriumFvPatchScalarField.H │ │ │ ├── inducedPotential │ │ │ │ ├── inducedPotentialFvPatchScalarField.C │ │ │ │ └── inducedPotentialFvPatchScalarField.H │ │ │ ├── linearExtrapolation │ │ │ │ ├── linearExtrapolationFvPatchField.C │ │ │ │ ├── linearExtrapolationFvPatchField.H │ │ │ │ ├── linearExtrapolationFvPatchFields.C │ │ │ │ ├── linearExtrapolationFvPatchFields.H │ │ │ │ └── linearExtrapolationFvPatchFieldsFwd.H │ │ │ ├── navierSlip │ │ │ │ ├── navierSlipFvPatchVectorField.C │ │ │ │ └── navierSlipFvPatchVectorField.H │ │ │ ├── slipSigmaDependent │ │ │ │ ├── slipSigmaDependentFvPatchVectorField.C │ │ │ │ └── slipSigmaDependentFvPatchVectorField.H │ │ │ ├── slipSmoluchowski │ │ │ │ ├── slipSmoluchowskiFvPatchVectorField.C │ │ │ │ └── slipSmoluchowskiFvPatchVectorField.H │ │ │ ├── tutorialSpecificBCs │ │ │ │ ├── ACPotential │ │ │ │ │ ├── ACPotentialFvPatchScalarField.C │ │ │ │ │ └── ACPotentialFvPatchScalarField.H │ │ │ │ ├── HBprofile │ │ │ │ │ ├── HBprofileFvPatchVectorField.C │ │ │ │ │ └── HBprofileFvPatchVectorField.H │ │ │ │ ├── uCos │ │ │ │ │ ├── uCosFvPatchVectorField.C │ │ │ │ │ └── uCosFvPatchVectorField.H │ │ │ │ ├── uLid │ │ │ │ │ ├── uLidFvPatchVectorField.C │ │ │ │ │ └── uLidFvPatchVectorField.H │ │ │ │ └── uShaft │ │ │ │ │ ├── uShaftFvPatchVectorField.C │ │ │ │ │ └── uShaftFvPatchVectorField.H │ │ │ └── zeroIonicFlux │ │ │ │ ├── zeroIonicFluxFvPatchScalarField.C │ │ │ │ └── zeroIonicFluxFvPatchScalarField.H │ │ ├── constitutiveEquations │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── constitutiveEqs │ │ │ │ ├── FENE-CR │ │ │ │ │ ├── FENE-CRLog │ │ │ │ │ │ ├── FENE_CRLog.C │ │ │ │ │ │ └── FENE_CRLog.H │ │ │ │ │ ├── FENE_CR.C │ │ │ │ │ └── FENE_CR.H │ │ │ │ ├── FENE-P │ │ │ │ │ ├── FENE-PLog │ │ │ │ │ │ ├── FENE_PLog.C │ │ │ │ │ │ └── FENE_PLog.H │ │ │ │ │ ├── FENE_P.C │ │ │ │ │ └── FENE_P.H │ │ │ │ ├── GNF │ │ │ │ │ ├── CarreauYasuda │ │ │ │ │ │ ├── CarreauYasuda.C │ │ │ │ │ │ └── CarreauYasuda.H │ │ │ │ │ ├── Casson │ │ │ │ │ │ ├── Casson.C │ │ │ │ │ │ └── Casson.H │ │ │ │ │ ├── HerschelBulkley │ │ │ │ │ │ ├── HerschelBulkley.C │ │ │ │ │ │ └── HerschelBulkley.H │ │ │ │ │ ├── Newtonian │ │ │ │ │ │ ├── Newtonian.C │ │ │ │ │ │ └── Newtonian.H │ │ │ │ │ └── PowerLaw │ │ │ │ │ │ ├── PowerLaw.C │ │ │ │ │ │ └── PowerLaw.H │ │ │ │ ├── Giesekus │ │ │ │ │ ├── Giesekus.C │ │ │ │ │ ├── Giesekus.H │ │ │ │ │ └── GiesekusLog │ │ │ │ │ │ ├── GiesekusLog.C │ │ │ │ │ │ └── GiesekusLog.H │ │ │ │ ├── Oldroyd-B │ │ │ │ │ ├── Oldroyd-BLog │ │ │ │ │ │ ├── Oldroyd_BLog.C │ │ │ │ │ │ └── Oldroyd_BLog.H │ │ │ │ │ ├── Oldroyd-BRootk │ │ │ │ │ │ ├── Oldroyd_BRootk.C │ │ │ │ │ │ └── Oldroyd_BRootk.H │ │ │ │ │ ├── Oldroyd-BSqrt │ │ │ │ │ │ ├── Oldroyd_BSqrt.C │ │ │ │ │ │ └── Oldroyd_BSqrt.H │ │ │ │ │ ├── Oldroyd_B.C │ │ │ │ │ └── Oldroyd_B.H │ │ │ │ ├── PTT │ │ │ │ │ ├── PTT.C │ │ │ │ │ ├── PTT.H │ │ │ │ │ └── PTTLog │ │ │ │ │ │ ├── PTTLog.C │ │ │ │ │ │ └── PTTLog.H │ │ │ │ ├── Rolie-Poly │ │ │ │ │ ├── Rolie-PolyLog │ │ │ │ │ │ ├── RoliePolyLog.C │ │ │ │ │ │ └── RoliePolyLog.H │ │ │ │ │ ├── RoliePoly.C │ │ │ │ │ └── RoliePoly.H │ │ │ │ ├── WhiteMetznerCY │ │ │ │ │ ├── WhiteMetznerCY.C │ │ │ │ │ ├── WhiteMetznerCY.H │ │ │ │ │ └── WhiteMetznerCYLog │ │ │ │ │ │ ├── WhiteMetznerCYLog.C │ │ │ │ │ │ └── WhiteMetznerCYLog.H │ │ │ │ ├── XPomPom │ │ │ │ │ ├── XPomPom.C │ │ │ │ │ ├── XPomPom.H │ │ │ │ │ └── XPomPomLog │ │ │ │ │ │ ├── XPomPomLog.C │ │ │ │ │ │ └── XPomPomLog.H │ │ │ │ ├── constitutiveEq │ │ │ │ │ ├── constitutiveEq.C │ │ │ │ │ ├── constitutiveEq.H │ │ │ │ │ └── newConstitutiveEq.C │ │ │ │ ├── multiMode │ │ │ │ │ ├── multiMode.C │ │ │ │ │ └── multiMode.H │ │ │ │ ├── otherModels │ │ │ │ │ ├── BMP │ │ │ │ │ │ ├── BMP.C │ │ │ │ │ │ ├── BMP.H │ │ │ │ │ │ └── BMPLog │ │ │ │ │ │ │ ├── BMPLog.C │ │ │ │ │ │ │ └── BMPLog.H │ │ │ │ │ ├── ML-IKH │ │ │ │ │ │ ├── ML_IKH.C │ │ │ │ │ │ └── ML_IKH.H │ │ │ │ │ ├── RRM │ │ │ │ │ │ ├── RRM.C │ │ │ │ │ │ └── RRM.H │ │ │ │ │ ├── Saramito │ │ │ │ │ │ ├── Saramito.C │ │ │ │ │ │ ├── Saramito.H │ │ │ │ │ │ └── SaramitoLog │ │ │ │ │ │ │ ├── SaramitoLog.C │ │ │ │ │ │ │ └── SaramitoLog.H │ │ │ │ │ └── VCM │ │ │ │ │ │ ├── VCM.C │ │ │ │ │ │ └── VCM.H │ │ │ │ └── utils │ │ │ │ │ └── jacobi.H │ │ │ ├── constitutiveModel │ │ │ │ ├── constitutiveModel.C │ │ │ │ └── constitutiveModel.H │ │ │ └── constitutiveTwoPhaseMixture │ │ │ │ ├── constitutiveTwoPhaseMixture.C │ │ │ │ └── constitutiveTwoPhaseMixture.H │ │ ├── gaussDefCmpwConvectionScheme │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── gaussDefCmpwConvectionScheme.C │ │ │ ├── gaussDefCmpwConvectionScheme.H │ │ │ ├── gaussDefCmpwConvectionSchemes.C │ │ │ └── limiters.H │ │ ├── postProcessing │ │ │ ├── postProcUtils │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── postProcUtils │ │ │ │ │ ├── calcBalance │ │ │ │ │ │ ├── calcBalance.C │ │ │ │ │ │ └── calcBalance.H │ │ │ │ │ ├── calcJpatch │ │ │ │ │ │ ├── calcJpatch.C │ │ │ │ │ │ └── calcJpatch.H │ │ │ │ │ ├── calcWSS │ │ │ │ │ │ ├── calcWSS.C │ │ │ │ │ │ └── calcWSS.H │ │ │ │ │ ├── none │ │ │ │ │ │ ├── none.C │ │ │ │ │ │ └── none.H │ │ │ │ │ ├── ppUtil.C │ │ │ │ │ ├── ppUtil.H │ │ │ │ │ └── tutorialSpecificUtils │ │ │ │ │ │ ├── calcCd │ │ │ │ │ │ ├── calcCd.C │ │ │ │ │ │ └── calcCd.H │ │ │ │ │ │ ├── calcFfl │ │ │ │ │ │ ├── calcFfl.C │ │ │ │ │ │ └── calcFfl.H │ │ │ │ │ │ ├── calcKineticE │ │ │ │ │ │ ├── calcKineticE.C │ │ │ │ │ │ └── calcKineticE.H │ │ │ │ │ │ ├── calcVortexL │ │ │ │ │ │ ├── calcVortexL.C │ │ │ │ │ │ └── calcVortexL.H │ │ │ │ │ │ ├── calcW │ │ │ │ │ │ ├── calcW.C │ │ │ │ │ │ └── calcW.H │ │ │ │ │ │ └── calcWi0 │ │ │ │ │ │ ├── calcWi0.C │ │ │ │ │ │ └── calcWi0.H │ │ │ │ └── postProcUtilsInterface │ │ │ │ │ ├── ppUtilInterface.C │ │ │ │ │ └── ppUtilInterface.H │ │ │ └── writeEfield │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── createFields.H │ │ │ │ └── writeEfield.C │ │ └── preProcessing │ │ │ └── rndPerturbation │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── rndPerturbation.C │ └── solvers │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── rheoEFoam │ │ ├── CEqn.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── correctPhi.H │ │ ├── createControls.H │ │ ├── createDynamicFvMeshDict.H │ │ ├── createFields.H │ │ ├── createPPutil.H │ │ ├── pEqn.H │ │ ├── readControls.H │ │ └── rheoEFoam.C │ │ ├── rheoFoam │ │ ├── CEqn.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── correctPhi.H │ │ ├── createControls.H │ │ ├── createDynamicFvMeshDict.H │ │ ├── createFields.H │ │ ├── createPPutil.H │ │ ├── pEqn.H │ │ ├── readControls.H │ │ └── rheoFoam.C │ │ ├── rheoInterFoam │ │ ├── CEqn.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── correctPhi.H │ │ ├── createControls.H │ │ ├── createDynamicFvMeshDict.H │ │ ├── createFields.H │ │ ├── createPPutil.H │ │ ├── pEqn.H │ │ ├── readControls.H │ │ └── rheoInterFoam.C │ │ └── rheoTestFoam │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── createFields.H │ │ ├── reStartOrEnd.H │ │ ├── rheoTestFoam.C │ │ └── timeWrite.H └── tutorials │ ├── foamUpdateCaseFileHeaderExt │ ├── rheoEFoam │ ├── EEI │ │ └── PoissonBoltzmann │ │ │ ├── CrossSlot │ │ │ ├── 0 │ │ │ │ ├── C.org │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── phiE │ │ │ │ ├── psi │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ ├── setBatch.batch │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── mirrorMeshDict0 │ │ │ │ ├── mirrorMeshDict1 │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ │ └── FlowFocusing │ │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiE │ │ │ ├── psi │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ ├── setBatch.batch │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mirrorMeshDict0 │ │ │ ├── mirrorMeshDict1 │ │ │ └── setFieldsDict │ ├── EKI │ │ └── Ohmic │ │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiE │ │ │ └── sigma.org │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── EKmixer │ │ └── slipSmoluchowski │ │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ └── phiE │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── cellSetDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── refineMeshDict │ │ │ └── setFieldsDict │ ├── ICEO │ │ ├── DebyeHuckel │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── phiE │ │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── NernstPlanck │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── cAnion │ │ │ │ ├── cCation │ │ │ │ ├── p │ │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ └── PoissonBoltzmann │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiE │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── channelEDF │ │ ├── PTT │ │ │ └── DebyeHuckel │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── psi │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ └── PowerLaw │ │ │ ├── DebyeHuckel │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── NernstPlanck │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── ciAnion │ │ │ │ ├── ciCation │ │ │ │ ├── p │ │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ └── PoissonBoltzmann │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ └── selecMembrane │ │ └── NernstPlanck │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ └── polyMesh │ │ │ ├── blockMeshDict │ │ │ └── boundary │ │ ├── solution1D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── cAnion │ │ │ ├── cCation │ │ │ ├── p │ │ │ └── psi │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── rheoFoam │ ├── Aneurysm │ │ └── HerschelBulkley │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── faces.gz │ │ │ │ ├── neighbour.gz │ │ │ │ ├── owner.gz │ │ │ │ └── points.gz │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── Cavity │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── Channel │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── Contraction41 │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── CrossSlot │ │ ├── Oldroyd-BLog │ │ │ ├── 0 │ │ │ │ ├── C.org │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── Oldroyd-BRootk │ │ │ ├── 0 │ │ │ │ ├── C.org │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── Oldroyd-BSqrt │ │ │ ├── 0 │ │ │ │ ├── C.org │ │ │ │ ├── U │ │ │ │ ├── b │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── PTTLog │ │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── Cylinder │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mirrorMeshDict │ │ │ └── sampleDict │ ├── OtherTests │ │ ├── Channel2D_VE │ │ │ ├── FENE-CR │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── FENE-CRLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── FENE-P │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── FENE-PLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── GiesekusLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ └── blockMeshDict │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── Oldroyd-BRootk │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── Oldroyd-BSqrt │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── b │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── PTTLog │ │ │ │ ├── exponential │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── U │ │ │ │ │ │ ├── p │ │ │ │ │ │ ├── tau │ │ │ │ │ │ └── theta │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ │ └── polyMesh │ │ │ │ │ │ │ └── blockMeshDict │ │ │ │ │ └── system │ │ │ │ │ │ ├── controlDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ ├── fvSolution │ │ │ │ │ │ └── sampleDict │ │ │ │ ├── generalized │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── U │ │ │ │ │ │ ├── p │ │ │ │ │ │ ├── tau │ │ │ │ │ │ └── theta │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ │ └── polyMesh │ │ │ │ │ │ │ └── blockMeshDict │ │ │ │ │ └── system │ │ │ │ │ │ ├── controlDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ ├── fvSolution │ │ │ │ │ │ └── sampleDict │ │ │ │ └── linear │ │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ └── blockMeshDict │ │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── README │ │ │ ├── Rolie-Poly │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── Rolie-PolyLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── WhiteMetznerCYLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── XPomPomLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── multiMode │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tauM1 │ │ │ │ │ ├── tauM2 │ │ │ │ │ ├── thetaM1 │ │ │ │ │ └── thetaM2 │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── otherModels │ │ │ │ ├── BMP │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── Phi │ │ │ │ │ │ ├── U │ │ │ │ │ │ ├── p │ │ │ │ │ │ └── tau │ │ │ │ │ ├── .~lock.bn.csv# │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ │ └── polyMesh │ │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ │ └── boundary │ │ │ │ │ └── system │ │ │ │ │ │ ├── controlDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ ├── fvSolution │ │ │ │ │ │ └── sampleDict │ │ │ │ ├── ML-IKH │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── U │ │ │ │ │ │ ├── p │ │ │ │ │ │ └── tau │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ │ └── polyMesh │ │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ │ └── boundary │ │ │ │ │ └── system │ │ │ │ │ │ ├── controlDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ ├── fvSolution │ │ │ │ │ │ └── sampleDict │ │ │ │ ├── RRM │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── Lstar │ │ │ │ │ │ ├── S │ │ │ │ │ │ ├── U │ │ │ │ │ │ ├── p │ │ │ │ │ │ └── tau │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ │ └── polyMesh │ │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ │ └── boundary │ │ │ │ │ └── system │ │ │ │ │ │ ├── controlDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ ├── fvSolution │ │ │ │ │ │ └── sampleDict │ │ │ │ ├── SaramitoLog │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── U │ │ │ │ │ │ ├── p │ │ │ │ │ │ ├── tau │ │ │ │ │ │ └── theta │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ │ └── polyMesh │ │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ │ └── boundary │ │ │ │ │ └── system │ │ │ │ │ │ ├── controlDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ ├── fvSolution │ │ │ │ │ │ └── sampleDict │ │ │ │ └── VCM │ │ │ │ │ ├── 0 │ │ │ │ │ ├── A │ │ │ │ │ ├── B │ │ │ │ │ ├── U │ │ │ │ │ ├── nA │ │ │ │ │ ├── nB │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ └── sPTTlinearLog │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ └── blockMeshDict │ │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── Channel3D_VE │ │ │ ├── Oldroyd-BLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ └── polyMesh │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ └── boundary │ │ │ │ └── system │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ └── README │ │ ├── README │ │ └── tube_GNF │ │ │ ├── CarreauYasuda │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── Casson │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── HerschelBulkley │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── Newtonian │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── PowerLaw │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ └── README │ └── fluidDamper │ │ └── CarreauYasuda │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ └── pointMotionUx │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── dynamicMeshDict │ │ └── polyMesh │ │ │ ├── blockMeshDict │ │ │ └── boundary │ │ └── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── rheoInterFoam │ ├── DieSwell │ │ ├── CarreauYasuda │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha1.org │ │ │ │ └── pd │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── g │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── GiesekusLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha1.org │ │ │ │ ├── pd │ │ │ │ ├── tau1 │ │ │ │ └── theta1 │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── g │ │ │ │ └── polyMesh │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ └── boundary │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha1.org │ │ │ ├── pd │ │ │ ├── tau1 │ │ │ └── theta1 │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── g │ │ │ └── polyMesh │ │ │ │ └── blockMeshDict │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── ImpactingDrop │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U.org │ │ │ ├── alpha1.org │ │ │ ├── pd │ │ │ ├── tau1 │ │ │ └── theta1 │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── g │ │ │ └── polyMesh │ │ │ │ ├── blockMeshDict │ │ │ │ └── boundary │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── sampleDict │ │ │ └── setFieldsDict │ └── damBreak │ │ └── Newtonian │ │ ├── 0 │ │ ├── U │ │ ├── alpha1.org │ │ └── pd │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── g │ │ └── polyMesh │ │ │ ├── blockMeshDict │ │ │ └── boundary │ │ └── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── rheoTestFoam │ ├── FENE-CR │ ├── 0 │ │ ├── U │ │ ├── p │ │ └── tau │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── constitutiveProperties │ │ └── polyMesh │ │ │ ├── blockMeshDict │ │ │ └── boundary │ └── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── HerschelBulkley │ ├── 0 │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── constitutiveProperties │ │ └── polyMesh │ │ │ ├── blockMeshDict │ │ │ └── boundary │ └── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── multimode_XPomPom │ ├── 0 │ ├── U │ ├── p │ ├── tauM1 │ ├── tauM2 │ ├── tauM3 │ └── tauM4 │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── constitutiveProperties │ └── polyMesh │ │ ├── blockMeshDict │ │ └── boundary │ └── system │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── of70 ├── downloadEigen ├── installPetsc ├── src │ ├── Allwclean │ ├── Allwmake │ ├── libs │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── EDFModels │ │ │ ├── EDFModel │ │ │ │ ├── EDFModel.C │ │ │ │ └── EDFModel.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── models │ │ │ │ ├── DebyeHuckel │ │ │ │ ├── DebyeHuckel.C │ │ │ │ └── DebyeHuckel.H │ │ │ │ ├── EDFEquations │ │ │ │ ├── EDFEquation.C │ │ │ │ ├── EDFEquation.H │ │ │ │ └── newEDFEquation.C │ │ │ │ ├── NernstPlanck │ │ │ │ ├── NernstPlanck.C │ │ │ │ ├── NernstPlanck.H │ │ │ │ └── NernstPlanckCoupled │ │ │ │ │ ├── NernstPlanckCoupled.C │ │ │ │ │ ├── NernstPlanckCoupled.H │ │ │ │ │ ├── correctPsiCorr.H │ │ │ │ │ └── createPsiCorr.H │ │ │ │ ├── Ohmic │ │ │ │ ├── Ohmic.C │ │ │ │ └── Ohmic.H │ │ │ │ ├── PoissonBoltzmann │ │ │ │ ├── PoissonBoltzmann.C │ │ │ │ └── PoissonBoltzmann.H │ │ │ │ ├── noModel │ │ │ │ ├── noModel.C │ │ │ │ └── noModel.H │ │ │ │ └── slipSmoluchowski │ │ │ │ ├── slipSmoluchowski.C │ │ │ │ └── slipSmoluchowski.H │ │ ├── boundaryConditions │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── boltzmannEquilibrium │ │ │ │ ├── boltzmannEquilibriumFvPatchScalarField.C │ │ │ │ └── boltzmannEquilibriumFvPatchScalarField.H │ │ │ ├── heatFlux │ │ │ │ ├── heatFluxFvPatchScalarField.C │ │ │ │ └── heatFluxFvPatchScalarField.H │ │ │ ├── inducedPotential │ │ │ │ ├── inducedPotentialFvPatchScalarField.C │ │ │ │ └── inducedPotentialFvPatchScalarField.H │ │ │ ├── linearExtrapolation │ │ │ │ ├── linearExtrapolationFvPatchField.C │ │ │ │ ├── linearExtrapolationFvPatchField.H │ │ │ │ ├── linearExtrapolationFvPatchFields.C │ │ │ │ ├── linearExtrapolationFvPatchFields.H │ │ │ │ └── linearExtrapolationFvPatchFieldsFwd.H │ │ │ ├── navierSlip │ │ │ │ ├── navierSlipFvPatchVectorField.C │ │ │ │ └── navierSlipFvPatchVectorField.H │ │ │ ├── poiseuilleVelocity │ │ │ │ ├── poiseuilleVelocityFvPatchVectorField.C │ │ │ │ └── poiseuilleVelocityFvPatchVectorField.H │ │ │ ├── slipSigmaDependent │ │ │ │ ├── slipSigmaDependentFvPatchVectorField.C │ │ │ │ └── slipSigmaDependentFvPatchVectorField.H │ │ │ ├── slipSmoluchowski │ │ │ │ ├── slipSmoluchowskiFvPatchVectorField.C │ │ │ │ └── slipSmoluchowskiFvPatchVectorField.H │ │ │ └── zeroIonicFlux │ │ │ │ ├── zeroIonicFluxFvPatchScalarField.C │ │ │ │ └── zeroIonicFluxFvPatchScalarField.H │ │ ├── brownianDynamics │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── externalForcingInterp │ │ │ │ ├── Analytical │ │ │ │ │ ├── Analytical.C │ │ │ │ │ ├── Analytical.H │ │ │ │ │ └── AnalyticalI.H │ │ │ │ ├── BarycentricWeights │ │ │ │ │ ├── BarycentricWeights.C │ │ │ │ │ ├── BarycentricWeights.H │ │ │ │ │ ├── BarycentricWeightsI.H │ │ │ │ │ └── interpolationCellPointBary │ │ │ │ │ │ ├── interpolationCellPointBary.C │ │ │ │ │ │ ├── interpolationCellPointBary.H │ │ │ │ │ │ ├── interpolationCellPointBaryI.H │ │ │ │ │ │ └── makeInterpolationCellPointBary.C │ │ │ │ ├── Gradient │ │ │ │ │ ├── Gradient.C │ │ │ │ │ ├── Gradient.H │ │ │ │ │ └── GradientI.H │ │ │ │ ├── externalForcingInterp.C │ │ │ │ └── externalForcingInterp.H │ │ │ ├── sPCloudInterface.C │ │ │ ├── sPCloudInterface.H │ │ │ ├── sPCloudInterfaceIO.H │ │ │ ├── solidParticle.C │ │ │ ├── solidParticle.H │ │ │ ├── solidParticleCloud.C │ │ │ ├── solidParticleCloud.H │ │ │ ├── solidParticleCloudI.H │ │ │ ├── solidParticleI.H │ │ │ ├── solidParticleIO.C │ │ │ └── springModel │ │ │ │ ├── CohenPade │ │ │ │ ├── CohenPade.C │ │ │ │ └── CohenPade.H │ │ │ │ ├── FENE │ │ │ │ ├── FENE.C │ │ │ │ └── FENE.H │ │ │ │ ├── Hookean │ │ │ │ ├── Hookean.C │ │ │ │ └── Hookean.H │ │ │ │ ├── MarkoSiggia │ │ │ │ ├── MarkoSiggia.C │ │ │ │ └── MarkoSiggia.H │ │ │ │ ├── solveSystem.H │ │ │ │ ├── springModel.C │ │ │ │ └── springModel.H │ │ ├── constitutiveEquations │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── constitutiveEqs │ │ │ │ ├── FENE-CR │ │ │ │ │ ├── FENE-CRLog │ │ │ │ │ │ ├── FENE_CRLog.C │ │ │ │ │ │ └── FENE_CRLog.H │ │ │ │ │ ├── FENE_CR.C │ │ │ │ │ └── FENE_CR.H │ │ │ │ ├── FENE-P │ │ │ │ │ ├── FENE-PLog │ │ │ │ │ │ ├── FENE_PLog.C │ │ │ │ │ │ └── FENE_PLog.H │ │ │ │ │ ├── FENE_P.C │ │ │ │ │ └── FENE_P.H │ │ │ │ ├── GNF │ │ │ │ │ ├── CarreauYasuda │ │ │ │ │ │ ├── CarreauYasuda.C │ │ │ │ │ │ └── CarreauYasuda.H │ │ │ │ │ ├── Casson │ │ │ │ │ │ ├── Casson.C │ │ │ │ │ │ └── Casson.H │ │ │ │ │ ├── HerschelBulkley │ │ │ │ │ │ ├── HerschelBulkley.C │ │ │ │ │ │ └── HerschelBulkley.H │ │ │ │ │ ├── Newtonian │ │ │ │ │ │ ├── Newtonian.C │ │ │ │ │ │ └── Newtonian.H │ │ │ │ │ └── PowerLaw │ │ │ │ │ │ ├── PowerLaw.C │ │ │ │ │ │ └── PowerLaw.H │ │ │ │ ├── Giesekus │ │ │ │ │ ├── Giesekus.C │ │ │ │ │ ├── Giesekus.H │ │ │ │ │ └── GiesekusLog │ │ │ │ │ │ ├── GiesekusLog.C │ │ │ │ │ │ └── GiesekusLog.H │ │ │ │ ├── Oldroyd-B │ │ │ │ │ ├── Oldroyd-BLog │ │ │ │ │ │ ├── Oldroyd_BLog.C │ │ │ │ │ │ └── Oldroyd_BLog.H │ │ │ │ │ ├── Oldroyd-BRootk │ │ │ │ │ │ ├── Oldroyd_BRootk.C │ │ │ │ │ │ └── Oldroyd_BRootk.H │ │ │ │ │ ├── Oldroyd-BSqrt │ │ │ │ │ │ ├── Oldroyd_BSqrt.C │ │ │ │ │ │ └── Oldroyd_BSqrt.H │ │ │ │ │ ├── Oldroyd_B.C │ │ │ │ │ └── Oldroyd_B.H │ │ │ │ ├── PTT │ │ │ │ │ ├── PTT.C │ │ │ │ │ ├── PTT.H │ │ │ │ │ └── PTTLog │ │ │ │ │ │ ├── PTTLog.C │ │ │ │ │ │ └── PTTLog.H │ │ │ │ ├── Rolie-Poly │ │ │ │ │ ├── Rolie-PolyLog │ │ │ │ │ │ ├── RoliePolyLog.C │ │ │ │ │ │ └── RoliePolyLog.H │ │ │ │ │ ├── RoliePoly.C │ │ │ │ │ └── RoliePoly.H │ │ │ │ ├── WhiteMetznerCY │ │ │ │ │ ├── WhiteMetznerCY.C │ │ │ │ │ ├── WhiteMetznerCY.H │ │ │ │ │ └── WhiteMetznerCYLog │ │ │ │ │ │ ├── WhiteMetznerCYLog.C │ │ │ │ │ │ └── WhiteMetznerCYLog.H │ │ │ │ ├── XPomPom │ │ │ │ │ ├── XPomPom.C │ │ │ │ │ ├── XPomPom.H │ │ │ │ │ └── XPomPomLog │ │ │ │ │ │ ├── XPomPomLog.C │ │ │ │ │ │ └── XPomPomLog.H │ │ │ │ ├── constitutiveEq │ │ │ │ │ ├── constitutiveEq.C │ │ │ │ │ ├── constitutiveEq.H │ │ │ │ │ └── newConstitutiveEq.C │ │ │ │ ├── multiMode │ │ │ │ │ ├── multiMode.C │ │ │ │ │ └── multiMode.H │ │ │ │ ├── otherModels │ │ │ │ │ ├── BMP │ │ │ │ │ │ ├── BMP.C │ │ │ │ │ │ ├── BMP.H │ │ │ │ │ │ └── BMPLog │ │ │ │ │ │ │ ├── BMPLog.C │ │ │ │ │ │ │ └── BMPLog.H │ │ │ │ │ ├── ML-IKH │ │ │ │ │ │ ├── ML_IKH.C │ │ │ │ │ │ └── ML_IKH.H │ │ │ │ │ ├── RRM │ │ │ │ │ │ ├── RRM.C │ │ │ │ │ │ └── RRM.H │ │ │ │ │ ├── Saramito │ │ │ │ │ │ ├── Saramito.C │ │ │ │ │ │ ├── Saramito.H │ │ │ │ │ │ └── SaramitoLog │ │ │ │ │ │ │ ├── SaramitoLog.C │ │ │ │ │ │ │ └── SaramitoLog.H │ │ │ │ │ ├── VCM │ │ │ │ │ │ ├── VCM.C │ │ │ │ │ │ └── VCM.H │ │ │ │ │ └── sPTT-IKH │ │ │ │ │ │ ├── sPTT_IKH.C │ │ │ │ │ │ └── sPTT_IKH.H │ │ │ │ └── utils │ │ │ │ │ └── jacobi.H │ │ │ ├── constitutiveModel │ │ │ │ ├── constitutiveModel.C │ │ │ │ └── constitutiveModel.H │ │ │ ├── constitutiveTwoPhaseMixture │ │ │ │ ├── constitutiveTwoPhaseMixture.C │ │ │ │ └── constitutiveTwoPhaseMixture.H │ │ │ └── immiscibleConstitutiveTwoPhaseMixture │ │ │ │ ├── immiscibleConstitutiveTwoPhaseMixture.C │ │ │ │ └── immiscibleConstitutiveTwoPhaseMixture.H │ │ ├── filmCasting │ │ │ ├── BC │ │ │ │ ├── freeSurfaceDisplacementPointPatchVectorField.C │ │ │ │ ├── freeSurfaceDisplacementPointPatchVectorField.H │ │ │ │ ├── rollVelocityFvPatchVectorField.C │ │ │ │ └── rollVelocityFvPatchVectorField.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── filmModel.C │ │ │ ├── filmModel.H │ │ │ └── motionSolver │ │ │ │ ├── spinesFvMotionSolver.C │ │ │ │ └── spinesFvMotionSolver.H │ │ ├── fvmb │ │ │ ├── LMatrix.C │ │ │ ├── LMatrix.H │ │ │ ├── LMatrixs.C │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── operators │ │ │ │ ├── blockOperators.C │ │ │ │ ├── blockOperators.H │ │ │ │ ├── div.C │ │ │ │ ├── div.H │ │ │ │ ├── grad.C │ │ │ │ ├── grad.H │ │ │ │ ├── twoSymmGrad.C │ │ │ │ └── twoSymmGrad.H │ │ ├── gaussDefCmpwConvectionScheme │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── gaussDefCmpwConvectionScheme.C │ │ │ ├── gaussDefCmpwConvectionScheme.H │ │ │ ├── gaussDefCmpwConvectionSchemes.C │ │ │ └── limiters.H │ │ ├── postProcessing │ │ │ ├── averageMolcN │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── averageMolcN.C │ │ │ ├── averageMolcX │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── averageMolcX.C │ │ │ ├── postProcUtils │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── postProcUtils │ │ │ │ │ ├── calcBalance │ │ │ │ │ │ ├── calcBalance.C │ │ │ │ │ │ └── calcBalance.H │ │ │ │ │ ├── calcJpatch │ │ │ │ │ │ ├── calcJpatch.C │ │ │ │ │ │ └── calcJpatch.H │ │ │ │ │ ├── calcWSS │ │ │ │ │ │ ├── calcWSS.C │ │ │ │ │ │ └── calcWSS.H │ │ │ │ │ ├── none │ │ │ │ │ │ ├── none.C │ │ │ │ │ │ └── none.H │ │ │ │ │ ├── ppUtil.C │ │ │ │ │ └── ppUtil.H │ │ │ │ └── postProcUtilsInterface │ │ │ │ │ ├── ppUtilInterface.C │ │ │ │ │ └── ppUtilInterface.H │ │ │ └── writeEfield │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── createFields.H │ │ │ │ └── writeEfield.C │ │ ├── preProcessing │ │ │ ├── initMolecules │ │ │ │ ├── IOPositionMolec.C │ │ │ │ ├── IOPositionMolec.H │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ └── initMolecules.C │ │ │ └── rndPerturbation │ │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ │ ├── createFields.H │ │ │ │ └── rndPerturbation.C │ │ ├── sparseMatrixSolvers │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── coupled │ │ │ │ ├── BCs │ │ │ │ │ ├── coupledT │ │ │ │ │ │ ├── coupledTFvPatchScalarField.C │ │ │ │ │ │ └── coupledTFvPatchScalarField.H │ │ │ │ │ ├── regionCoupledAMIFvPatch.C │ │ │ │ │ ├── regionCoupledAMIFvPatch.H │ │ │ │ │ ├── regionCoupledAMIPointPatch.C │ │ │ │ │ ├── regionCoupledAMIPointPatch.H │ │ │ │ │ ├── regionCoupledAMIPolyPatch.C │ │ │ │ │ └── regionCoupledAMIPolyPatch.H │ │ │ │ ├── coupledSolver.C │ │ │ │ ├── coupledSolver.H │ │ │ │ ├── coupledSolverTemplates.C │ │ │ │ ├── specialBoundariesA.H │ │ │ │ ├── specialBoundariesAlloc.H │ │ │ │ └── specialBoundariesB.H │ │ │ ├── segregated │ │ │ │ ├── eigenSolver │ │ │ │ │ ├── eigenSolver.C │ │ │ │ │ ├── eigenSolver.H │ │ │ │ │ ├── eigenSolvers.C │ │ │ │ │ └── solvers │ │ │ │ │ │ ├── BiCGSTAB │ │ │ │ │ │ ├── eBiCGSTAB.C │ │ │ │ │ │ └── eBiCGSTAB.H │ │ │ │ │ │ ├── EigenIterDirSolver.C │ │ │ │ │ │ ├── EigenIterDirSolver.H │ │ │ │ │ │ ├── GMRES │ │ │ │ │ │ ├── eGMRES.C │ │ │ │ │ │ └── eGMRES.H │ │ │ │ │ │ ├── PCG │ │ │ │ │ │ ├── ePCG.C │ │ │ │ │ │ └── ePCG.H │ │ │ │ │ │ ├── SparseLU │ │ │ │ │ │ ├── eSparseLU.C │ │ │ │ │ │ └── eSparseLU.H │ │ │ │ │ │ └── newEigenIterDirSolver.C │ │ │ │ ├── hypreSolver │ │ │ │ │ ├── hypreSolver.C │ │ │ │ │ ├── hypreSolver.H │ │ │ │ │ ├── hypreSolvers.C │ │ │ │ │ ├── preconditioners │ │ │ │ │ │ ├── BoomerAMG │ │ │ │ │ │ │ ├── hpBoomerAMG.C │ │ │ │ │ │ │ └── hpBoomerAMG.H │ │ │ │ │ │ ├── Euclid │ │ │ │ │ │ │ ├── Euclid.C │ │ │ │ │ │ │ └── Euclid.H │ │ │ │ │ │ ├── HypreIJPreconditioner.C │ │ │ │ │ │ ├── HypreIJPreconditioner.H │ │ │ │ │ │ ├── ParaSails │ │ │ │ │ │ │ ├── ParaSails.C │ │ │ │ │ │ │ └── ParaSails.H │ │ │ │ │ │ ├── newHypreIJPreconditioner.C │ │ │ │ │ │ └── none │ │ │ │ │ │ │ ├── none.C │ │ │ │ │ │ │ └── none.H │ │ │ │ │ └── solvers │ │ │ │ │ │ ├── BiCGSTAB │ │ │ │ │ │ ├── hsBiCGSTAB.C │ │ │ │ │ │ └── hsBiCGSTAB.H │ │ │ │ │ │ ├── BoomerAMG │ │ │ │ │ │ ├── hsBoomerAMG.C │ │ │ │ │ │ └── hsBoomerAMG.H │ │ │ │ │ │ ├── GMRES │ │ │ │ │ │ ├── hsGMRES.C │ │ │ │ │ │ └── hsGMRES.H │ │ │ │ │ │ ├── HypreIJSolver.C │ │ │ │ │ │ ├── HypreIJSolver.H │ │ │ │ │ │ ├── PCG │ │ │ │ │ │ ├── hsPCG.C │ │ │ │ │ │ └── hsPCG.H │ │ │ │ │ │ └── newHypreIJSolver.C │ │ │ │ ├── openFoamSolver │ │ │ │ │ ├── openFoamSolver.C │ │ │ │ │ ├── openFoamSolver.H │ │ │ │ │ └── openFoamSolvers.C │ │ │ │ ├── petscSolver │ │ │ │ │ ├── petscSolver.C │ │ │ │ │ ├── petscSolver.H │ │ │ │ │ └── petscSolvers.C │ │ │ │ ├── sparseSolver.C │ │ │ │ ├── sparseSolver.H │ │ │ │ └── sparseSolvers.C │ │ │ ├── sparseMatrixSolvers.C │ │ │ ├── sparseMatrixSolvers.H │ │ │ ├── sparseSolverBase.C │ │ │ └── sparseSolverBase.H │ │ └── thermo │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── thermoFunctions │ │ │ ├── Arrhenius │ │ │ │ ├── Arrhenius.C │ │ │ │ └── Arrhenius.H │ │ │ ├── ArrheniusModified │ │ │ │ ├── ArrheniusModified.C │ │ │ │ └── ArrheniusModified.H │ │ │ ├── Constant │ │ │ │ ├── Constant.C │ │ │ │ └── Constant.H │ │ │ ├── VFT │ │ │ │ ├── VFT.C │ │ │ │ └── VFT.H │ │ │ ├── WLF │ │ │ │ ├── WLF.C │ │ │ │ └── WLF.H │ │ │ └── thermoFunctions │ │ │ │ ├── newThermoFunction.C │ │ │ │ ├── thermoFunction.C │ │ │ │ └── thermoFunction.H │ │ │ └── thermoModels │ │ │ ├── fluidThermo │ │ │ ├── boussinesq │ │ │ │ ├── boussinesq.C │ │ │ │ └── boussinesq.H │ │ │ ├── fluidThermoModel.C │ │ │ ├── fluidThermoModel.H │ │ │ ├── frozenTemperature │ │ │ │ ├── frozenTemperature.C │ │ │ │ └── frozenTemperature.H │ │ │ └── newFluidThermoModel.C │ │ │ ├── fluidThermoMixture │ │ │ ├── fluidThermoMixtureModel.C │ │ │ ├── fluidThermoMixtureModel.H │ │ │ ├── frozenTemperatureMixture │ │ │ │ ├── frozenTemperatureMixture.C │ │ │ │ └── frozenTemperatureMixture.H │ │ │ ├── isotropicMixture │ │ │ │ ├── isotropicMixture.C │ │ │ │ └── isotropicMixture.H │ │ │ └── newFluidThermoMixtureModel.C │ │ │ └── solidThermo │ │ │ ├── isotropic │ │ │ ├── isotropic.C │ │ │ └── isotropic.H │ │ │ ├── newSolidThermoModel.C │ │ │ ├── solidThermoModel.C │ │ │ └── solidThermoModel.H │ └── solvers │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── rheoBDFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── createControls.H │ │ ├── createFields.H │ │ ├── createLagrangianFields.H │ │ ├── createSolver.H │ │ ├── moleculesEqns.H │ │ ├── pEqn.H │ │ ├── pUEqn.H │ │ └── rheoBDFoam.C │ │ ├── rheoEFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── createControls.H │ │ ├── createFields.H │ │ ├── createSolver.H │ │ ├── pEqn.H │ │ ├── pUEqn.H │ │ └── rheoEFoam.C │ │ ├── rheoFilmFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createControls.H │ │ ├── createFields.H │ │ ├── createSolver.H │ │ └── rheoFilmFoam.C │ │ ├── rheoFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── createControls.H │ │ ├── createFields.H │ │ ├── createSolver.H │ │ ├── pEqn.H │ │ ├── pUEqn.H │ │ └── rheoFoam.C │ │ ├── rheoHeatFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── createControls.H │ │ ├── createFields.H │ │ ├── createSolver.H │ │ ├── pEqn.H │ │ ├── pUEqn.H │ │ └── rheoHeatFoam.C │ │ ├── rheoInterFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── UEqn.H │ │ ├── createFields.H │ │ ├── createSolver.H │ │ ├── pEqn.H │ │ ├── rheoInterFoam.C │ │ └── rhofs.H │ │ ├── rheoMultiRegionFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── coupledTEqn.H │ │ ├── createFields.H │ │ ├── createMeshes.H │ │ ├── createMeshesPostProcess.H │ │ ├── fluid │ │ │ ├── CEqn.H │ │ │ ├── UEqn.H │ │ │ ├── adjustCorrPhi.H │ │ │ ├── createFluidFields.H │ │ │ ├── createFluidMeshes.H │ │ │ ├── createSolver.H │ │ │ ├── iCourantNo.C │ │ │ ├── iCourantNo.H │ │ │ ├── initContinuityErrs.H │ │ │ ├── multiRegionCourantNo.H │ │ │ ├── pEqn.H │ │ │ ├── pUEqn.H │ │ │ ├── setRegionFluidFields.H │ │ │ └── solveFluid.H │ │ ├── include │ │ │ ├── setInitialMultiRegionDeltaT.H │ │ │ └── setMultiRegionDeltaT.H │ │ ├── rheoMultiRegionFoam.C │ │ └── solid │ │ │ ├── createSolidFields.H │ │ │ ├── createSolidMeshes.H │ │ │ ├── readSolidTimeControls.H │ │ │ ├── setRegionSolidFields.H │ │ │ ├── solidRegionDiffusionNo.H │ │ │ └── solveSolid.H │ │ ├── rheoTestFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── createFields.H │ │ ├── reStartOrEnd.H │ │ ├── rheoTestFoam.C │ │ └── timeWrite.H │ │ └── shared │ │ ├── singlePhase │ │ ├── CEqn.H │ │ ├── adjustCorrPhi.H │ │ ├── correctPhi.H │ │ ├── createPPutil.H │ │ ├── readDyMControls.H │ │ └── setRDeltaT.H │ │ └── twoPhase │ │ ├── VoF │ │ ├── alphaCourantNo.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── createAlphaFluxes.H │ │ ├── setDeltaT.H │ │ └── setRDeltaT.H │ │ ├── adjustCorrPhi.H │ │ ├── alphaSuSp.H │ │ ├── correctPhi.H │ │ ├── createDyMControls.H │ │ ├── createPPutil.H │ │ └── initCorrectPhi.H └── tutorials │ ├── rheoBDFoam │ ├── LAOE │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── initMoleculesDict │ │ │ └── moleculesControls │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── OtherTests │ │ └── tetheredCircular │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── initMoleculesDict │ │ │ └── moleculesControls │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── flowFocusing │ │ ├── electrophoresis │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── BDS │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ ├── constitutiveProperties │ │ │ │ │ ├── electricProperties │ │ │ │ │ ├── initMoleculesDict │ │ │ │ │ └── moleculesControls │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ └── electricFieldSimulation │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── phiE │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── electricProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── pressureDrivenFlow │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── BDS │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ ├── initMoleculesDict │ │ │ │ └── moleculesControls │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── flowSimulation │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── planarExtensionalFlow │ │ ├── 0 │ │ ├── U │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ └── moleculesControls │ │ ├── relaxation │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── initMoleculesDict │ │ │ └── moleculesControls │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── rheoEFoam │ ├── EEI │ │ └── PoissonBoltzmann │ │ │ ├── CrossSlot │ │ │ ├── 0 │ │ │ │ ├── C.org │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── phiE │ │ │ │ ├── psi │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── electricProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── mirrorMeshDict0 │ │ │ │ ├── mirrorMeshDict1 │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ │ └── FlowFocusing │ │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiE │ │ │ ├── psi │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mirrorMeshDict0 │ │ │ ├── mirrorMeshDict1 │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ ├── EKI │ │ └── Ohmic │ │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiE │ │ │ └── sigma.org │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── EKmixer │ │ └── slipSmoluchowski │ │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ └── phiE │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── refineMeshDict │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ ├── ICEO │ │ ├── DebyeHuckel │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── phiE │ │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── electricProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── NernstPlanckCoupled │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── cAnion │ │ │ │ ├── cCation │ │ │ │ ├── p │ │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── electricProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── petscDict │ │ │ │ └── sampleDict │ │ └── PoissonBoltzmann │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiE │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── channelEDF │ │ ├── PTT │ │ │ └── DebyeHuckel │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── psi │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── electricProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ └── PowerLaw │ │ │ ├── DebyeHuckel │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── electricProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── NernstPlanck │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── ciAnion │ │ │ │ ├── ciCation │ │ │ │ ├── p │ │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── electricProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ └── PoissonBoltzmann │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── psi │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ └── selecMembrane │ │ └── NernstPlanck │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── electricProperties │ │ ├── solution1D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── cAnion │ │ │ ├── cCation │ │ │ ├── p │ │ │ └── psi │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── petscDict │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── rheoFilmFoam │ ├── Newtonian │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── h │ │ │ └── pointDisplacement │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── dynamicMeshDict │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── UCM │ │ ├── 0 │ │ │ ├── U │ │ │ ├── h │ │ │ ├── pointDisplacement │ │ │ ├── tau │ │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── dynamicMeshDict │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── otherCases │ │ ├── PTTMultimode │ │ ├── 0 │ │ │ ├── U │ │ │ ├── h │ │ │ ├── pointDisplacement │ │ │ ├── tauM1 │ │ │ └── tauM2 │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── dynamicMeshDict │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── UCM.fulldomain │ │ ├── 0 │ │ ├── U │ │ ├── h │ │ ├── pointDisplacement │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── dynamicMeshDict │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── rheoFoam │ ├── Aneurysm │ │ └── HerschelBulkley │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── faces.gz │ │ │ │ ├── neighbour.gz │ │ │ │ ├── owner.gz │ │ │ │ └── points.gz │ │ │ └── system │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── Cavity │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── constitutiveProperties │ │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ │ └── writeData │ ├── Channel │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── Contraction41 │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── constitutiveProperties │ │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ │ └── writeData │ ├── CrossSlot │ │ ├── Oldroyd-BLog │ │ │ ├── 0 │ │ │ │ ├── C.org │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ └── writeData │ │ ├── Oldroyd-BRootk │ │ │ ├── 0 │ │ │ │ ├── C.org │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ └── writeData │ │ ├── Oldroyd-BSqrt │ │ │ ├── 0 │ │ │ │ ├── C.org │ │ │ │ ├── U │ │ │ │ ├── b │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ │ └── writeData │ │ └── PTTLog │ │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── constitutiveProperties │ │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ │ └── writeData │ ├── Cylinder │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── constitutiveProperties │ │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mirrorMeshDict │ │ │ ├── petscDict │ │ │ └── sampleDict │ │ │ └── writeData │ ├── OtherTests │ │ ├── Channel2D_VE │ │ │ ├── FENE-CR │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── FENE-CRLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── FENE-P │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── FENE-PLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── GiesekusLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── Oldroyd-BRootk │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── Oldroyd-BSqrt │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── b │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── PTTLog │ │ │ │ ├── exponential │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── U │ │ │ │ │ │ ├── p │ │ │ │ │ │ ├── tau │ │ │ │ │ │ └── theta │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ │ └── constitutiveProperties │ │ │ │ │ └── system │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ ├── controlDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ ├── fvSolution │ │ │ │ │ │ └── sampleDict │ │ │ │ ├── generalized │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── U │ │ │ │ │ │ ├── p │ │ │ │ │ │ ├── tau │ │ │ │ │ │ └── theta │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ │ └── constitutiveProperties │ │ │ │ │ └── system │ │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ │ ├── controlDict │ │ │ │ │ │ ├── fvSchemes │ │ │ │ │ │ ├── fvSolution │ │ │ │ │ │ └── sampleDict │ │ │ │ └── linear │ │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ │ ├── Allclean │ │ │ │ │ ├── Allrun │ │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── README │ │ │ ├── Rolie-Poly │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── Rolie-PolyLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── WhiteMetznerCYLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── XPomPomLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── multiMode │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tauM1 │ │ │ │ │ ├── tauM2 │ │ │ │ │ ├── thetaM1 │ │ │ │ │ └── thetaM2 │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ └── otherModels │ │ │ │ ├── BMP │ │ │ │ ├── 0 │ │ │ │ │ ├── Phi │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── .~lock.bn.csv# │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ │ ├── ML-IKH │ │ │ │ ├── 0 │ │ │ │ │ ├── A │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ │ ├── RRM │ │ │ │ ├── 0 │ │ │ │ │ ├── Lstar │ │ │ │ │ ├── S │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ │ ├── SaramitoLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ │ ├── VCM │ │ │ │ ├── 0 │ │ │ │ │ ├── A │ │ │ │ │ ├── B │ │ │ │ │ ├── U │ │ │ │ │ ├── nA │ │ │ │ │ ├── nB │ │ │ │ │ ├── p │ │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ │ └── sPTT-IKH │ │ │ │ ├── 0 │ │ │ │ ├── A │ │ │ │ ├── U │ │ │ │ ├── lambda │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── Channel3D_VE │ │ │ ├── Oldroyd-BLog │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ └── README │ │ ├── README │ │ └── tube_GNF │ │ │ ├── CarreauYasuda │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── Casson │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── HerschelBulkley │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── Newtonian │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── PowerLaw │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ └── README │ └── fluidDamper │ │ └── CarreauYasuda │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ └── pointMotionUx │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── dynamicMeshDict │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── writeData │ ├── rheoHeatFoam │ ├── BernardCells │ │ └── Newtonian │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── g │ │ │ └── thermoProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── OtherTests │ │ ├── cavity │ │ │ └── Newtonian │ │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── README │ │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ ├── g │ │ │ │ └── thermoProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── channelEDF │ │ │ └── PTT │ │ │ └── DebyeHuckel │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── p_rgh │ │ │ ├── psi │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── g │ │ │ └── thermoProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── buoyantCavity │ │ └── Newtonian │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── g │ │ │ └── thermoProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── channel │ │ └── PTTLog │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── p_rgh │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── g │ │ │ └── thermoProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ └── cylinder │ │ └── PowerLaw │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── g │ │ └── thermoProperties │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── extrudeMeshDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── writeData │ ├── rheoInterFoam │ ├── DieSwell │ │ ├── CarreauYasuda │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.org │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── g │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── GiesekusLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.org │ │ │ │ ├── p_rgh │ │ │ │ ├── tau.water │ │ │ │ └── theta.water │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ └── g │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.org │ │ │ ├── p_rgh │ │ │ ├── tau.water │ │ │ └── theta.water │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── g │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── ImpactingDrop │ │ └── Oldroyd-BLog │ │ │ ├── 0 │ │ │ ├── U.org │ │ │ ├── alpha.water.org │ │ │ ├── p_rgh │ │ │ ├── tau.water │ │ │ └── theta.water │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── g │ │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── sampleDict │ │ │ └── setFieldsDict │ │ │ └── writeData │ └── damBreak │ │ └── Newtonian │ │ ├── 0 │ │ ├── U │ │ ├── alpha.water.org │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── g │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ ├── rheoMultiRegionFoam │ ├── calibrator │ │ ├── 0 │ │ │ ├── calibrator │ │ │ │ └── T │ │ │ └── polymer │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── calibrator │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── meshQualityDict │ │ │ │ └── snappyHexMeshDict │ │ ├── constant │ │ │ ├── calibrator.back │ │ │ │ └── thermoProperties │ │ │ ├── polymer.back │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ ├── g │ │ │ │ └── thermoProperties │ │ │ └── regionProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── calibrator │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── petscDict │ │ │ └── polymer │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── slabs │ │ ├── 0 │ │ │ ├── solid0 │ │ │ │ └── T │ │ │ └── solid1 │ │ │ │ └── T │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── regionProperties │ │ │ ├── solid0.back │ │ │ │ └── thermoProperties │ │ │ └── solid1.back │ │ │ │ └── thermoProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── petscDict │ │ │ ├── solid0 │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ │ └── solid1 │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ └── sphere │ │ └── PTTLog │ │ ├── 0 │ │ ├── fluid │ │ │ ├── T │ │ │ ├── U │ │ │ ├── p_rgh │ │ │ ├── tau │ │ │ └── theta │ │ └── sphere │ │ │ └── T │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── fluid.back │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── g │ │ │ └── thermoProperties │ │ ├── regionProperties │ │ └── sphere.back │ │ │ ├── fvOptions │ │ │ └── thermoProperties │ │ ├── solid.mesh │ │ ├── Allclean │ │ ├── Allrun │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── extrudeMeshDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── createPatchDict │ │ ├── decomposeParDict │ │ ├── extrudeMeshDict │ │ ├── fluid │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── petscDict │ │ └── sphere │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── writeData │ └── rheoTestFoam │ ├── FENE-CR │ ├── 0 │ │ ├── U │ │ ├── p │ │ └── tau │ ├── Allclean │ ├── Allrun │ ├── constant │ │ └── constitutiveProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── HerschelBulkley │ ├── 0 │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ └── constitutiveProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── multimode_XPomPom │ ├── 0 │ ├── U │ ├── p │ ├── tauM1 │ ├── tauM2 │ ├── tauM3 │ └── tauM4 │ ├── Allclean │ ├── Allrun │ ├── constant │ └── constitutiveProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution └── of90 ├── downloadEigen ├── installPetsc ├── src ├── Allwclean ├── Allwmake ├── libs │ ├── Allwclean │ ├── Allwmake │ ├── EDFModels │ │ ├── EDFModel │ │ │ ├── EDFModel.C │ │ │ └── EDFModel.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── models │ │ │ ├── DebyeHuckel │ │ │ ├── DebyeHuckel.C │ │ │ └── DebyeHuckel.H │ │ │ ├── EDFEquations │ │ │ ├── EDFEquation.C │ │ │ ├── EDFEquation.H │ │ │ └── newEDFEquation.C │ │ │ ├── NernstPlanck │ │ │ ├── NernstPlanck.C │ │ │ ├── NernstPlanck.H │ │ │ └── NernstPlanckCoupled │ │ │ │ ├── NernstPlanckCoupled.C │ │ │ │ ├── NernstPlanckCoupled.H │ │ │ │ ├── correctPsiCorr.H │ │ │ │ └── createPsiCorr.H │ │ │ ├── Ohmic │ │ │ ├── Ohmic.C │ │ │ └── Ohmic.H │ │ │ ├── PoissonBoltzmann │ │ │ ├── PoissonBoltzmann.C │ │ │ └── PoissonBoltzmann.H │ │ │ ├── noModel │ │ │ ├── noModel.C │ │ │ └── noModel.H │ │ │ └── slipSmoluchowski │ │ │ ├── slipSmoluchowski.C │ │ │ └── slipSmoluchowski.H │ ├── boundaryConditions │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── boltzmannEquilibrium │ │ │ ├── boltzmannEquilibriumFvPatchScalarField.C │ │ │ └── boltzmannEquilibriumFvPatchScalarField.H │ │ ├── heatFlux │ │ │ ├── heatFluxFvPatchScalarField.C │ │ │ └── heatFluxFvPatchScalarField.H │ │ ├── inducedPotential │ │ │ ├── inducedPotentialFvPatchScalarField.C │ │ │ └── inducedPotentialFvPatchScalarField.H │ │ ├── linearExtrapolation │ │ │ ├── linearExtrapolationFvPatchField.C │ │ │ ├── linearExtrapolationFvPatchField.H │ │ │ ├── linearExtrapolationFvPatchFields.C │ │ │ ├── linearExtrapolationFvPatchFields.H │ │ │ └── linearExtrapolationFvPatchFieldsFwd.H │ │ ├── navierSlip │ │ │ ├── navierSlipFvPatchVectorField.C │ │ │ └── navierSlipFvPatchVectorField.H │ │ ├── poiseuilleVelocity │ │ │ ├── poiseuilleVelocityFvPatchVectorField.C │ │ │ └── poiseuilleVelocityFvPatchVectorField.H │ │ ├── slipSigmaDependent │ │ │ ├── slipSigmaDependentFvPatchVectorField.C │ │ │ └── slipSigmaDependentFvPatchVectorField.H │ │ ├── slipSmoluchowski │ │ │ ├── slipSmoluchowskiFvPatchVectorField.C │ │ │ └── slipSmoluchowskiFvPatchVectorField.H │ │ └── zeroIonicFlux │ │ │ ├── zeroIonicFluxFvPatchScalarField.C │ │ │ └── zeroIonicFluxFvPatchScalarField.H │ ├── brownianDynamics │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── externalForcingInterp │ │ │ ├── Analytical │ │ │ │ ├── Analytical.C │ │ │ │ ├── Analytical.H │ │ │ │ └── AnalyticalI.H │ │ │ ├── BarycentricWeights │ │ │ │ ├── BarycentricWeights.C │ │ │ │ ├── BarycentricWeights.H │ │ │ │ ├── BarycentricWeightsI.H │ │ │ │ └── interpolationCellPointBary │ │ │ │ │ ├── interpolationCellPointBary.C │ │ │ │ │ ├── interpolationCellPointBary.H │ │ │ │ │ ├── interpolationCellPointBaryI.H │ │ │ │ │ └── makeInterpolationCellPointBary.C │ │ │ ├── Gradient │ │ │ │ ├── Gradient.C │ │ │ │ ├── Gradient.H │ │ │ │ └── GradientI.H │ │ │ ├── externalForcingInterp.C │ │ │ └── externalForcingInterp.H │ │ ├── sPCloudInterface.C │ │ ├── sPCloudInterface.H │ │ ├── sPCloudInterfaceIO.H │ │ ├── solidParticle.C │ │ ├── solidParticle.H │ │ ├── solidParticleCloud.C │ │ ├── solidParticleCloud.H │ │ ├── solidParticleCloudI.H │ │ ├── solidParticleI.H │ │ ├── solidParticleIO.C │ │ └── springModel │ │ │ ├── CohenPade │ │ │ ├── CohenPade.C │ │ │ └── CohenPade.H │ │ │ ├── FENE │ │ │ ├── FENE.C │ │ │ └── FENE.H │ │ │ ├── Hookean │ │ │ ├── Hookean.C │ │ │ └── Hookean.H │ │ │ ├── MarkoSiggia │ │ │ ├── MarkoSiggia.C │ │ │ └── MarkoSiggia.H │ │ │ ├── solveSystem.H │ │ │ ├── springModel.C │ │ │ └── springModel.H │ ├── constitutiveEquations │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── constitutiveEqs │ │ │ ├── FENE-CR │ │ │ │ ├── FENE-CRLog │ │ │ │ │ ├── FENE_CRLog.C │ │ │ │ │ └── FENE_CRLog.H │ │ │ │ ├── FENE_CR.C │ │ │ │ └── FENE_CR.H │ │ │ ├── FENE-P │ │ │ │ ├── FENE-PLog │ │ │ │ │ ├── FENE_PLog.C │ │ │ │ │ └── FENE_PLog.H │ │ │ │ ├── FENE_P.C │ │ │ │ └── FENE_P.H │ │ │ ├── GNF │ │ │ │ ├── CarreauYasuda │ │ │ │ │ ├── CarreauYasuda.C │ │ │ │ │ └── CarreauYasuda.H │ │ │ │ ├── Casson │ │ │ │ │ ├── Casson.C │ │ │ │ │ └── Casson.H │ │ │ │ ├── HerschelBulkley │ │ │ │ │ ├── HerschelBulkley.C │ │ │ │ │ └── HerschelBulkley.H │ │ │ │ ├── Newtonian │ │ │ │ │ ├── Newtonian.C │ │ │ │ │ └── Newtonian.H │ │ │ │ └── PowerLaw │ │ │ │ │ ├── PowerLaw.C │ │ │ │ │ └── PowerLaw.H │ │ │ ├── Giesekus │ │ │ │ ├── Giesekus.C │ │ │ │ ├── Giesekus.H │ │ │ │ └── GiesekusLog │ │ │ │ │ ├── GiesekusLog.C │ │ │ │ │ └── GiesekusLog.H │ │ │ ├── Oldroyd-B │ │ │ │ ├── Oldroyd-BLog │ │ │ │ │ ├── Oldroyd_BLog.C │ │ │ │ │ └── Oldroyd_BLog.H │ │ │ │ ├── Oldroyd-BRootk │ │ │ │ │ ├── Oldroyd_BRootk.C │ │ │ │ │ └── Oldroyd_BRootk.H │ │ │ │ ├── Oldroyd-BSqrt │ │ │ │ │ ├── Oldroyd_BSqrt.C │ │ │ │ │ └── Oldroyd_BSqrt.H │ │ │ │ ├── Oldroyd_B.C │ │ │ │ └── Oldroyd_B.H │ │ │ ├── PTT │ │ │ │ ├── PTT.C │ │ │ │ ├── PTT.H │ │ │ │ └── PTTLog │ │ │ │ │ ├── PTTLog.C │ │ │ │ │ └── PTTLog.H │ │ │ ├── Rolie-Poly │ │ │ │ ├── Rolie-PolyLog │ │ │ │ │ ├── RoliePolyLog.C │ │ │ │ │ └── RoliePolyLog.H │ │ │ │ ├── RoliePoly.C │ │ │ │ └── RoliePoly.H │ │ │ ├── WhiteMetznerCY │ │ │ │ ├── WhiteMetznerCY.C │ │ │ │ ├── WhiteMetznerCY.H │ │ │ │ └── WhiteMetznerCYLog │ │ │ │ │ ├── WhiteMetznerCYLog.C │ │ │ │ │ └── WhiteMetznerCYLog.H │ │ │ ├── XPomPom │ │ │ │ ├── XPomPom.C │ │ │ │ ├── XPomPom.H │ │ │ │ └── XPomPomLog │ │ │ │ │ ├── XPomPomLog.C │ │ │ │ │ └── XPomPomLog.H │ │ │ ├── constitutiveEq │ │ │ │ ├── constitutiveEq.C │ │ │ │ ├── constitutiveEq.H │ │ │ │ └── newConstitutiveEq.C │ │ │ ├── multiMode │ │ │ │ ├── multiMode.C │ │ │ │ └── multiMode.H │ │ │ ├── otherModels │ │ │ │ ├── BMP │ │ │ │ │ ├── BMP.C │ │ │ │ │ ├── BMP.H │ │ │ │ │ └── BMPLog │ │ │ │ │ │ ├── BMPLog.C │ │ │ │ │ │ └── BMPLog.H │ │ │ │ ├── ML-IKH │ │ │ │ │ ├── ML_IKH.C │ │ │ │ │ └── ML_IKH.H │ │ │ │ ├── RRM │ │ │ │ │ ├── RRM.C │ │ │ │ │ └── RRM.H │ │ │ │ ├── Saramito │ │ │ │ │ ├── Saramito.C │ │ │ │ │ ├── Saramito.H │ │ │ │ │ └── SaramitoLog │ │ │ │ │ │ ├── SaramitoLog.C │ │ │ │ │ │ └── SaramitoLog.H │ │ │ │ ├── VCM │ │ │ │ │ ├── VCM.C │ │ │ │ │ └── VCM.H │ │ │ │ └── sPTT-IKH │ │ │ │ │ ├── sPTT_IKH.C │ │ │ │ │ └── sPTT_IKH.H │ │ │ └── utils │ │ │ │ ├── boilerLog.H │ │ │ │ └── jacobi.H │ │ ├── constitutiveModel │ │ │ ├── constitutiveModel.C │ │ │ └── constitutiveModel.H │ │ ├── constitutiveTwoPhaseMixture │ │ │ ├── constitutiveTwoPhaseMixture.C │ │ │ └── constitutiveTwoPhaseMixture.H │ │ └── immiscibleConstitutiveTwoPhaseMixture │ │ │ ├── immiscibleConstitutiveTwoPhaseMixture.C │ │ │ └── immiscibleConstitutiveTwoPhaseMixture.H │ ├── filmCasting │ │ ├── BC │ │ │ ├── freeSurfaceDisplacementPointPatchVectorField.C │ │ │ ├── freeSurfaceDisplacementPointPatchVectorField.H │ │ │ ├── rollVelocityFvPatchVectorField.C │ │ │ └── rollVelocityFvPatchVectorField.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── filmModel.C │ │ ├── filmModel.H │ │ └── motionSolver │ │ │ ├── spinesFvMotionSolver.C │ │ │ └── spinesFvMotionSolver.H │ ├── fvmb │ │ ├── LMatrix.C │ │ ├── LMatrix.H │ │ ├── LMatrixs.C │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── operators │ │ │ ├── blockOperators.C │ │ │ ├── blockOperators.H │ │ │ ├── div.C │ │ │ ├── div.H │ │ │ ├── grad.C │ │ │ ├── grad.H │ │ │ ├── twoSymmGrad.C │ │ │ └── twoSymmGrad.H │ ├── gaussDefCmpwConvectionScheme │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── gaussDefCmpwConvectionScheme.C │ │ ├── gaussDefCmpwConvectionScheme.H │ │ ├── gaussDefCmpwConvectionSchemes.C │ │ └── limiters.H │ ├── postProcessing │ │ ├── averageMolcN │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── averageMolcN.C │ │ ├── averageMolcX │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── averageMolcX.C │ │ ├── postProcUtils │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── postProcUtils │ │ │ │ ├── calcBalance │ │ │ │ │ ├── calcBalance.C │ │ │ │ │ └── calcBalance.H │ │ │ │ ├── calcJpatch │ │ │ │ │ ├── calcJpatch.C │ │ │ │ │ └── calcJpatch.H │ │ │ │ ├── calcWSS │ │ │ │ │ ├── calcWSS.C │ │ │ │ │ └── calcWSS.H │ │ │ │ ├── none │ │ │ │ │ ├── none.C │ │ │ │ │ └── none.H │ │ │ │ ├── ppUtil.C │ │ │ │ └── ppUtil.H │ │ │ └── postProcUtilsInterface │ │ │ │ ├── ppUtilInterface.C │ │ │ │ └── ppUtilInterface.H │ │ └── writeEfield │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── writeEfield.C │ ├── preProcessing │ │ ├── initMolecules │ │ │ ├── IOPositionMolec.C │ │ │ ├── IOPositionMolec.H │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── initMolecules.C │ │ └── rndPerturbation │ │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ │ ├── createFields.H │ │ │ └── rndPerturbation.C │ ├── sparseMatrixSolvers │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── coupled │ │ │ ├── BCs │ │ │ │ ├── coupledT │ │ │ │ │ ├── coupledTFvPatchScalarField.C │ │ │ │ │ └── coupledTFvPatchScalarField.H │ │ │ │ ├── regionCoupledAMIFvPatch.C │ │ │ │ ├── regionCoupledAMIFvPatch.H │ │ │ │ ├── regionCoupledAMIPointPatch.C │ │ │ │ ├── regionCoupledAMIPointPatch.H │ │ │ │ ├── regionCoupledAMIPolyPatch.C │ │ │ │ └── regionCoupledAMIPolyPatch.H │ │ │ ├── coupledSolver.C │ │ │ ├── coupledSolver.H │ │ │ ├── coupledSolverTemplates.C │ │ │ ├── specialBoundariesA.H │ │ │ ├── specialBoundariesAlloc.H │ │ │ └── specialBoundariesB.H │ │ ├── segregated │ │ │ ├── eigenSolver │ │ │ │ ├── eigenSolver.C │ │ │ │ ├── eigenSolver.H │ │ │ │ ├── eigenSolvers.C │ │ │ │ └── solvers │ │ │ │ │ ├── BiCGSTAB │ │ │ │ │ ├── eBiCGSTAB.C │ │ │ │ │ └── eBiCGSTAB.H │ │ │ │ │ ├── EigenIterDirSolver.C │ │ │ │ │ ├── EigenIterDirSolver.H │ │ │ │ │ ├── GMRES │ │ │ │ │ ├── eGMRES.C │ │ │ │ │ └── eGMRES.H │ │ │ │ │ ├── PCG │ │ │ │ │ ├── ePCG.C │ │ │ │ │ └── ePCG.H │ │ │ │ │ ├── SparseLU │ │ │ │ │ ├── eSparseLU.C │ │ │ │ │ └── eSparseLU.H │ │ │ │ │ └── newEigenIterDirSolver.C │ │ │ ├── hypreSolver │ │ │ │ ├── hypreSolver.C │ │ │ │ ├── hypreSolver.H │ │ │ │ ├── hypreSolvers.C │ │ │ │ ├── preconditioners │ │ │ │ │ ├── BoomerAMG │ │ │ │ │ │ ├── hpBoomerAMG.C │ │ │ │ │ │ └── hpBoomerAMG.H │ │ │ │ │ ├── Euclid │ │ │ │ │ │ ├── Euclid.C │ │ │ │ │ │ └── Euclid.H │ │ │ │ │ ├── HypreIJPreconditioner.C │ │ │ │ │ ├── HypreIJPreconditioner.H │ │ │ │ │ ├── ParaSails │ │ │ │ │ │ ├── ParaSails.C │ │ │ │ │ │ └── ParaSails.H │ │ │ │ │ ├── newHypreIJPreconditioner.C │ │ │ │ │ └── none │ │ │ │ │ │ ├── none.C │ │ │ │ │ │ └── none.H │ │ │ │ └── solvers │ │ │ │ │ ├── BiCGSTAB │ │ │ │ │ ├── hsBiCGSTAB.C │ │ │ │ │ └── hsBiCGSTAB.H │ │ │ │ │ ├── BoomerAMG │ │ │ │ │ ├── hsBoomerAMG.C │ │ │ │ │ └── hsBoomerAMG.H │ │ │ │ │ ├── GMRES │ │ │ │ │ ├── hsGMRES.C │ │ │ │ │ └── hsGMRES.H │ │ │ │ │ ├── HypreIJSolver.C │ │ │ │ │ ├── HypreIJSolver.H │ │ │ │ │ ├── PCG │ │ │ │ │ ├── hsPCG.C │ │ │ │ │ └── hsPCG.H │ │ │ │ │ └── newHypreIJSolver.C │ │ │ ├── openFoamSolver │ │ │ │ ├── openFoamSolver.C │ │ │ │ ├── openFoamSolver.H │ │ │ │ └── openFoamSolvers.C │ │ │ ├── petscSolver │ │ │ │ ├── petscSolver.C │ │ │ │ ├── petscSolver.H │ │ │ │ └── petscSolvers.C │ │ │ ├── sparseSolver.C │ │ │ ├── sparseSolver.H │ │ │ └── sparseSolvers.C │ │ ├── sparseMatrixSolvers.C │ │ ├── sparseMatrixSolvers.H │ │ ├── sparseSolverBase.C │ │ └── sparseSolverBase.H │ └── thermo │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── thermoFunctions │ │ ├── Arrhenius │ │ │ ├── Arrhenius.C │ │ │ └── Arrhenius.H │ │ ├── ArrheniusModified │ │ │ ├── ArrheniusModified.C │ │ │ └── ArrheniusModified.H │ │ ├── Constant │ │ │ ├── Constant.C │ │ │ └── Constant.H │ │ ├── VFT │ │ │ ├── VFT.C │ │ │ └── VFT.H │ │ ├── WLF │ │ │ ├── WLF.C │ │ │ └── WLF.H │ │ └── thermoFunctions │ │ │ ├── newThermoFunction.C │ │ │ ├── thermoFunction.C │ │ │ └── thermoFunction.H │ │ └── thermoModels │ │ ├── fluidThermo │ │ ├── boussinesq │ │ │ ├── boussinesq.C │ │ │ └── boussinesq.H │ │ ├── fluidThermoModel.C │ │ ├── fluidThermoModel.H │ │ ├── frozenTemperature │ │ │ ├── frozenTemperature.C │ │ │ └── frozenTemperature.H │ │ └── newFluidThermoModel.C │ │ ├── fluidThermoMixture │ │ ├── fluidThermoMixtureModel.C │ │ ├── fluidThermoMixtureModel.H │ │ ├── frozenTemperatureMixture │ │ │ ├── frozenTemperatureMixture.C │ │ │ └── frozenTemperatureMixture.H │ │ ├── isotropicMixture │ │ │ ├── isotropicMixture.C │ │ │ └── isotropicMixture.H │ │ └── newFluidThermoMixtureModel.C │ │ └── solidThermo │ │ ├── isotropic │ │ ├── isotropic.C │ │ └── isotropic.H │ │ ├── newSolidThermoModel.C │ │ ├── solidThermoModel.C │ │ └── solidThermoModel.H └── solvers │ ├── Allwclean │ ├── Allwmake │ ├── rheoBDFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── createControls.H │ ├── createFields.H │ ├── createLagrangianFields.H │ ├── createSolver.H │ ├── moleculesEqns.H │ ├── pEqn.H │ ├── pUEqn.H │ └── rheoBDFoam.C │ ├── rheoEFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── createControls.H │ ├── createFields.H │ ├── createSolver.H │ ├── pEqn.H │ ├── pUEqn.H │ └── rheoEFoam.C │ ├── rheoFilmFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── createControls.H │ ├── createFields.H │ ├── createSolver.H │ └── rheoFilmFoam.C │ ├── rheoFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── createControls.H │ ├── createFields.H │ ├── createSolver.H │ ├── pEqn.H │ ├── pUEqn.H │ └── rheoFoam.C │ ├── rheoHeatFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── createControls.H │ ├── createFields.H │ ├── createSolver.H │ ├── pEqn.H │ ├── pUEqn.H │ └── rheoHeatFoam.C │ ├── rheoInterFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── VoF │ │ ├── alphaControls.H │ │ ├── alphaCourantNo.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── alphaScheme.H │ │ ├── createAlphaFluxes.H │ │ ├── setDeltaT.H │ │ └── setRDeltaT.H │ ├── adjustCorrPhi.H │ ├── alphaSuSp.H │ ├── correctPhi.H │ ├── createFieldRefs.H │ ├── createFields.H │ ├── createPPutil.H │ ├── createSolver.H │ ├── initCorrectPhi.H │ ├── pEqn.H │ ├── rheoInterFoam.C │ ├── rhofs.H │ └── twoPhaseChange │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── cavitation │ │ ├── Kunz │ │ │ ├── Kunz.C │ │ │ └── Kunz.H │ │ ├── Merkle │ │ │ ├── Merkle.C │ │ │ └── Merkle.H │ │ ├── SchnerrSauer │ │ │ ├── SchnerrSauer.C │ │ │ └── SchnerrSauer.H │ │ └── cavitationModel │ │ │ ├── cavitationModel.C │ │ │ └── cavitationModel.H │ │ ├── noPhaseChange │ │ ├── noPhaseChange.C │ │ └── noPhaseChange.H │ │ └── twoPhaseChangeModel │ │ ├── twoPhaseChangeModel.C │ │ ├── twoPhaseChangeModel.H │ │ └── twoPhaseChangeModelNew.C │ ├── rheoMultiRegionFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── coupledTEqn.H │ ├── createFields.H │ ├── createMeshes.H │ ├── createMeshesPostProcess.H │ ├── fluid │ │ ├── CEqn.H │ │ ├── UEqn.H │ │ ├── adjustCorrPhi.H │ │ ├── createFluidFields.H │ │ ├── createFluidMeshes.H │ │ ├── createSolver.H │ │ ├── iCourantNo.C │ │ ├── iCourantNo.H │ │ ├── initContinuityErrs.H │ │ ├── multiRegionCourantNo.H │ │ ├── pEqn.H │ │ ├── pUEqn.H │ │ ├── setRegionFluidFields.H │ │ └── solveFluid.H │ ├── include │ │ ├── setInitialMultiRegionDeltaT.H │ │ └── setMultiRegionDeltaT.H │ ├── rheoMultiRegionFoam.C │ └── solid │ │ ├── createSolidFields.H │ │ ├── createSolidMeshes.H │ │ ├── readSolidTimeControls.H │ │ ├── setRegionSolidFields.H │ │ ├── solidRegionDiffusionNo.H │ │ └── solveSolid.H │ ├── rheoTestFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── createFields.H │ ├── reStartOrEnd.H │ ├── rheoTestFoam.C │ └── timeWrite.H │ └── shared │ └── singlePhase │ ├── CEqn.H │ ├── adjustCorrPhi.H │ ├── correctPhi.H │ ├── createPPutil.H │ ├── readDyMControls.H │ └── setRDeltaT.H └── tutorials ├── rheoBDFoam ├── LAOE │ ├── 0 │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── initMoleculesDict │ │ └── moleculesControls │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── OtherTests │ └── tetheredCircular │ │ ├── 0 │ │ ├── U │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── initMoleculesDict │ │ └── moleculesControls │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── flowFocusing │ ├── electrophoresis │ │ ├── Allclean │ │ ├── Allrun │ │ ├── BDS │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── constitutiveProperties │ │ │ │ ├── electricProperties │ │ │ │ ├── initMoleculesDict │ │ │ │ └── moleculesControls │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── electricFieldSimulation │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── phiE │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── pressureDrivenFlow │ │ ├── Allclean │ │ ├── Allrun │ │ ├── BDS │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── initMoleculesDict │ │ │ └── moleculesControls │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── flowSimulation │ │ ├── 0 │ │ ├── U │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── constitutiveProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution └── planarExtensionalFlow │ ├── 0 │ ├── U │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── constitutiveProperties │ ├── electricProperties │ └── moleculesControls │ ├── relaxation │ ├── 0 │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── initMoleculesDict │ │ └── moleculesControls │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── rheoEFoam ├── EEI │ └── PoissonBoltzmann │ │ ├── CrossSlot │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiE │ │ │ ├── psi │ │ │ ├── tau │ │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mirrorMeshDict0 │ │ │ ├── mirrorMeshDict1 │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ │ └── FlowFocusing │ │ ├── 0 │ │ ├── C.org │ │ ├── U │ │ ├── p │ │ ├── phiE │ │ ├── psi │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── electricProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── createPatchDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── mirrorMeshDict0 │ │ ├── mirrorMeshDict1 │ │ ├── setFieldsDict │ │ └── topoSetDict ├── EKI │ └── Ohmic │ │ ├── 0 │ │ ├── C.org │ │ ├── U │ │ ├── p │ │ ├── phiE │ │ └── sigma.org │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── electricProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── EKmixer │ └── slipSmoluchowski │ │ ├── 0 │ │ ├── C.org │ │ ├── U │ │ ├── p │ │ └── phiE │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── electricProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── refineMeshDict │ │ ├── setFieldsDict │ │ └── topoSetDict ├── ICEO │ ├── DebyeHuckel │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiE │ │ │ └── psi │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── NernstPlanckCoupled │ │ ├── 0 │ │ │ ├── U │ │ │ ├── cAnion │ │ │ ├── cCation │ │ │ ├── p │ │ │ └── psi │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── petscDict │ │ │ └── sampleDict │ └── PoissonBoltzmann │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ ├── phiE │ │ └── psi │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── electricProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict ├── channelEDF │ ├── PTT │ │ └── DebyeHuckel │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── psi │ │ │ ├── tau │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ └── PowerLaw │ │ ├── DebyeHuckel │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── psi │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ ├── NernstPlanck │ │ ├── 0 │ │ │ ├── U │ │ │ ├── ciAnion │ │ │ ├── ciCation │ │ │ ├── p │ │ │ └── psi │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── electricProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ └── PoissonBoltzmann │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ └── psi │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── electricProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict └── selecMembrane │ └── NernstPlanck │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── constitutiveProperties │ └── electricProperties │ ├── solution1D │ ├── 0 │ │ ├── U │ │ ├── cAnion │ │ ├── cCation │ │ ├── p │ │ └── psi │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── constitutiveProperties │ │ └── electricProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── petscDict │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── rheoFilmFoam ├── Newtonian │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── h │ │ └── pointDisplacement │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── constitutiveProperties │ │ └── dynamicMeshDict │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── UCM │ ├── 0 │ │ ├── U │ │ ├── h │ │ ├── pointDisplacement │ │ ├── tau │ │ └── theta │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── constitutiveProperties │ │ └── dynamicMeshDict │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution └── otherCases │ ├── PTTMultimode │ ├── 0 │ │ ├── U │ │ ├── h │ │ ├── pointDisplacement │ │ ├── tauM1 │ │ └── tauM2 │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── constitutiveProperties │ │ └── dynamicMeshDict │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── UCM.fulldomain │ ├── 0 │ ├── U │ ├── h │ ├── pointDisplacement │ ├── tau │ └── theta │ ├── Allclean │ ├── Allrun │ ├── README │ ├── constant │ ├── constitutiveProperties │ └── dynamicMeshDict │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── rheoFoam ├── Aneurysm │ └── HerschelBulkley │ │ ├── 0 │ │ ├── U │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── polyMesh.org │ │ │ ├── boundary │ │ │ ├── faces.gz │ │ │ ├── neighbour.gz │ │ │ ├── owner.gz │ │ │ └── points.gz │ │ └── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── Cavity │ └── Oldroyd-BLog │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── constitutiveProperties │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict │ │ └── writeData ├── Channel │ └── Oldroyd-BLog │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── constitutiveProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict ├── Contraction41 │ └── Oldroyd-BLog │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── constitutiveProperties │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict │ │ └── writeData ├── CrossSlot │ ├── Oldroyd-BLog │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── constitutiveProperties │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ └── writeData │ ├── Oldroyd-BRootk │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── p │ │ │ ├── tau │ │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── constitutiveProperties │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ └── writeData │ ├── Oldroyd-BSqrt │ │ ├── 0 │ │ │ ├── C.org │ │ │ ├── U │ │ │ ├── b │ │ │ ├── p │ │ │ └── tau │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── constitutiveProperties │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ └── writeData │ └── PTTLog │ │ ├── 0 │ │ ├── C.org │ │ ├── U │ │ ├── p │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── constitutiveProperties │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ │ └── writeData ├── Cylinder │ └── Oldroyd-BLog │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── constitutiveProperties │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── mirrorMeshDict │ │ ├── petscDict │ │ └── sampleDict │ │ └── writeData ├── OtherTests │ ├── Channel2D_VE │ │ ├── FENE-CR │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── FENE-CRLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── FENE-P │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── FENE-PLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── GiesekusLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── Oldroyd-BRootk │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── Oldroyd-BSqrt │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── b │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── PTTLog │ │ │ ├── exponential │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ ├── generalized │ │ │ │ ├── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ ├── tau │ │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ └── sampleDict │ │ │ └── linear │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── README │ │ ├── Rolie-Poly │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── Rolie-PolyLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── WhiteMetznerCYLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ ├── XPomPomLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── multiMode │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tauM1 │ │ │ │ ├── tauM2 │ │ │ │ ├── thetaM1 │ │ │ │ └── thetaM2 │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ └── otherModels │ │ │ ├── BMP │ │ │ ├── 0 │ │ │ │ ├── Phi │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── .~lock.bn.csv# │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── ML-IKH │ │ │ ├── 0 │ │ │ │ ├── A │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── RRM │ │ │ ├── 0 │ │ │ │ ├── Lstar │ │ │ │ ├── S │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── SaramitoLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ ├── VCM │ │ │ ├── 0 │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── U │ │ │ │ ├── nA │ │ │ │ ├── nB │ │ │ │ ├── p │ │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ │ └── sPTT-IKH │ │ │ ├── 0 │ │ │ ├── A │ │ │ ├── U │ │ │ ├── lambda │ │ │ ├── p │ │ │ └── tau │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ ├── Channel3D_VE │ │ ├── Oldroyd-BLog │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── tau │ │ │ │ └── theta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ └── constitutiveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── sampleDict │ │ └── README │ ├── README │ └── tube_GNF │ │ ├── CarreauYasuda │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── constitutiveProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ ├── Casson │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── constitutiveProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ ├── HerschelBulkley │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── constitutiveProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ ├── Newtonian │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── constitutiveProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ ├── PowerLaw │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── constitutiveProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sampleDict │ │ └── README └── fluidDamper │ └── CarreauYasuda │ ├── 0 │ ├── U │ ├── p │ └── pointMotionUx │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── constitutiveProperties │ └── dynamicMeshDict │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution │ └── writeData ├── rheoHeatFoam ├── BernardCells │ └── Newtonian │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── g │ │ ├── radiationProperties │ │ └── thermoProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── OtherTests │ ├── cavity │ │ └── Newtonian │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ └── thermoProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── channelEDF │ │ └── PTT │ │ └── DebyeHuckel │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── p_rgh │ │ ├── psi │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── g │ │ ├── radiationProperties │ │ └── thermoProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict ├── buoyantCavity │ └── Newtonian │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── g │ │ ├── radiationProperties │ │ └── thermoProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict ├── channel │ └── PTTLog │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── p_rgh │ │ ├── tau │ │ └── theta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── g │ │ ├── radiationProperties │ │ └── thermoProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict └── cylinder │ └── PowerLaw │ ├── 0 │ ├── T │ ├── U │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── constitutiveProperties │ ├── electricProperties │ ├── g │ ├── radiationProperties │ └── thermoProperties │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── extrudeMeshDict │ ├── fvSchemes │ └── fvSolution │ └── writeData ├── rheoInterFoam ├── DieSwell │ ├── CarreauYasuda │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.org │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── g │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── GiesekusLog │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.org │ │ │ ├── p_rgh │ │ │ ├── tau.water │ │ │ └── theta.water │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── constitutiveProperties │ │ │ └── g │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── Oldroyd-BLog │ │ ├── 0 │ │ ├── U │ │ ├── alpha.water.org │ │ ├── p_rgh │ │ ├── tau.water │ │ └── theta.water │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── g │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── ImpactingDrop │ └── Oldroyd-BLog │ │ ├── 0 │ │ ├── U.org │ │ ├── alpha.water.org │ │ ├── p_rgh │ │ ├── tau.water │ │ └── theta.water │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── constitutiveProperties │ │ └── g │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── sampleDict │ │ └── setFieldsDict │ │ └── writeData └── damBreak │ └── Newtonian │ ├── 0 │ ├── U │ ├── alpha.water.org │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── constitutiveProperties │ └── g │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict ├── rheoMultiRegionFoam ├── calibrator │ ├── 0 │ │ ├── calibrator │ │ │ └── T │ │ └── polymer │ │ │ ├── T │ │ │ ├── U │ │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── calibrator │ │ ├── Allclean │ │ ├── Allrun │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ └── snappyHexMeshDict │ ├── constant │ │ ├── calibrator.back │ │ │ ├── radiationProperties │ │ │ └── thermoProperties │ │ ├── polymer.back │ │ │ ├── constitutiveProperties │ │ │ ├── electricProperties │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ └── thermoProperties │ │ └── regionProperties │ └── system │ │ ├── blockMeshDict │ │ ├── calibrator │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict │ │ ├── controlDict │ │ ├── createPatchDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── petscDict │ │ └── polymer │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict ├── slabs │ ├── 0 │ │ ├── solid0 │ │ │ └── T │ │ └── solid1 │ │ │ └── T │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── regionProperties │ │ ├── solid0.back │ │ │ ├── radiationProperties │ │ │ └── thermoProperties │ │ └── solid1.back │ │ │ ├── radiationProperties │ │ │ └── thermoProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── petscDict │ │ ├── solid0 │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict │ │ └── solid1 │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sampleDict └── sphere │ └── PTTLog │ ├── 0 │ ├── fluid │ │ ├── T │ │ ├── U │ │ ├── p_rgh │ │ ├── tau │ │ └── theta │ └── sphere │ │ └── T │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── fluid.back │ │ ├── constitutiveProperties │ │ ├── electricProperties │ │ ├── g │ │ ├── radiationProperties │ │ └── thermoProperties │ ├── regionProperties │ └── sphere.back │ │ ├── fvModels │ │ ├── radiationProperties │ │ └── thermoProperties │ ├── solid.mesh │ ├── Allclean │ ├── Allrun │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── extrudeMeshDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── createPatchDict │ ├── decomposeParDict │ ├── extrudeMeshDict │ ├── fluid │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── fvSchemes │ ├── fvSolution │ ├── petscDict │ └── sphere │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── writeData └── rheoTestFoam ├── FENE-CR ├── 0 │ ├── U │ ├── p │ └── tau ├── Allclean ├── Allrun ├── constant │ └── constitutiveProperties └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── HerschelBulkley ├── 0 │ ├── U │ └── p ├── Allclean ├── Allrun ├── constant │ └── constitutiveProperties └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution └── multimode_XPomPom ├── 0 ├── U ├── p ├── tauM1 ├── tauM2 ├── tauM3 └── tauM4 ├── Allclean ├── Allrun ├── constant └── constitutiveProperties └── system ├── blockMeshDict ├── controlDict ├── fvSchemes └── fvSolution /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/README.md -------------------------------------------------------------------------------- /doc/user_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/doc/user_guide.pdf -------------------------------------------------------------------------------- /fe40/downloadEigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/downloadEigen -------------------------------------------------------------------------------- /fe40/src/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/Allwclean -------------------------------------------------------------------------------- /fe40/src/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/Allwmake -------------------------------------------------------------------------------- /fe40/src/libs/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/Allwclean -------------------------------------------------------------------------------- /fe40/src/libs/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/Allwmake -------------------------------------------------------------------------------- /fe40/src/libs/EDFModels/EDFModel/EDFModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/EDFModels/EDFModel/EDFModel.C -------------------------------------------------------------------------------- /fe40/src/libs/EDFModels/EDFModel/EDFModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/EDFModels/EDFModel/EDFModel.H -------------------------------------------------------------------------------- /fe40/src/libs/EDFModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/EDFModels/Make/files -------------------------------------------------------------------------------- /fe40/src/libs/EDFModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/EDFModels/Make/options -------------------------------------------------------------------------------- /fe40/src/libs/EDFModels/models/Ohmic/Ohmic.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/EDFModels/models/Ohmic/Ohmic.C -------------------------------------------------------------------------------- /fe40/src/libs/EDFModels/models/Ohmic/Ohmic.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/EDFModels/models/Ohmic/Ohmic.H -------------------------------------------------------------------------------- /fe40/src/libs/EDFModels/models/noModel/noModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/EDFModels/models/noModel/noModel.C -------------------------------------------------------------------------------- /fe40/src/libs/EDFModels/models/noModel/noModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/EDFModels/models/noModel/noModel.H -------------------------------------------------------------------------------- /fe40/src/libs/boundaryConditions/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/boundaryConditions/Make/files -------------------------------------------------------------------------------- /fe40/src/libs/boundaryConditions/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/boundaryConditions/Make/options -------------------------------------------------------------------------------- /fe40/src/libs/constitutiveEquations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/constitutiveEquations/Make/files -------------------------------------------------------------------------------- /fe40/src/libs/constitutiveEquations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/constitutiveEquations/Make/options -------------------------------------------------------------------------------- /fe40/src/libs/gaussDefCmpwConvectionScheme/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/gaussDefCmpwConvectionScheme/Make/files -------------------------------------------------------------------------------- /fe40/src/libs/gaussDefCmpwConvectionScheme/limiters.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/gaussDefCmpwConvectionScheme/limiters.H -------------------------------------------------------------------------------- /fe40/src/libs/postProcessing/postProcUtils/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/postProcessing/postProcUtils/Make/files -------------------------------------------------------------------------------- /fe40/src/libs/postProcessing/writeEfield/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/postProcessing/writeEfield/Make/files -------------------------------------------------------------------------------- /fe40/src/libs/postProcessing/writeEfield/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/postProcessing/writeEfield/Make/options -------------------------------------------------------------------------------- /fe40/src/libs/postProcessing/writeEfield/writeEfield.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/postProcessing/writeEfield/writeEfield.C -------------------------------------------------------------------------------- /fe40/src/libs/preProcessing/rndPerturbation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/libs/preProcessing/rndPerturbation/Make/files -------------------------------------------------------------------------------- /fe40/src/solvers/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/Allwclean -------------------------------------------------------------------------------- /fe40/src/solvers/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/Allwmake -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/CEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/CEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/Make/files -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/Make/options -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/UEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/correctPhi.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/createControls.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/createDynamicFvMeshDict.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/createDynamicFvMeshDict.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/createFields.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/createPPutil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/createPPutil.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/pEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/readControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/readControls.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoEFoam/rheoEFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoEFoam/rheoEFoam.C -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/CEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/CEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/Make/files -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/Make/options -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/UEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/correctPhi.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/createControls.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/createDynamicFvMeshDict.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/createDynamicFvMeshDict.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/createFields.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/createPPutil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/createPPutil.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/pEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/readControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/readControls.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoFoam/rheoFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoFoam/rheoFoam.C -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/CEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/CEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/Make/files -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/Make/options -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/UEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/alphaEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/correctPhi.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/createControls.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/createFields.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/createPPutil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/createPPutil.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/pEqn.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/readControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/readControls.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoInterFoam/rheoInterFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoInterFoam/rheoInterFoam.C -------------------------------------------------------------------------------- /fe40/src/solvers/rheoTestFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoTestFoam/Make/files -------------------------------------------------------------------------------- /fe40/src/solvers/rheoTestFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoTestFoam/Make/options -------------------------------------------------------------------------------- /fe40/src/solvers/rheoTestFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoTestFoam/createFields.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoTestFoam/reStartOrEnd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoTestFoam/reStartOrEnd.H -------------------------------------------------------------------------------- /fe40/src/solvers/rheoTestFoam/rheoTestFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoTestFoam/rheoTestFoam.C -------------------------------------------------------------------------------- /fe40/src/solvers/rheoTestFoam/timeWrite.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/src/solvers/rheoTestFoam/timeWrite.H -------------------------------------------------------------------------------- /fe40/tutorials/foamUpdateCaseFileHeaderExt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/foamUpdateCaseFileHeaderExt -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/0/C.org -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/0/phiE -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/0/sigma.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/0/sigma.org -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/system/controlDict -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/system/fvSchemes -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKI/Ohmic/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKI/Ohmic/system/fvSolution -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/phiE -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/psi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/psi -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/cAnion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/cAnion -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/cCation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/cCation -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/psi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/0/psi -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/NernstPlanck/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/phiE -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/psi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/psi -------------------------------------------------------------------------------- /fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/C.org -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/tau -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/b -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/tau -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/C.org -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/tau -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/PTTLog/0/theta -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/PTTLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/PTTLog/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/CrossSlot/PTTLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/CrossSlot/PTTLog/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/OtherTests/Channel2D_VE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/OtherTests/Channel2D_VE/README -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/OtherTests/Channel3D_VE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/OtherTests/Channel3D_VE/README -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/OtherTests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/OtherTests/README -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/OtherTests/tube_GNF/Casson/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/OtherTests/tube_GNF/Casson/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/OtherTests/tube_GNF/Casson/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/OtherTests/tube_GNF/Casson/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/OtherTests/tube_GNF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/OtherTests/tube_GNF/README -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/fluidDamper/CarreauYasuda/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/fluidDamper/CarreauYasuda/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoFoam/fluidDamper/CarreauYasuda/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoFoam/fluidDamper/CarreauYasuda/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoInterFoam/DieSwell/GiesekusLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoInterFoam/DieSwell/GiesekusLog/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoInterFoam/DieSwell/GiesekusLog/0/pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoInterFoam/DieSwell/GiesekusLog/0/pd -------------------------------------------------------------------------------- /fe40/tutorials/rheoInterFoam/DieSwell/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoInterFoam/DieSwell/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoInterFoam/damBreak/Newtonian/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoInterFoam/damBreak/Newtonian/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoInterFoam/damBreak/Newtonian/0/pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoInterFoam/damBreak/Newtonian/0/pd -------------------------------------------------------------------------------- /fe40/tutorials/rheoInterFoam/damBreak/Newtonian/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoInterFoam/damBreak/Newtonian/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/FENE-CR/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/FENE-CR/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/FENE-CR/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/FENE-CR/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/FENE-CR/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/FENE-CR/0/tau -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/FENE-CR/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/FENE-CR/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/FENE-CR/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/FENE-CR/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/FENE-CR/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/FENE-CR/system/controlDict -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/FENE-CR/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/FENE-CR/system/fvSchemes -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/FENE-CR/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/FENE-CR/system/fvSolution -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/HerschelBulkley/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/HerschelBulkley/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/HerschelBulkley/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/HerschelBulkley/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/HerschelBulkley/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/HerschelBulkley/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/HerschelBulkley/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/HerschelBulkley/Allrun -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/U -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/p -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM1 -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM2 -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM3 -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM4 -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/multimode_XPomPom/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/multimode_XPomPom/Allclean -------------------------------------------------------------------------------- /fe40/tutorials/rheoTestFoam/multimode_XPomPom/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/fe40/tutorials/rheoTestFoam/multimode_XPomPom/Allrun -------------------------------------------------------------------------------- /of70/downloadEigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/downloadEigen -------------------------------------------------------------------------------- /of70/installPetsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/installPetsc -------------------------------------------------------------------------------- /of70/src/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/Allwclean -------------------------------------------------------------------------------- /of70/src/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/Allwmake -------------------------------------------------------------------------------- /of70/src/libs/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/Allwclean -------------------------------------------------------------------------------- /of70/src/libs/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/Allwmake -------------------------------------------------------------------------------- /of70/src/libs/EDFModels/EDFModel/EDFModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/EDFModels/EDFModel/EDFModel.C -------------------------------------------------------------------------------- /of70/src/libs/EDFModels/EDFModel/EDFModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/EDFModels/EDFModel/EDFModel.H -------------------------------------------------------------------------------- /of70/src/libs/EDFModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/EDFModels/Make/files -------------------------------------------------------------------------------- /of70/src/libs/EDFModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/EDFModels/Make/options -------------------------------------------------------------------------------- /of70/src/libs/EDFModels/models/Ohmic/Ohmic.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/EDFModels/models/Ohmic/Ohmic.C -------------------------------------------------------------------------------- /of70/src/libs/EDFModels/models/Ohmic/Ohmic.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/EDFModels/models/Ohmic/Ohmic.H -------------------------------------------------------------------------------- /of70/src/libs/EDFModels/models/noModel/noModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/EDFModels/models/noModel/noModel.C -------------------------------------------------------------------------------- /of70/src/libs/EDFModels/models/noModel/noModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/EDFModels/models/noModel/noModel.H -------------------------------------------------------------------------------- /of70/src/libs/boundaryConditions/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/boundaryConditions/Make/files -------------------------------------------------------------------------------- /of70/src/libs/boundaryConditions/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/boundaryConditions/Make/options -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/Make/files -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/Make/options -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/sPCloudInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/sPCloudInterface.C -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/sPCloudInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/sPCloudInterface.H -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/sPCloudInterfaceIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/sPCloudInterfaceIO.H -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/solidParticle.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/solidParticle.C -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/solidParticle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/solidParticle.H -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/solidParticleCloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/solidParticleCloud.C -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/solidParticleCloud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/solidParticleCloud.H -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/solidParticleCloudI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/solidParticleCloudI.H -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/solidParticleI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/solidParticleI.H -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/solidParticleIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/solidParticleIO.C -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/springModel/FENE/FENE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/springModel/FENE/FENE.C -------------------------------------------------------------------------------- /of70/src/libs/brownianDynamics/springModel/FENE/FENE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/brownianDynamics/springModel/FENE/FENE.H -------------------------------------------------------------------------------- /of70/src/libs/constitutiveEquations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/constitutiveEquations/Make/files -------------------------------------------------------------------------------- /of70/src/libs/constitutiveEquations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/constitutiveEquations/Make/options -------------------------------------------------------------------------------- /of70/src/libs/filmCasting/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/filmCasting/Make/files -------------------------------------------------------------------------------- /of70/src/libs/filmCasting/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/filmCasting/Make/options -------------------------------------------------------------------------------- /of70/src/libs/filmCasting/filmModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/filmCasting/filmModel.C -------------------------------------------------------------------------------- /of70/src/libs/filmCasting/filmModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/filmCasting/filmModel.H -------------------------------------------------------------------------------- /of70/src/libs/fvmb/LMatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/LMatrix.C -------------------------------------------------------------------------------- /of70/src/libs/fvmb/LMatrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/LMatrix.H -------------------------------------------------------------------------------- /of70/src/libs/fvmb/LMatrixs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/LMatrixs.C -------------------------------------------------------------------------------- /of70/src/libs/fvmb/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/Make/files -------------------------------------------------------------------------------- /of70/src/libs/fvmb/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/Make/options -------------------------------------------------------------------------------- /of70/src/libs/fvmb/operators/blockOperators.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/operators/blockOperators.C -------------------------------------------------------------------------------- /of70/src/libs/fvmb/operators/blockOperators.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/operators/blockOperators.H -------------------------------------------------------------------------------- /of70/src/libs/fvmb/operators/div.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/operators/div.C -------------------------------------------------------------------------------- /of70/src/libs/fvmb/operators/div.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/operators/div.H -------------------------------------------------------------------------------- /of70/src/libs/fvmb/operators/grad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/operators/grad.C -------------------------------------------------------------------------------- /of70/src/libs/fvmb/operators/grad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/operators/grad.H -------------------------------------------------------------------------------- /of70/src/libs/fvmb/operators/twoSymmGrad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/operators/twoSymmGrad.C -------------------------------------------------------------------------------- /of70/src/libs/fvmb/operators/twoSymmGrad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/fvmb/operators/twoSymmGrad.H -------------------------------------------------------------------------------- /of70/src/libs/gaussDefCmpwConvectionScheme/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/gaussDefCmpwConvectionScheme/Make/files -------------------------------------------------------------------------------- /of70/src/libs/gaussDefCmpwConvectionScheme/limiters.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/gaussDefCmpwConvectionScheme/limiters.H -------------------------------------------------------------------------------- /of70/src/libs/postProcessing/averageMolcN/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/postProcessing/averageMolcN/Make/files -------------------------------------------------------------------------------- /of70/src/libs/postProcessing/averageMolcN/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/postProcessing/averageMolcN/Make/options -------------------------------------------------------------------------------- /of70/src/libs/postProcessing/averageMolcX/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/postProcessing/averageMolcX/Make/files -------------------------------------------------------------------------------- /of70/src/libs/postProcessing/averageMolcX/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/postProcessing/averageMolcX/Make/options -------------------------------------------------------------------------------- /of70/src/libs/postProcessing/postProcUtils/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/postProcessing/postProcUtils/Make/files -------------------------------------------------------------------------------- /of70/src/libs/postProcessing/writeEfield/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/postProcessing/writeEfield/Make/files -------------------------------------------------------------------------------- /of70/src/libs/postProcessing/writeEfield/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/postProcessing/writeEfield/Make/options -------------------------------------------------------------------------------- /of70/src/libs/postProcessing/writeEfield/writeEfield.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/postProcessing/writeEfield/writeEfield.C -------------------------------------------------------------------------------- /of70/src/libs/preProcessing/initMolecules/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/preProcessing/initMolecules/Make/files -------------------------------------------------------------------------------- /of70/src/libs/preProcessing/initMolecules/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/preProcessing/initMolecules/Make/options -------------------------------------------------------------------------------- /of70/src/libs/preProcessing/rndPerturbation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/preProcessing/rndPerturbation/Make/files -------------------------------------------------------------------------------- /of70/src/libs/sparseMatrixSolvers/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/sparseMatrixSolvers/Make/files -------------------------------------------------------------------------------- /of70/src/libs/sparseMatrixSolvers/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/sparseMatrixSolvers/Make/options -------------------------------------------------------------------------------- /of70/src/libs/sparseMatrixSolvers/sparseSolverBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/sparseMatrixSolvers/sparseSolverBase.C -------------------------------------------------------------------------------- /of70/src/libs/sparseMatrixSolvers/sparseSolverBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/sparseMatrixSolvers/sparseSolverBase.H -------------------------------------------------------------------------------- /of70/src/libs/thermo/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/thermo/Make/files -------------------------------------------------------------------------------- /of70/src/libs/thermo/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/thermo/Make/options -------------------------------------------------------------------------------- /of70/src/libs/thermo/thermoFunctions/VFT/VFT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/thermo/thermoFunctions/VFT/VFT.C -------------------------------------------------------------------------------- /of70/src/libs/thermo/thermoFunctions/VFT/VFT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/thermo/thermoFunctions/VFT/VFT.H -------------------------------------------------------------------------------- /of70/src/libs/thermo/thermoFunctions/WLF/WLF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/thermo/thermoFunctions/WLF/WLF.C -------------------------------------------------------------------------------- /of70/src/libs/thermo/thermoFunctions/WLF/WLF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/libs/thermo/thermoFunctions/WLF/WLF.H -------------------------------------------------------------------------------- /of70/src/solvers/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/Allwclean -------------------------------------------------------------------------------- /of70/src/solvers/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/Allwmake -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/Make/files -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/Make/options -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/UEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/createControls.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/createFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/createLagrangianFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/createLagrangianFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/createSolver.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/moleculesEqns.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/moleculesEqns.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/pEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/pUEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoBDFoam/rheoBDFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoBDFoam/rheoBDFoam.C -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/Make/files -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/Make/options -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/UEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/createControls.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/createFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/createSolver.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/pEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/pUEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoEFoam/rheoEFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoEFoam/rheoEFoam.C -------------------------------------------------------------------------------- /of70/src/solvers/rheoFilmFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFilmFoam/Make/files -------------------------------------------------------------------------------- /of70/src/solvers/rheoFilmFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFilmFoam/Make/options -------------------------------------------------------------------------------- /of70/src/solvers/rheoFilmFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFilmFoam/createControls.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFilmFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFilmFoam/createFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFilmFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFilmFoam/createSolver.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFilmFoam/rheoFilmFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFilmFoam/rheoFilmFoam.C -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/Make/files -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/Make/options -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/UEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/createControls.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/createFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/createSolver.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/pEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/pUEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoFoam/rheoFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoFoam/rheoFoam.C -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/Make/files -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/Make/options -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/UEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/createControls.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/createFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/createSolver.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/pEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/pUEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoHeatFoam/rheoHeatFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoHeatFoam/rheoHeatFoam.C -------------------------------------------------------------------------------- /of70/src/solvers/rheoInterFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoInterFoam/Make/files -------------------------------------------------------------------------------- /of70/src/solvers/rheoInterFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoInterFoam/Make/options -------------------------------------------------------------------------------- /of70/src/solvers/rheoInterFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoInterFoam/UEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoInterFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoInterFoam/createFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoInterFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoInterFoam/createSolver.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoInterFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoInterFoam/pEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoInterFoam/rheoInterFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoInterFoam/rheoInterFoam.C -------------------------------------------------------------------------------- /of70/src/solvers/rheoInterFoam/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoInterFoam/rhofs.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/Make/files -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/Make/options -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/coupledTEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/coupledTEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/createFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/createMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/createMeshes.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/fluid/CEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/fluid/CEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/fluid/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/fluid/UEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/fluid/initContinuityErrs.H: -------------------------------------------------------------------------------- 1 | List cumulativeContErrs(fluidRegions.size(), 0.0); 2 | -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/fluid/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/fluid/pEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/fluid/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoMultiRegionFoam/fluid/pUEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoMultiRegionFoam/solid/solveSolid.H: -------------------------------------------------------------------------------- 1 | thermo.correct(cpsT, fvOptions, pimple.nCorrNonOrth ()); 2 | 3 | postProc.update(); 4 | -------------------------------------------------------------------------------- /of70/src/solvers/rheoTestFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoTestFoam/Make/files -------------------------------------------------------------------------------- /of70/src/solvers/rheoTestFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoTestFoam/Make/options -------------------------------------------------------------------------------- /of70/src/solvers/rheoTestFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoTestFoam/createFields.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoTestFoam/reStartOrEnd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoTestFoam/reStartOrEnd.H -------------------------------------------------------------------------------- /of70/src/solvers/rheoTestFoam/rheoTestFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoTestFoam/rheoTestFoam.C -------------------------------------------------------------------------------- /of70/src/solvers/rheoTestFoam/timeWrite.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/rheoTestFoam/timeWrite.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/singlePhase/CEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/singlePhase/CEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/singlePhase/adjustCorrPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/singlePhase/adjustCorrPhi.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/singlePhase/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/singlePhase/correctPhi.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/singlePhase/createPPutil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/singlePhase/createPPutil.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/singlePhase/readDyMControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/singlePhase/readDyMControls.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/singlePhase/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/singlePhase/setRDeltaT.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/VoF/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/VoF/alphaCourantNo.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/VoF/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/VoF/alphaEqn.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/VoF/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/VoF/setDeltaT.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/VoF/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/VoF/setRDeltaT.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/adjustCorrPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/adjustCorrPhi.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/alphaSuSp.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/correctPhi.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/createDyMControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/createDyMControls.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/createPPutil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/createPPutil.H -------------------------------------------------------------------------------- /of70/src/solvers/shared/twoPhase/initCorrectPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/src/solvers/shared/twoPhase/initCorrectPhi.H -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/LAOE/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/LAOE/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/LAOE/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/LAOE/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/LAOE/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/LAOE/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/LAOE/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/LAOE/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/LAOE/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/LAOE/system/blockMeshDict -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/LAOE/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/LAOE/system/controlDict -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/LAOE/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/LAOE/system/fvSchemes -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/LAOE/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/LAOE/system/fvSolution -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/planarExtensionalFlow/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/planarExtensionalFlow/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/planarExtensionalFlow/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/planarExtensionalFlow/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoBDFoam/planarExtensionalFlow/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoBDFoam/planarExtensionalFlow/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/0/C.org -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/0/phiE -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/0/sigma.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/0/sigma.org -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/system/controlDict -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/system/fvSchemes -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKI/Ohmic/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKI/Ohmic/system/fvSolution -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/phiE -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/psi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/psi -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/NernstPlanckCoupled/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/NernstPlanckCoupled/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/NernstPlanckCoupled/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/NernstPlanckCoupled/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/phiE -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/psi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/psi -------------------------------------------------------------------------------- /of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/Newtonian/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/Newtonian/0/T -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/Newtonian/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/Newtonian/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/Newtonian/0/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/Newtonian/0/h -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/Newtonian/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/Newtonian/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/Newtonian/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/Newtonian/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/Newtonian/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/Newtonian/system/fvSchemes -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/0/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/0/h -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/0/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/0/pointDisplacement -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/0/theta -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/system/blockMeshDict -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/system/controlDict -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/system/fvSchemes -------------------------------------------------------------------------------- /of70/tutorials/rheoFilmFoam/UCM/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFilmFoam/UCM/system/fvSolution -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/writeData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cavity/Oldroyd-BLog/writeData -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/C.org -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/b -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/C.org -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/PTTLog/0/theta -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/PTTLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/PTTLog/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/PTTLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/PTTLog/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/CrossSlot/PTTLog/writeData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/CrossSlot/PTTLog/writeData -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/OtherTests/Channel2D_VE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/OtherTests/Channel2D_VE/README -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/OtherTests/Channel3D_VE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/OtherTests/Channel3D_VE/README -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/OtherTests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/OtherTests/README -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/OtherTests/tube_GNF/Casson/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/OtherTests/tube_GNF/Casson/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/OtherTests/tube_GNF/Casson/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/OtherTests/tube_GNF/Casson/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/OtherTests/tube_GNF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/OtherTests/tube_GNF/README -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/fluidDamper/CarreauYasuda/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/fluidDamper/CarreauYasuda/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoFoam/fluidDamper/CarreauYasuda/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoFoam/fluidDamper/CarreauYasuda/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/BernardCells/Newtonian/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/BernardCells/Newtonian/0/T -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/BernardCells/Newtonian/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/BernardCells/Newtonian/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/channel/PTTLog/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/channel/PTTLog/0/T -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/channel/PTTLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/channel/PTTLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/channel/PTTLog/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/channel/PTTLog/0/p_rgh -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/channel/PTTLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/channel/PTTLog/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/channel/PTTLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/channel/PTTLog/0/theta -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/channel/PTTLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/channel/PTTLog/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/channel/PTTLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/channel/PTTLog/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/channel/PTTLog/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/channel/PTTLog/constant/g -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/T -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/p_rgh -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoHeatFoam/cylinder/PowerLaw/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoInterFoam/DieSwell/GiesekusLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoInterFoam/DieSwell/GiesekusLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoInterFoam/DieSwell/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoInterFoam/DieSwell/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoInterFoam/damBreak/Newtonian/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoInterFoam/damBreak/Newtonian/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoInterFoam/damBreak/Newtonian/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoInterFoam/damBreak/Newtonian/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoMultiRegionFoam/calibrator/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoMultiRegionFoam/calibrator/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoMultiRegionFoam/calibrator/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoMultiRegionFoam/calibrator/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoMultiRegionFoam/slabs/0/solid0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoMultiRegionFoam/slabs/0/solid0/T -------------------------------------------------------------------------------- /of70/tutorials/rheoMultiRegionFoam/slabs/0/solid1/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoMultiRegionFoam/slabs/0/solid1/T -------------------------------------------------------------------------------- /of70/tutorials/rheoMultiRegionFoam/slabs/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoMultiRegionFoam/slabs/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoMultiRegionFoam/slabs/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoMultiRegionFoam/slabs/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoMultiRegionFoam/slabs/system/solid0/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /of70/tutorials/rheoMultiRegionFoam/slabs/system/solid1/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/FENE-CR/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/FENE-CR/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/FENE-CR/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/FENE-CR/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/FENE-CR/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/FENE-CR/0/tau -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/FENE-CR/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/FENE-CR/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/FENE-CR/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/FENE-CR/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/FENE-CR/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/FENE-CR/system/controlDict -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/FENE-CR/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/FENE-CR/system/fvSchemes -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/FENE-CR/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/FENE-CR/system/fvSolution -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/HerschelBulkley/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/HerschelBulkley/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/HerschelBulkley/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/HerschelBulkley/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/HerschelBulkley/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/HerschelBulkley/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/HerschelBulkley/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/HerschelBulkley/Allrun -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/multimode_XPomPom/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/multimode_XPomPom/0/U -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/multimode_XPomPom/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/multimode_XPomPom/0/p -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM1 -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM2 -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM3 -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/multimode_XPomPom/0/tauM4 -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/multimode_XPomPom/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/multimode_XPomPom/Allclean -------------------------------------------------------------------------------- /of70/tutorials/rheoTestFoam/multimode_XPomPom/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of70/tutorials/rheoTestFoam/multimode_XPomPom/Allrun -------------------------------------------------------------------------------- /of90/downloadEigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/downloadEigen -------------------------------------------------------------------------------- /of90/installPetsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/installPetsc -------------------------------------------------------------------------------- /of90/src/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/Allwclean -------------------------------------------------------------------------------- /of90/src/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/Allwmake -------------------------------------------------------------------------------- /of90/src/libs/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/Allwclean -------------------------------------------------------------------------------- /of90/src/libs/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/Allwmake -------------------------------------------------------------------------------- /of90/src/libs/EDFModels/EDFModel/EDFModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/EDFModels/EDFModel/EDFModel.C -------------------------------------------------------------------------------- /of90/src/libs/EDFModels/EDFModel/EDFModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/EDFModels/EDFModel/EDFModel.H -------------------------------------------------------------------------------- /of90/src/libs/EDFModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/EDFModels/Make/files -------------------------------------------------------------------------------- /of90/src/libs/EDFModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/EDFModels/Make/options -------------------------------------------------------------------------------- /of90/src/libs/EDFModels/models/Ohmic/Ohmic.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/EDFModels/models/Ohmic/Ohmic.C -------------------------------------------------------------------------------- /of90/src/libs/EDFModels/models/Ohmic/Ohmic.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/EDFModels/models/Ohmic/Ohmic.H -------------------------------------------------------------------------------- /of90/src/libs/EDFModels/models/noModel/noModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/EDFModels/models/noModel/noModel.C -------------------------------------------------------------------------------- /of90/src/libs/EDFModels/models/noModel/noModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/EDFModels/models/noModel/noModel.H -------------------------------------------------------------------------------- /of90/src/libs/boundaryConditions/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/boundaryConditions/Make/files -------------------------------------------------------------------------------- /of90/src/libs/boundaryConditions/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/boundaryConditions/Make/options -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/Make/files -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/Make/options -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/sPCloudInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/sPCloudInterface.C -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/sPCloudInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/sPCloudInterface.H -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/sPCloudInterfaceIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/sPCloudInterfaceIO.H -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/solidParticle.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/solidParticle.C -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/solidParticle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/solidParticle.H -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/solidParticleCloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/solidParticleCloud.C -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/solidParticleCloud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/solidParticleCloud.H -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/solidParticleCloudI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/solidParticleCloudI.H -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/solidParticleI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/solidParticleI.H -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/solidParticleIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/solidParticleIO.C -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/springModel/FENE/FENE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/springModel/FENE/FENE.C -------------------------------------------------------------------------------- /of90/src/libs/brownianDynamics/springModel/FENE/FENE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/brownianDynamics/springModel/FENE/FENE.H -------------------------------------------------------------------------------- /of90/src/libs/constitutiveEquations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/constitutiveEquations/Make/files -------------------------------------------------------------------------------- /of90/src/libs/constitutiveEquations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/constitutiveEquations/Make/options -------------------------------------------------------------------------------- /of90/src/libs/filmCasting/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/filmCasting/Make/files -------------------------------------------------------------------------------- /of90/src/libs/filmCasting/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/filmCasting/Make/options -------------------------------------------------------------------------------- /of90/src/libs/filmCasting/filmModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/filmCasting/filmModel.C -------------------------------------------------------------------------------- /of90/src/libs/filmCasting/filmModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/filmCasting/filmModel.H -------------------------------------------------------------------------------- /of90/src/libs/fvmb/LMatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/LMatrix.C -------------------------------------------------------------------------------- /of90/src/libs/fvmb/LMatrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/LMatrix.H -------------------------------------------------------------------------------- /of90/src/libs/fvmb/LMatrixs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/LMatrixs.C -------------------------------------------------------------------------------- /of90/src/libs/fvmb/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/Make/files -------------------------------------------------------------------------------- /of90/src/libs/fvmb/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/Make/options -------------------------------------------------------------------------------- /of90/src/libs/fvmb/operators/blockOperators.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/operators/blockOperators.C -------------------------------------------------------------------------------- /of90/src/libs/fvmb/operators/blockOperators.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/operators/blockOperators.H -------------------------------------------------------------------------------- /of90/src/libs/fvmb/operators/div.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/operators/div.C -------------------------------------------------------------------------------- /of90/src/libs/fvmb/operators/div.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/operators/div.H -------------------------------------------------------------------------------- /of90/src/libs/fvmb/operators/grad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/operators/grad.C -------------------------------------------------------------------------------- /of90/src/libs/fvmb/operators/grad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/operators/grad.H -------------------------------------------------------------------------------- /of90/src/libs/fvmb/operators/twoSymmGrad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/operators/twoSymmGrad.C -------------------------------------------------------------------------------- /of90/src/libs/fvmb/operators/twoSymmGrad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/fvmb/operators/twoSymmGrad.H -------------------------------------------------------------------------------- /of90/src/libs/gaussDefCmpwConvectionScheme/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/gaussDefCmpwConvectionScheme/Make/files -------------------------------------------------------------------------------- /of90/src/libs/gaussDefCmpwConvectionScheme/limiters.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/gaussDefCmpwConvectionScheme/limiters.H -------------------------------------------------------------------------------- /of90/src/libs/postProcessing/averageMolcN/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/postProcessing/averageMolcN/Make/files -------------------------------------------------------------------------------- /of90/src/libs/postProcessing/averageMolcN/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/postProcessing/averageMolcN/Make/options -------------------------------------------------------------------------------- /of90/src/libs/postProcessing/averageMolcX/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/postProcessing/averageMolcX/Make/files -------------------------------------------------------------------------------- /of90/src/libs/postProcessing/averageMolcX/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/postProcessing/averageMolcX/Make/options -------------------------------------------------------------------------------- /of90/src/libs/postProcessing/postProcUtils/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/postProcessing/postProcUtils/Make/files -------------------------------------------------------------------------------- /of90/src/libs/postProcessing/writeEfield/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/postProcessing/writeEfield/Make/files -------------------------------------------------------------------------------- /of90/src/libs/postProcessing/writeEfield/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/postProcessing/writeEfield/Make/options -------------------------------------------------------------------------------- /of90/src/libs/postProcessing/writeEfield/writeEfield.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/postProcessing/writeEfield/writeEfield.C -------------------------------------------------------------------------------- /of90/src/libs/preProcessing/initMolecules/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/preProcessing/initMolecules/Make/files -------------------------------------------------------------------------------- /of90/src/libs/preProcessing/initMolecules/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/preProcessing/initMolecules/Make/options -------------------------------------------------------------------------------- /of90/src/libs/preProcessing/rndPerturbation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/preProcessing/rndPerturbation/Make/files -------------------------------------------------------------------------------- /of90/src/libs/sparseMatrixSolvers/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/sparseMatrixSolvers/Make/files -------------------------------------------------------------------------------- /of90/src/libs/sparseMatrixSolvers/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/sparseMatrixSolvers/Make/options -------------------------------------------------------------------------------- /of90/src/libs/sparseMatrixSolvers/sparseSolverBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/sparseMatrixSolvers/sparseSolverBase.C -------------------------------------------------------------------------------- /of90/src/libs/sparseMatrixSolvers/sparseSolverBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/sparseMatrixSolvers/sparseSolverBase.H -------------------------------------------------------------------------------- /of90/src/libs/thermo/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/thermo/Make/files -------------------------------------------------------------------------------- /of90/src/libs/thermo/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/thermo/Make/options -------------------------------------------------------------------------------- /of90/src/libs/thermo/thermoFunctions/VFT/VFT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/thermo/thermoFunctions/VFT/VFT.C -------------------------------------------------------------------------------- /of90/src/libs/thermo/thermoFunctions/VFT/VFT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/thermo/thermoFunctions/VFT/VFT.H -------------------------------------------------------------------------------- /of90/src/libs/thermo/thermoFunctions/WLF/WLF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/thermo/thermoFunctions/WLF/WLF.C -------------------------------------------------------------------------------- /of90/src/libs/thermo/thermoFunctions/WLF/WLF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/libs/thermo/thermoFunctions/WLF/WLF.H -------------------------------------------------------------------------------- /of90/src/solvers/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/Allwclean -------------------------------------------------------------------------------- /of90/src/solvers/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/Allwmake -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/Make/files -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/Make/options -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/UEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/createControls.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/createFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/createLagrangianFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/createLagrangianFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/createSolver.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/moleculesEqns.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/moleculesEqns.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/pEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/pUEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoBDFoam/rheoBDFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoBDFoam/rheoBDFoam.C -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/Make/files -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/Make/options -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/UEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/createControls.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/createFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/createSolver.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/pEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/pUEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoEFoam/rheoEFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoEFoam/rheoEFoam.C -------------------------------------------------------------------------------- /of90/src/solvers/rheoFilmFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFilmFoam/Make/files -------------------------------------------------------------------------------- /of90/src/solvers/rheoFilmFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFilmFoam/Make/options -------------------------------------------------------------------------------- /of90/src/solvers/rheoFilmFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFilmFoam/createControls.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFilmFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFilmFoam/createFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFilmFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFilmFoam/createSolver.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFilmFoam/rheoFilmFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFilmFoam/rheoFilmFoam.C -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/Make/files -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/Make/options -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/UEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/createControls.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/createFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/createSolver.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/pEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/pUEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoFoam/rheoFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoFoam/rheoFoam.C -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/Make/files -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/Make/options -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/UEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/createControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/createControls.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/createFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/createSolver.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/pEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/pUEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoHeatFoam/rheoHeatFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoHeatFoam/rheoHeatFoam.C -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/Make/files -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/Make/options -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/UEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/VoF/alphaControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/VoF/alphaControls.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/VoF/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/VoF/alphaCourantNo.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/VoF/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/VoF/alphaEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/VoF/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/VoF/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/VoF/alphaScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/VoF/alphaScheme.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/VoF/createAlphaFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/VoF/createAlphaFluxes.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/VoF/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/VoF/setDeltaT.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/VoF/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/VoF/setRDeltaT.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/adjustCorrPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/adjustCorrPhi.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/alphaSuSp.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/correctPhi.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/createFieldRefs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/createFieldRefs.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/createFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/createPPutil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/createPPutil.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/createSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/createSolver.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/initCorrectPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/initCorrectPhi.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/pEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/rheoInterFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/rheoInterFoam.C -------------------------------------------------------------------------------- /of90/src/solvers/rheoInterFoam/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoInterFoam/rhofs.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/Make/files -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/Make/options -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/coupledTEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/coupledTEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/createFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/createMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/createMeshes.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/fluid/CEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/fluid/CEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/fluid/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/fluid/UEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/fluid/initContinuityErrs.H: -------------------------------------------------------------------------------- 1 | List cumulativeContErrs(fluidRegions.size(), 0.0); 2 | -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/fluid/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/fluid/pEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoMultiRegionFoam/fluid/pUEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoMultiRegionFoam/fluid/pUEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoTestFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoTestFoam/Make/files -------------------------------------------------------------------------------- /of90/src/solvers/rheoTestFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoTestFoam/Make/options -------------------------------------------------------------------------------- /of90/src/solvers/rheoTestFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoTestFoam/createFields.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoTestFoam/reStartOrEnd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoTestFoam/reStartOrEnd.H -------------------------------------------------------------------------------- /of90/src/solvers/rheoTestFoam/rheoTestFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoTestFoam/rheoTestFoam.C -------------------------------------------------------------------------------- /of90/src/solvers/rheoTestFoam/timeWrite.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/rheoTestFoam/timeWrite.H -------------------------------------------------------------------------------- /of90/src/solvers/shared/singlePhase/CEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/shared/singlePhase/CEqn.H -------------------------------------------------------------------------------- /of90/src/solvers/shared/singlePhase/adjustCorrPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/shared/singlePhase/adjustCorrPhi.H -------------------------------------------------------------------------------- /of90/src/solvers/shared/singlePhase/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/shared/singlePhase/correctPhi.H -------------------------------------------------------------------------------- /of90/src/solvers/shared/singlePhase/createPPutil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/shared/singlePhase/createPPutil.H -------------------------------------------------------------------------------- /of90/src/solvers/shared/singlePhase/readDyMControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/shared/singlePhase/readDyMControls.H -------------------------------------------------------------------------------- /of90/src/solvers/shared/singlePhase/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/src/solvers/shared/singlePhase/setRDeltaT.H -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/LAOE/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/LAOE/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/LAOE/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/LAOE/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/LAOE/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/LAOE/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/LAOE/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/LAOE/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/LAOE/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/LAOE/system/blockMeshDict -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/LAOE/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/LAOE/system/controlDict -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/LAOE/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/LAOE/system/fvSchemes -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/LAOE/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/LAOE/system/fvSolution -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/planarExtensionalFlow/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/planarExtensionalFlow/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/planarExtensionalFlow/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/planarExtensionalFlow/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoBDFoam/planarExtensionalFlow/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoBDFoam/planarExtensionalFlow/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/0/C.org -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/0/phiE -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/0/sigma.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/0/sigma.org -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/system/controlDict -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/system/fvSchemes -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKI/Ohmic/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKI/Ohmic/system/fvSolution -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/EKmixer/slipSmoluchowski/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/phiE -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/psi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/0/psi -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/DebyeHuckel/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/NernstPlanckCoupled/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/NernstPlanckCoupled/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/NernstPlanckCoupled/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/NernstPlanckCoupled/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/phiE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/phiE -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/psi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/0/psi -------------------------------------------------------------------------------- /of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoEFoam/ICEO/PoissonBoltzmann/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/Newtonian/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/Newtonian/0/T -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/Newtonian/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/Newtonian/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/Newtonian/0/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/Newtonian/0/h -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/Newtonian/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/Newtonian/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/Newtonian/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/Newtonian/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/Newtonian/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/Newtonian/system/fvSchemes -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/0/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/0/h -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/0/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/0/pointDisplacement -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/0/theta -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/system/blockMeshDict -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/system/controlDict -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/system/fvSchemes -------------------------------------------------------------------------------- /of90/tutorials/rheoFilmFoam/UCM/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFilmFoam/UCM/system/fvSolution -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Aneurysm/HerschelBulkley/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/writeData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cavity/Oldroyd-BLog/writeData -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Channel/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Contraction41/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/C.org -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BRootk/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/b -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/Oldroyd-BSqrt/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/C.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/C.org -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/PTTLog/0/theta -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/PTTLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/PTTLog/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/PTTLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/PTTLog/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/CrossSlot/PTTLog/writeData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/CrossSlot/PTTLog/writeData -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/0/theta -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/Cylinder/Oldroyd-BLog/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/OtherTests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/OtherTests/README -------------------------------------------------------------------------------- /of90/tutorials/rheoFoam/OtherTests/tube_GNF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoFoam/OtherTests/tube_GNF/README -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/channel/PTTLog/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/channel/PTTLog/0/T -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/channel/PTTLog/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/channel/PTTLog/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/channel/PTTLog/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/channel/PTTLog/0/p_rgh -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/channel/PTTLog/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/channel/PTTLog/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/channel/PTTLog/0/theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/channel/PTTLog/0/theta -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/channel/PTTLog/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/channel/PTTLog/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/channel/PTTLog/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/channel/PTTLog/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/T -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/cylinder/PowerLaw/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoHeatFoam/cylinder/PowerLaw/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoHeatFoam/cylinder/PowerLaw/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoInterFoam/damBreak/Newtonian/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoInterFoam/damBreak/Newtonian/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoMultiRegionFoam/calibrator/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoMultiRegionFoam/calibrator/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoMultiRegionFoam/slabs/0/solid0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoMultiRegionFoam/slabs/0/solid0/T -------------------------------------------------------------------------------- /of90/tutorials/rheoMultiRegionFoam/slabs/0/solid1/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoMultiRegionFoam/slabs/0/solid1/T -------------------------------------------------------------------------------- /of90/tutorials/rheoMultiRegionFoam/slabs/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoMultiRegionFoam/slabs/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoMultiRegionFoam/slabs/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoMultiRegionFoam/slabs/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoMultiRegionFoam/slabs/system/solid0/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /of90/tutorials/rheoMultiRegionFoam/slabs/system/solid1/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/FENE-CR/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/FENE-CR/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/FENE-CR/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/FENE-CR/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/FENE-CR/0/tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/FENE-CR/0/tau -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/FENE-CR/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/FENE-CR/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/FENE-CR/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/FENE-CR/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/FENE-CR/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/FENE-CR/system/fvSchemes -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/HerschelBulkley/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/HerschelBulkley/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/HerschelBulkley/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/HerschelBulkley/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/HerschelBulkley/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/HerschelBulkley/Allclean -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/HerschelBulkley/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/HerschelBulkley/Allrun -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/multimode_XPomPom/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/multimode_XPomPom/0/U -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/multimode_XPomPom/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/multimode_XPomPom/0/p -------------------------------------------------------------------------------- /of90/tutorials/rheoTestFoam/multimode_XPomPom/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fppimenta/rheoTool/HEAD/of90/tutorials/rheoTestFoam/multimode_XPomPom/Allrun --------------------------------------------------------------------------------