├── Allwclean ├── Allwmake ├── LICENSE ├── README.md ├── applications ├── solvers │ └── icoBoilingFoam │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── createFields.H │ │ ├── createMeshes.H │ │ ├── createMeshesPostProcess.H │ │ ├── fluid │ │ ├── TEqn.H │ │ ├── UEqn.H │ │ ├── VoF │ │ │ ├── alphaControls_advector.H │ │ │ ├── alphaCourantNo.H │ │ │ ├── alphaEqn.H │ │ │ ├── alphaEqnSubCycle.H │ │ │ ├── alphaEqnSubCycle_advector.H │ │ │ ├── alphaEqn_advector.H │ │ │ ├── createAlphaFluxes.H │ │ │ ├── hardBoundAlpha.H │ │ │ ├── microlayerMassSource.H │ │ │ ├── setDeltaT.H │ │ │ └── setRDeltaT.H │ │ ├── alphaSuSp.H │ │ ├── compressibleCourantNo.C │ │ ├── compressibleCourantNo.H │ │ ├── compressibleMultiRegionCourantNo.H │ │ ├── computeFluidHeatFluxes.H │ │ ├── computeMassSource.H │ │ ├── continuityError.H │ │ ├── correctPhi.H │ │ ├── createFluidFields.H │ │ ├── createFluidMeshes.H │ │ ├── initContinuityErrs.H │ │ ├── pEqn.H │ │ ├── pEqnCorr.H │ │ ├── readFluidMultiRegionPIMPLEControls.H │ │ ├── rhofs.H │ │ ├── setRegionFluidFields.H │ │ ├── solveFluid.H │ │ └── storeOldFluidFields.H │ │ ├── icoBoilingFoam.C │ │ ├── include │ │ ├── setInitialMultiRegionDeltaT.H │ │ └── setMultiRegionDeltaT.H │ │ ├── readPIMPLEControls.H │ │ └── solid │ │ ├── computeSolidHeatFluxes.H │ │ ├── createSolidFields.H │ │ ├── createSolidMeshes.H │ │ ├── readSolidMultiRegionPIMPLEControls.H │ │ ├── readSolidTimeControls.H │ │ ├── setRegionSolidFields.H │ │ ├── solidRegionDiffNo.C │ │ ├── solidRegionDiffNo.H │ │ ├── solidRegionDiffusionNo.H │ │ └── solveSolid.H └── utilities │ └── setFieldfromTable │ ├── Make │ ├── files │ └── options │ ├── setFieldfromTable.C │ └── setFieldfromTableDict ├── cases ├── flowBoilingCHT_AR1_water_q100k │ ├── geometry.H │ ├── initUParams.H │ ├── settings.H │ ├── singlePhase │ │ ├── Allclean │ │ ├── Allrun │ │ ├── allrun.slurm │ │ ├── constant │ │ │ ├── fluid │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── g │ │ │ ├── regionProperties │ │ │ └── solid │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ ├── orig.0 │ │ │ ├── fluid │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alpha.liquid │ │ │ │ ├── cellToRegion │ │ │ │ ├── mDot │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ └── solid │ │ │ │ ├── T │ │ │ │ └── p │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fluid │ │ │ ├── changeDictionaryDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── solid │ │ │ ├── changeDictionaryDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ │ └── topoSetDict │ └── twoPhase │ │ ├── Allclean │ │ ├── Allrun │ │ ├── of_job.sh │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fluid │ │ ├── changeDictionaryDict │ │ ├── createPatchDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── setFieldsDict │ │ └── topoSetDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── solid │ │ ├── changeDictionaryDict │ │ ├── createPatchDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict │ │ └── topoSetDict ├── mukherjee2011 │ ├── singlePhase │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fluid │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── g │ │ │ └── regionProperties │ │ ├── of_job.sh │ │ ├── orig.0 │ │ │ └── fluid │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alpha.liquid │ │ │ │ ├── mDot │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ └── system │ │ │ ├── controlDict │ │ │ ├── controlDict.tp │ │ │ ├── fluid │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSchemes.tp │ │ │ ├── fvSolution │ │ │ ├── fvSolution.tp │ │ │ └── setFieldsDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── twoPhase │ │ ├── Allclean │ │ ├── Allrun │ │ └── of_job.sh ├── nucleateBoiling_BuresSato │ ├── singlePhase │ │ ├── 0.orig │ │ │ ├── fluid │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alpha.liquid │ │ │ │ ├── mDot │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── heater │ │ │ │ ├── T │ │ │ │ └── p │ │ │ └── solid │ │ │ │ ├── T │ │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fluid │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── g │ │ │ ├── heater │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ ├── regionProperties │ │ │ └── solid │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ ├── of_job.sh │ │ ├── simSetup │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.sp │ │ │ ├── controlDict.tp │ │ │ ├── fluid │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSchemes.tp │ │ │ ├── fvSolution │ │ │ ├── fvSolution.sp │ │ │ ├── fvSolution.tp │ │ │ └── setAlphaFieldDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── heater │ │ │ ├── decomposeParDict │ │ │ ├── fvOptions │ │ │ ├── fvOptions.sp │ │ │ ├── fvOptions.tp │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ ├── solid │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── topoSetDict │ └── twoPhase │ │ ├── Allclean │ │ ├── Allrun │ │ └── of_job.sh ├── scrivenWedge │ ├── 0.orig │ │ └── fluid │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alpha.liquid │ │ │ ├── mDot │ │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── T01.csv │ ├── constant │ │ ├── fluid │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── g │ │ ├── regionProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── python │ │ ├── data.dat │ │ └── plotBenchmark.py │ └── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fluid │ │ ├── blockMeshDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── setAlphaFieldDict │ │ └── setFieldfromTableDict │ │ ├── fvSchemes │ │ └── fvSolution ├── stefanProblem │ ├── 0.orig │ │ └── fluid │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alpha.liquid │ │ │ ├── mDot │ │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── fluid │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── g │ │ └── regionProperties │ ├── python │ │ ├── T0.csv │ │ ├── analytical.csv │ │ ├── initPos.H │ │ ├── plotBenchmark.py │ │ └── setup.py │ └── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fluid │ │ ├── blockMeshDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── setAlphaFieldDict │ │ └── setFieldfromTableDict │ │ ├── fvSchemes │ │ └── fvSolution └── suckingInterface │ ├── 0.orig │ └── fluid │ │ ├── T │ │ ├── U │ │ ├── alpha.liquid │ │ ├── mDot │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── T01.csv │ ├── constant │ ├── fluid │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── g │ └── regionProperties │ ├── python │ ├── data.dat │ └── plotBenchmark.py │ └── system │ ├── controlDict │ ├── decomposeParDict │ ├── fluid │ ├── blockMeshDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── setAlphaFieldDict │ └── setFieldfromTableDict │ ├── fvSchemes │ └── fvSolution ├── doc └── boilingFoam.pdf ├── etc ├── buildList └── dicts │ └── controlDict.postFunctionObjects └── src ├── functionObjects ├── Make │ ├── files │ └── options ├── bubbleDestroyer │ ├── bubbleDestroyer.C │ └── bubbleDestroyer.H ├── bubbleGenerator │ ├── activationModels │ │ ├── activationModel │ │ │ ├── activationModel.C │ │ │ └── activationModel.H │ │ └── liquidSuperheatingThreshold │ │ │ ├── liquidSuperheatingThreshold.C │ │ │ └── liquidSuperheatingThreshold.H │ ├── bubbleGenerator.C │ ├── bubbleGenerator.H │ ├── locationModels │ │ ├── fixedSites │ │ │ ├── fixedSites.C │ │ │ └── fixedSites.H │ │ ├── locationModel │ │ │ ├── locationModel.C │ │ │ └── locationModel.H │ │ └── patchSites │ │ │ ├── patchSites.C │ │ │ └── patchSites.H │ └── nucleationModels │ │ ├── fixedRadius │ │ ├── fixedRadius.C │ │ └── fixedRadius.H │ │ └── nucleationModel │ │ ├── nucleationModel.C │ │ └── nucleationModel.H ├── bubbleTracker │ ├── bubbleTracker.C │ └── bubbleTracker.H └── postBoiling │ ├── postBoiling.C │ └── postBoiling.H ├── fvPatchFields └── turbulentTemperatureCoupledBoilingMicrolayer │ ├── turbulentTemperatureCoupledBoilingMicrolayerFvPatchScalarField.C │ └── turbulentTemperatureCoupledBoilingMicrolayerFvPatchScalarField.H ├── geometricVoF ├── Make │ ├── files │ └── options ├── advectionSchemes │ └── isoAdvection │ │ ├── isoAdvection.C │ │ ├── isoAdvection.H │ │ ├── isoAdvectionTemplates.C │ │ └── lnInclude │ │ ├── isoAdvectionBoiling.C │ │ ├── isoAdvectionBoiling.H │ │ └── isoAdvectionTemplatesBoiling.C ├── cellCuts │ ├── cutCell │ │ ├── cutCell.C │ │ ├── cutCell.H │ │ ├── cutCellIso.C │ │ ├── cutCellIso.H │ │ ├── cutCellPLIC.C │ │ └── cutCellPLIC.H │ └── cutFace │ │ ├── cutFace.C │ │ ├── cutFace.H │ │ ├── cutFaceAdvect.C │ │ ├── cutFaceAdvect.H │ │ ├── cutFaceIso.C │ │ ├── cutFaceIso.H │ │ ├── cutFacePLIC.C │ │ └── cutFacePLIC.H ├── reconstructedDistanceFunction │ ├── reconstructedDistanceFunction.C │ └── reconstructedDistanceFunction.H ├── reconstructionSchemes │ ├── isoSchemes │ │ └── isoAlpha │ │ │ ├── isoAlpha.C │ │ │ └── isoAlpha.H │ ├── plicSchemes │ │ ├── gradAlpha │ │ │ ├── gradAlpha.C │ │ │ └── gradAlpha.H │ │ └── plicRDF │ │ │ ├── plicRDF.C │ │ │ └── plicRDF.H │ ├── reconstructionSchemes.C │ ├── reconstructionSchemes.H │ └── reconstructionSchemesNew.C ├── sampledInterface │ ├── sampledInterface.C │ ├── sampledInterface.H │ └── sampledInterfaceTemplates.C └── surfaceIterators │ ├── surfaceIteratorIso.C │ ├── surfaceIteratorIso.H │ ├── surfaceIteratorPLIC.C │ └── surfaceIteratorPLIC.H └── interfaceProperties ├── Make ├── files └── options ├── curvatureModels ├── curvatureModel │ ├── curvatureModel.C │ ├── curvatureModel.H │ └── curvatureModelNew.C ├── fixedCurvature │ ├── fixedCurvature.C │ └── fixedCurvature.H ├── gradAlphaCurvature │ ├── gradAlphaCurvature.C │ └── gradAlphaCurvature.H └── gradRDFCurvature │ ├── gradRDFCurvature.C │ └── gradRDFCurvature.H ├── interfacePropertiesBoiling.C └── interfacePropertiesBoiling.H /Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/Allwclean -------------------------------------------------------------------------------- /Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/Allwmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/README.md -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/Make/files -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/Make/options -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/createFields.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/createMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/createMeshes.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/createMeshesPostProcess.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/createMeshesPostProcess.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/TEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/TEqn.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/UEqn.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/alphaControls_advector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/alphaControls_advector.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/alphaCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/alphaEqn.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/alphaEqnSubCycle_advector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/alphaEqnSubCycle_advector.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/alphaEqn_advector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/alphaEqn_advector.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/createAlphaFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/createAlphaFluxes.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/hardBoundAlpha.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/hardBoundAlpha.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/microlayerMassSource.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/microlayerMassSource.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/setDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/VoF/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/VoF/setRDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/alphaSuSp.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/compressibleCourantNo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/compressibleCourantNo.C -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/compressibleCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/compressibleCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/compressibleMultiRegionCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/compressibleMultiRegionCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/computeFluidHeatFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/computeFluidHeatFluxes.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/computeMassSource.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/computeMassSource.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/continuityError.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/continuityError.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/correctPhi.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/createFluidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/createFluidFields.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/createFluidMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/createFluidMeshes.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/initContinuityErrs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/initContinuityErrs.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/pEqn.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/pEqnCorr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/pEqnCorr.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/readFluidMultiRegionPIMPLEControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/readFluidMultiRegionPIMPLEControls.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/rhofs.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/setRegionFluidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/setRegionFluidFields.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/solveFluid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/solveFluid.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/fluid/storeOldFluidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/fluid/storeOldFluidFields.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/icoBoilingFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/icoBoilingFoam.C -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/include/setInitialMultiRegionDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/include/setInitialMultiRegionDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/include/setMultiRegionDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/include/setMultiRegionDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/readPIMPLEControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/readPIMPLEControls.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/computeSolidHeatFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/computeSolidHeatFluxes.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/createSolidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/createSolidFields.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/createSolidMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/createSolidMeshes.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/readSolidMultiRegionPIMPLEControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/readSolidMultiRegionPIMPLEControls.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/readSolidTimeControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/readSolidTimeControls.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/setRegionSolidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/setRegionSolidFields.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/solidRegionDiffNo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/solidRegionDiffNo.C -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/solidRegionDiffNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/solidRegionDiffNo.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/solidRegionDiffusionNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/solidRegionDiffusionNo.H -------------------------------------------------------------------------------- /applications/solvers/icoBoilingFoam/solid/solveSolid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/solvers/icoBoilingFoam/solid/solveSolid.H -------------------------------------------------------------------------------- /applications/utilities/setFieldfromTable/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/utilities/setFieldfromTable/Make/files -------------------------------------------------------------------------------- /applications/utilities/setFieldfromTable/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/utilities/setFieldfromTable/Make/options -------------------------------------------------------------------------------- /applications/utilities/setFieldfromTable/setFieldfromTable.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/utilities/setFieldfromTable/setFieldfromTable.C -------------------------------------------------------------------------------- /applications/utilities/setFieldfromTable/setFieldfromTableDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/applications/utilities/setFieldfromTable/setFieldfromTableDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/geometry.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/geometry.H -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/initUParams.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/initUParams.H -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/settings.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/settings.H -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/Allclean -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/Allrun -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/allrun.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/allrun.slurm -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/fluid/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/fluid/g -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/fluid/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/fluid/transportProperties -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/fluid/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/fluid/turbulenceProperties -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/g -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/regionProperties -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/solid/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/solid/radiationProperties -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/solid/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/constant/solid/thermophysicalProperties -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/T -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/U -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/alpha.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/alpha.liquid -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/cellToRegion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/cellToRegion -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/mDot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/mDot -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/p -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/fluid/p_rgh -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/solid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/solid/T -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/solid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/orig.0/solid/p -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/blockMeshDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/controlDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/changeDictionaryDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/createPatchDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/decomposeParDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/fvSchemes -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/fvSolution -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/setFieldsDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fluid/topoSetDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fvSchemes -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/fvSolution -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/changeDictionaryDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/createPatchDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/decomposeParDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/fvSchemes -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/fvSolution -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/solid/topoSetDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/singlePhase/system/topoSetDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/Allclean -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/Allrun -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/of_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/of_job.sh -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/blockMeshDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/controlDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/changeDictionaryDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/createPatchDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/decomposeParDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/fvSchemes -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/fvSolution -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/setFieldsDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fluid/topoSetDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fvSchemes -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/fvSolution -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/changeDictionaryDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/createPatchDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/decomposeParDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/fvSchemes -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/fvSolution -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/solid/topoSetDict -------------------------------------------------------------------------------- /cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/flowBoilingCHT_AR1_water_q100k/twoPhase/system/topoSetDict -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/Allclean -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/Allrun -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/constant/fluid/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/constant/fluid/transportProperties -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/constant/fluid/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/constant/fluid/turbulenceProperties -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/constant/g -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/constant/regionProperties -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/of_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/of_job.sh -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/orig.0/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/orig.0/fluid/T -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/orig.0/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/orig.0/fluid/U -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/orig.0/fluid/alpha.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/orig.0/fluid/alpha.liquid -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/orig.0/fluid/mDot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/orig.0/fluid/mDot -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/orig.0/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/orig.0/fluid/p -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/orig.0/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/orig.0/fluid/p_rgh -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/controlDict -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/controlDict.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/controlDict.tp -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fluid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fluid/blockMeshDict -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fluid/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fluid/controlDict -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fluid/decomposeParDict -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fluid/fvSchemes -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fluid/fvSchemes.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fluid/fvSchemes.tp -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fluid/fvSolution -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fluid/fvSolution.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fluid/fvSolution.tp -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fluid/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fluid/setFieldsDict -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fvSchemes -------------------------------------------------------------------------------- /cases/mukherjee2011/singlePhase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/singlePhase/system/fvSolution -------------------------------------------------------------------------------- /cases/mukherjee2011/twoPhase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/twoPhase/Allclean -------------------------------------------------------------------------------- /cases/mukherjee2011/twoPhase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/twoPhase/Allrun -------------------------------------------------------------------------------- /cases/mukherjee2011/twoPhase/of_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/mukherjee2011/twoPhase/of_job.sh -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/T -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/U -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/alpha.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/alpha.liquid -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/mDot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/mDot -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/p -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/fluid/p_rgh -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/heater/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/heater/T -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/heater/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/heater/p -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/solid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/solid/T -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/0.orig/solid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/0.orig/solid/p -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/Allclean -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/Allrun -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/fluid/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/fluid/g -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/fluid/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/fluid/transportProperties -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/fluid/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/fluid/turbulenceProperties -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/g -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/heater/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/heater/radiationProperties -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/heater/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/heater/thermophysicalProperties -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/regionProperties -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/solid/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/solid/radiationProperties -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/constant/solid/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/constant/solid/thermophysicalProperties -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/of_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/of_job.sh -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/simSetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/simSetup -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/blockMeshDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/controlDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/controlDict.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/controlDict.sp -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/controlDict.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/controlDict.tp -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/decomposeParDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSchemes -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSchemes.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSchemes.tp -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSolution -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSolution.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSolution.sp -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSolution.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/fvSolution.tp -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fluid/setAlphaFieldDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fvSchemes -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/fvSolution -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/heater/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/heater/decomposeParDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvOptions -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvOptions.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvOptions.sp -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvOptions.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvOptions.tp -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvSchemes -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/heater/fvSolution -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/meshQualityDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/snappyHexMeshDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/solid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/solid/decomposeParDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/solid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/solid/fvSchemes -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/solid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/solid/fvSolution -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/singlePhase/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/singlePhase/system/topoSetDict -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/twoPhase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/twoPhase/Allclean -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/twoPhase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/twoPhase/Allrun -------------------------------------------------------------------------------- /cases/nucleateBoiling_BuresSato/twoPhase/of_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/nucleateBoiling_BuresSato/twoPhase/of_job.sh -------------------------------------------------------------------------------- /cases/scrivenWedge/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/0.orig/fluid/T -------------------------------------------------------------------------------- /cases/scrivenWedge/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/0.orig/fluid/U -------------------------------------------------------------------------------- /cases/scrivenWedge/0.orig/fluid/alpha.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/0.orig/fluid/alpha.liquid -------------------------------------------------------------------------------- /cases/scrivenWedge/0.orig/fluid/mDot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/0.orig/fluid/mDot -------------------------------------------------------------------------------- /cases/scrivenWedge/0.orig/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/0.orig/fluid/p_rgh -------------------------------------------------------------------------------- /cases/scrivenWedge/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/Allclean -------------------------------------------------------------------------------- /cases/scrivenWedge/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/Allrun -------------------------------------------------------------------------------- /cases/scrivenWedge/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/T01.csv -------------------------------------------------------------------------------- /cases/scrivenWedge/constant/fluid/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/constant/fluid/g -------------------------------------------------------------------------------- /cases/scrivenWedge/constant/fluid/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/constant/fluid/transportProperties -------------------------------------------------------------------------------- /cases/scrivenWedge/constant/fluid/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/constant/fluid/turbulenceProperties -------------------------------------------------------------------------------- /cases/scrivenWedge/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/constant/g -------------------------------------------------------------------------------- /cases/scrivenWedge/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/constant/regionProperties -------------------------------------------------------------------------------- /cases/scrivenWedge/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/constant/transportProperties -------------------------------------------------------------------------------- /cases/scrivenWedge/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/constant/turbulenceProperties -------------------------------------------------------------------------------- /cases/scrivenWedge/python/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/python/data.dat -------------------------------------------------------------------------------- /cases/scrivenWedge/python/plotBenchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/python/plotBenchmark.py -------------------------------------------------------------------------------- /cases/scrivenWedge/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/controlDict -------------------------------------------------------------------------------- /cases/scrivenWedge/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/decomposeParDict -------------------------------------------------------------------------------- /cases/scrivenWedge/system/fluid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/fluid/blockMeshDict -------------------------------------------------------------------------------- /cases/scrivenWedge/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/fluid/decomposeParDict -------------------------------------------------------------------------------- /cases/scrivenWedge/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/fluid/fvSchemes -------------------------------------------------------------------------------- /cases/scrivenWedge/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/fluid/fvSolution -------------------------------------------------------------------------------- /cases/scrivenWedge/system/fluid/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/fluid/setAlphaFieldDict -------------------------------------------------------------------------------- /cases/scrivenWedge/system/fluid/setFieldfromTableDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/fluid/setFieldfromTableDict -------------------------------------------------------------------------------- /cases/scrivenWedge/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/fvSchemes -------------------------------------------------------------------------------- /cases/scrivenWedge/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/scrivenWedge/system/fvSolution -------------------------------------------------------------------------------- /cases/stefanProblem/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/0.orig/fluid/T -------------------------------------------------------------------------------- /cases/stefanProblem/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/0.orig/fluid/U -------------------------------------------------------------------------------- /cases/stefanProblem/0.orig/fluid/alpha.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/0.orig/fluid/alpha.liquid -------------------------------------------------------------------------------- /cases/stefanProblem/0.orig/fluid/mDot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/0.orig/fluid/mDot -------------------------------------------------------------------------------- /cases/stefanProblem/0.orig/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/0.orig/fluid/p_rgh -------------------------------------------------------------------------------- /cases/stefanProblem/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/Allclean -------------------------------------------------------------------------------- /cases/stefanProblem/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/Allrun -------------------------------------------------------------------------------- /cases/stefanProblem/constant/fluid/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/constant/fluid/transportProperties -------------------------------------------------------------------------------- /cases/stefanProblem/constant/fluid/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/constant/fluid/turbulenceProperties -------------------------------------------------------------------------------- /cases/stefanProblem/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/constant/g -------------------------------------------------------------------------------- /cases/stefanProblem/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/constant/regionProperties -------------------------------------------------------------------------------- /cases/stefanProblem/python/T0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/python/T0.csv -------------------------------------------------------------------------------- /cases/stefanProblem/python/analytical.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/python/analytical.csv -------------------------------------------------------------------------------- /cases/stefanProblem/python/initPos.H: -------------------------------------------------------------------------------- 1 | xpos 0.0000745014; -------------------------------------------------------------------------------- /cases/stefanProblem/python/plotBenchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/python/plotBenchmark.py -------------------------------------------------------------------------------- /cases/stefanProblem/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/python/setup.py -------------------------------------------------------------------------------- /cases/stefanProblem/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/controlDict -------------------------------------------------------------------------------- /cases/stefanProblem/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/decomposeParDict -------------------------------------------------------------------------------- /cases/stefanProblem/system/fluid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/fluid/blockMeshDict -------------------------------------------------------------------------------- /cases/stefanProblem/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/fluid/decomposeParDict -------------------------------------------------------------------------------- /cases/stefanProblem/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/fluid/fvSchemes -------------------------------------------------------------------------------- /cases/stefanProblem/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/fluid/fvSolution -------------------------------------------------------------------------------- /cases/stefanProblem/system/fluid/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/fluid/setAlphaFieldDict -------------------------------------------------------------------------------- /cases/stefanProblem/system/fluid/setFieldfromTableDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/fluid/setFieldfromTableDict -------------------------------------------------------------------------------- /cases/stefanProblem/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/fvSchemes -------------------------------------------------------------------------------- /cases/stefanProblem/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/stefanProblem/system/fvSolution -------------------------------------------------------------------------------- /cases/suckingInterface/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/0.orig/fluid/T -------------------------------------------------------------------------------- /cases/suckingInterface/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/0.orig/fluid/U -------------------------------------------------------------------------------- /cases/suckingInterface/0.orig/fluid/alpha.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/0.orig/fluid/alpha.liquid -------------------------------------------------------------------------------- /cases/suckingInterface/0.orig/fluid/mDot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/0.orig/fluid/mDot -------------------------------------------------------------------------------- /cases/suckingInterface/0.orig/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/0.orig/fluid/p_rgh -------------------------------------------------------------------------------- /cases/suckingInterface/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/Allclean -------------------------------------------------------------------------------- /cases/suckingInterface/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/Allrun -------------------------------------------------------------------------------- /cases/suckingInterface/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/T01.csv -------------------------------------------------------------------------------- /cases/suckingInterface/constant/fluid/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/constant/fluid/transportProperties -------------------------------------------------------------------------------- /cases/suckingInterface/constant/fluid/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/constant/fluid/turbulenceProperties -------------------------------------------------------------------------------- /cases/suckingInterface/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/constant/g -------------------------------------------------------------------------------- /cases/suckingInterface/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/constant/regionProperties -------------------------------------------------------------------------------- /cases/suckingInterface/python/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/python/data.dat -------------------------------------------------------------------------------- /cases/suckingInterface/python/plotBenchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/python/plotBenchmark.py -------------------------------------------------------------------------------- /cases/suckingInterface/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/controlDict -------------------------------------------------------------------------------- /cases/suckingInterface/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/decomposeParDict -------------------------------------------------------------------------------- /cases/suckingInterface/system/fluid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/fluid/blockMeshDict -------------------------------------------------------------------------------- /cases/suckingInterface/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/fluid/decomposeParDict -------------------------------------------------------------------------------- /cases/suckingInterface/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/fluid/fvSchemes -------------------------------------------------------------------------------- /cases/suckingInterface/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/fluid/fvSolution -------------------------------------------------------------------------------- /cases/suckingInterface/system/fluid/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/fluid/setAlphaFieldDict -------------------------------------------------------------------------------- /cases/suckingInterface/system/fluid/setFieldfromTableDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/fluid/setFieldfromTableDict -------------------------------------------------------------------------------- /cases/suckingInterface/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/fvSchemes -------------------------------------------------------------------------------- /cases/suckingInterface/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/cases/suckingInterface/system/fvSolution -------------------------------------------------------------------------------- /doc/boilingFoam.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/doc/boilingFoam.pdf -------------------------------------------------------------------------------- /etc/buildList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/etc/buildList -------------------------------------------------------------------------------- /etc/dicts/controlDict.postFunctionObjects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/etc/dicts/controlDict.postFunctionObjects -------------------------------------------------------------------------------- /src/functionObjects/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/Make/files -------------------------------------------------------------------------------- /src/functionObjects/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/Make/options -------------------------------------------------------------------------------- /src/functionObjects/bubbleDestroyer/bubbleDestroyer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleDestroyer/bubbleDestroyer.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleDestroyer/bubbleDestroyer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleDestroyer/bubbleDestroyer.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/activationModels/activationModel/activationModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/activationModels/activationModel/activationModel.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/activationModels/activationModel/activationModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/activationModels/activationModel/activationModel.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/activationModels/liquidSuperheatingThreshold/liquidSuperheatingThreshold.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/activationModels/liquidSuperheatingThreshold/liquidSuperheatingThreshold.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/activationModels/liquidSuperheatingThreshold/liquidSuperheatingThreshold.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/activationModels/liquidSuperheatingThreshold/liquidSuperheatingThreshold.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/bubbleGenerator.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/bubbleGenerator.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/bubbleGenerator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/bubbleGenerator.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/locationModels/fixedSites/fixedSites.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/locationModels/fixedSites/fixedSites.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/locationModels/fixedSites/fixedSites.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/locationModels/fixedSites/fixedSites.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/locationModels/locationModel/locationModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/locationModels/locationModel/locationModel.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/locationModels/locationModel/locationModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/locationModels/locationModel/locationModel.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/locationModels/patchSites/patchSites.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/locationModels/patchSites/patchSites.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/locationModels/patchSites/patchSites.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/locationModels/patchSites/patchSites.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/nucleationModels/fixedRadius/fixedRadius.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/nucleationModels/fixedRadius/fixedRadius.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/nucleationModels/fixedRadius/fixedRadius.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/nucleationModels/fixedRadius/fixedRadius.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/nucleationModels/nucleationModel/nucleationModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/nucleationModels/nucleationModel/nucleationModel.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleGenerator/nucleationModels/nucleationModel/nucleationModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleGenerator/nucleationModels/nucleationModel/nucleationModel.H -------------------------------------------------------------------------------- /src/functionObjects/bubbleTracker/bubbleTracker.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleTracker/bubbleTracker.C -------------------------------------------------------------------------------- /src/functionObjects/bubbleTracker/bubbleTracker.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/bubbleTracker/bubbleTracker.H -------------------------------------------------------------------------------- /src/functionObjects/postBoiling/postBoiling.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/postBoiling/postBoiling.C -------------------------------------------------------------------------------- /src/functionObjects/postBoiling/postBoiling.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/functionObjects/postBoiling/postBoiling.H -------------------------------------------------------------------------------- /src/fvPatchFields/turbulentTemperatureCoupledBoilingMicrolayer/turbulentTemperatureCoupledBoilingMicrolayerFvPatchScalarField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/fvPatchFields/turbulentTemperatureCoupledBoilingMicrolayer/turbulentTemperatureCoupledBoilingMicrolayerFvPatchScalarField.C -------------------------------------------------------------------------------- /src/fvPatchFields/turbulentTemperatureCoupledBoilingMicrolayer/turbulentTemperatureCoupledBoilingMicrolayerFvPatchScalarField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/fvPatchFields/turbulentTemperatureCoupledBoilingMicrolayer/turbulentTemperatureCoupledBoilingMicrolayerFvPatchScalarField.H -------------------------------------------------------------------------------- /src/geometricVoF/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/Make/files -------------------------------------------------------------------------------- /src/geometricVoF/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/Make/options -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.C -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.H -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/lnInclude/isoAdvectionBoiling.C: -------------------------------------------------------------------------------- 1 | ../isoAdvectionBoiling.C -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/lnInclude/isoAdvectionBoiling.H: -------------------------------------------------------------------------------- 1 | ../isoAdvectionBoiling.H -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/lnInclude/isoAdvectionTemplatesBoiling.C: -------------------------------------------------------------------------------- 1 | ../isoAdvectionTemplatesBoiling.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCell.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutCell/cutCell.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCell.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutCell/cutCell.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCellIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutCell/cutCellIso.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCellIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutCell/cutCellIso.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCellPLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutCell/cutCellPLIC.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCellPLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutCell/cutCellPLIC.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutFace/cutFace.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutFace/cutFace.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFaceAdvect.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutFace/cutFaceAdvect.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFaceAdvect.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutFace/cutFaceAdvect.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFaceIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutFace/cutFaceIso.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFaceIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutFace/cutFaceIso.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFacePLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutFace/cutFacePLIC.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFacePLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/cellCuts/cutFace/cutFacePLIC.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructedDistanceFunction/reconstructedDistanceFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructedDistanceFunction/reconstructedDistanceFunction.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructedDistanceFunction/reconstructedDistanceFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructedDistanceFunction/reconstructedDistanceFunction.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/reconstructionSchemes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/reconstructionSchemes.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/reconstructionSchemes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/reconstructionSchemes.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/reconstructionSchemesNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/reconstructionSchemes/reconstructionSchemesNew.C -------------------------------------------------------------------------------- /src/geometricVoF/sampledInterface/sampledInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/sampledInterface/sampledInterface.C -------------------------------------------------------------------------------- /src/geometricVoF/sampledInterface/sampledInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/sampledInterface/sampledInterface.H -------------------------------------------------------------------------------- /src/geometricVoF/sampledInterface/sampledInterfaceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/sampledInterface/sampledInterfaceTemplates.C -------------------------------------------------------------------------------- /src/geometricVoF/surfaceIterators/surfaceIteratorIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/surfaceIterators/surfaceIteratorIso.C -------------------------------------------------------------------------------- /src/geometricVoF/surfaceIterators/surfaceIteratorIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/surfaceIterators/surfaceIteratorIso.H -------------------------------------------------------------------------------- /src/geometricVoF/surfaceIterators/surfaceIteratorPLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/surfaceIterators/surfaceIteratorPLIC.C -------------------------------------------------------------------------------- /src/geometricVoF/surfaceIterators/surfaceIteratorPLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/geometricVoF/surfaceIterators/surfaceIteratorPLIC.H -------------------------------------------------------------------------------- /src/interfaceProperties/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/Make/files -------------------------------------------------------------------------------- /src/interfaceProperties/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/Make/options -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/curvatureModel/curvatureModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/curvatureModel/curvatureModel.C -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/curvatureModel/curvatureModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/curvatureModel/curvatureModel.H -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/curvatureModel/curvatureModelNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/curvatureModel/curvatureModelNew.C -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/fixedCurvature/fixedCurvature.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/fixedCurvature/fixedCurvature.C -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/fixedCurvature/fixedCurvature.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/fixedCurvature/fixedCurvature.H -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/gradAlphaCurvature/gradAlphaCurvature.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/gradAlphaCurvature/gradAlphaCurvature.C -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/gradAlphaCurvature/gradAlphaCurvature.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/gradAlphaCurvature/gradAlphaCurvature.H -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/gradRDFCurvature/gradRDFCurvature.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/gradRDFCurvature/gradRDFCurvature.C -------------------------------------------------------------------------------- /src/interfaceProperties/curvatureModels/gradRDFCurvature/gradRDFCurvature.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/curvatureModels/gradRDFCurvature/gradRDFCurvature.H -------------------------------------------------------------------------------- /src/interfaceProperties/interfacePropertiesBoiling.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/interfacePropertiesBoiling.C -------------------------------------------------------------------------------- /src/interfaceProperties/interfacePropertiesBoiling.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmuni/boilingFoam-PUBLIC/HEAD/src/interfaceProperties/interfacePropertiesBoiling.H --------------------------------------------------------------------------------