├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── Allwclean ├── Allwmake ├── LICENSE ├── README.md ├── apps ├── benchmark │ ├── advectorVoF │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── advectorVoF.C │ │ ├── alphaCourantNo.H │ │ ├── alphaSuSp.H │ │ ├── createFields.H │ │ └── setDeltaT.H │ └── reconstructInterface │ │ ├── Make │ │ ├── files │ │ └── options │ │ └── reconstructInterface.C ├── initAlphaField │ ├── Make │ │ ├── files │ │ └── options │ ├── initAlphaField.C │ └── initAlphaFieldDict └── setFieldfromTable │ ├── Make │ ├── files │ └── options │ ├── setFieldfromTable.C │ └── setFieldfromTableDict ├── conftest.py ├── get-gmsh.sh ├── patches ├── multiRegionAMR.patch ├── surfaceFieldValue.patch └── tableBase.patch ├── pytest.ini ├── run ├── Reorientation │ ├── 0.orig │ │ ├── U │ │ ├── alpha.phase1 │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── Allrun-parallel │ ├── constant │ │ ├── RASProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── interfaceModels │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── surfaceElevation.py │ ├── system │ │ ├── blockMeshDict │ │ ├── changeDictionaryDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── refineMeshDict │ │ ├── setAlphaFieldDict │ │ ├── setFieldsDict │ │ └── topoSetDict │ └── test_Reorientation.py ├── benchmark │ ├── acceleration │ │ └── tiltedBox │ │ │ ├── genCases.py │ │ │ ├── getResults.py │ │ │ ├── results.csv │ │ │ ├── results.html │ │ │ ├── runAll.sh │ │ │ └── tiltedBox │ │ │ ├── 0.orig │ │ │ ├── U │ │ │ ├── alpha.org │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ ├── prepareCase │ │ │ ├── spuriousUCloseUp.pvsm │ │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── initAlphaFieldDict │ │ │ └── isoSurfDict │ │ │ └── test_tiltedBox.py │ ├── phaseChange │ │ ├── scriven3D │ │ │ ├── Scriven_isoSurface.csv │ │ │ ├── Scriven_isoSurface.pdf │ │ │ ├── Scriven_plicRDF.csv │ │ │ ├── Scriven_plicRDF.pdf │ │ │ ├── genCases.py │ │ │ ├── getData.py │ │ │ ├── getResults.py │ │ │ ├── init │ │ │ │ ├── T01.csv │ │ │ │ ├── data.dat │ │ │ │ └── scriven.py │ │ │ ├── plotData.py │ │ │ ├── runAll.sh │ │ │ └── scriven3D │ │ │ │ ├── 0.orig │ │ │ │ └── fluid │ │ │ │ │ ├── T │ │ │ │ │ ├── T.air │ │ │ │ │ ├── T.water │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── Allrun.slurm │ │ │ │ ├── T01.csv │ │ │ │ ├── constant │ │ │ │ ├── fluid │ │ │ │ │ ├── phaseChangeProperties │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ │ ├── thermophysicalProperties.water │ │ │ │ │ └── turbulenceProperties │ │ │ │ ├── g │ │ │ │ └── regionProperties │ │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fluid │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── initAlphaFieldDict │ │ │ │ │ ├── setFieldTableDict │ │ │ │ │ ├── setFieldfromTableDict │ │ │ │ │ └── setFieldsDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ │ └── test_scriven3D.py │ │ ├── scrivenWedge │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Scriven_isoSurface.csv │ │ │ ├── Scriven_isoSurface.pdf │ │ │ ├── Scriven_plicRDF.csv │ │ │ ├── Scriven_plicRDF.pdf │ │ │ ├── genCases.py │ │ │ ├── init │ │ │ │ ├── T01.csv │ │ │ │ ├── data.dat │ │ │ │ └── scriven.py │ │ │ ├── log │ │ │ ├── plotInterface.py │ │ │ ├── rmCases │ │ │ ├── runAll.sh │ │ │ └── scrivenWedge │ │ │ │ ├── 0.orig │ │ │ │ └── fluid │ │ │ │ │ ├── T │ │ │ │ │ ├── T.air │ │ │ │ │ ├── T.water │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── Allrun.slurm │ │ │ │ ├── T01.csv │ │ │ │ ├── constant │ │ │ │ ├── fluid │ │ │ │ │ ├── phaseChangeProperties │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ │ ├── thermophysicalProperties.water │ │ │ │ │ └── turbulenceProperties │ │ │ │ ├── g │ │ │ │ └── regionProperties │ │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fluid │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── initAlphaFieldDict │ │ │ │ │ ├── setFieldfromTableDict │ │ │ │ │ └── setFieldsDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ │ └── test_scrivenWedge.py │ │ ├── stefanProblem │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── genCases.py │ │ │ ├── getData.py │ │ │ ├── init │ │ │ │ ├── data.csv │ │ │ │ ├── startTime.py │ │ │ │ └── stefanProblem.py │ │ │ ├── plotData.py │ │ │ ├── results │ │ │ │ ├── stefanProblem.csv │ │ │ │ ├── stefan_isoSurface.pdf │ │ │ │ ├── stefan_isoSurface.png │ │ │ │ ├── stefan_plicRDF.pdf │ │ │ │ └── stefan_plicRDF.png │ │ │ ├── rmCases │ │ │ ├── runAll.sh │ │ │ └── stefanProblem │ │ │ │ ├── 0.orig │ │ │ │ └── fluid │ │ │ │ │ ├── T │ │ │ │ │ ├── T.air │ │ │ │ │ ├── T.water │ │ │ │ │ ├── U │ │ │ │ │ ├── alpha.water │ │ │ │ │ ├── p │ │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── fluid │ │ │ │ │ ├── phaseChangeProperties │ │ │ │ │ ├── polyMesh │ │ │ │ │ │ ├── boundary │ │ │ │ │ │ ├── faces │ │ │ │ │ │ ├── neighbour │ │ │ │ │ │ ├── owner │ │ │ │ │ │ └── points │ │ │ │ │ ├── thermophysicalProperties │ │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ │ ├── thermophysicalProperties.water │ │ │ │ │ └── turbulenceProperties │ │ │ │ ├── g │ │ │ │ └── regionProperties │ │ │ │ ├── system │ │ │ │ ├── controlDict │ │ │ │ ├── fluid │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ ├── fvSolution │ │ │ │ │ ├── initAlphaFieldDict │ │ │ │ │ └── setFieldsDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ │ └── test_stefanProblem.py │ │ └── suckingInterface │ │ │ ├── genCases.py │ │ │ ├── getData.py │ │ │ ├── init │ │ │ ├── T01.csv │ │ │ ├── T01.dat │ │ │ ├── T06.csv │ │ │ ├── T11.csv │ │ │ ├── T11.dat │ │ │ ├── data.dat │ │ │ └── suckingInterface.py │ │ │ ├── plotData.py │ │ │ ├── results │ │ │ ├── suckingInterface.csv │ │ │ ├── suckingInterface_isoSurface.pdf │ │ │ ├── suckingInterface_isoSurface.png │ │ │ ├── suckingInterface_plicRDF.pdf │ │ │ └── suckingInterface_plicRDF.png │ │ │ ├── runAll.sh │ │ │ └── suckingInterface │ │ │ ├── 0.orig │ │ │ └── fluid │ │ │ │ ├── T │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── U │ │ │ │ ├── alpha.water │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── T01.csv │ │ │ ├── constant │ │ │ ├── fluid │ │ │ │ ├── phaseChangeProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.water │ │ │ │ └── turbulenceProperties │ │ │ ├── g │ │ │ └── regionProperties │ │ │ ├── system │ │ │ ├── controlDict │ │ │ ├── fluid │ │ │ │ ├── blockMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── setFieldfromTableDict │ │ │ │ └── setFieldsDict │ │ │ └── fvSolution │ │ │ └── test_suckingInterface.py │ └── surfaceTension │ │ ├── advectedCircle │ │ ├── advectCircle_hex.pdf │ │ ├── advectCircle_tri.pdf │ │ ├── advectedCircle │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha.water │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Allrun_Slurm │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── changeDictionaryDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── isoSurfDict │ │ │ │ ├── sampleDict │ │ │ │ ├── setAlphaFieldDict │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ │ └── test_advectedCircle.py │ │ ├── advectedCircleTri │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha.water │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Allrun_Slurm │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── changeDictionaryDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── isoSurfDict │ │ │ │ ├── sampleDict │ │ │ │ ├── setAlphaFieldDict │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ │ ├── test_advectedCircleTri.py │ │ │ ├── triSquare.geo │ │ │ └── triSquare.msh │ │ ├── curv_error_hex.csv │ │ ├── curv_error_tri.csv │ │ ├── genCases.py │ │ ├── genCasesTri.py │ │ ├── getResults.py │ │ └── runAll.sh │ │ ├── curvatureCircle │ │ ├── curv2d_hex.csv │ │ ├── curv2d_hex.pdf │ │ ├── curv2d_tri.csv │ │ ├── curv2d_tri.pdf │ │ ├── curvature2D │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha1 │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── gradAlpha_error.dat │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── changeDictionaryDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── perfectVOFDict │ │ │ │ ├── setAlphaFieldDict │ │ │ │ └── topoSetDict │ │ │ ├── test_curvature2D.py │ │ │ ├── touch │ │ │ └── triSquare.geo │ │ ├── curvature2DTri │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha1 │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── gradAlpha_error.dat │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── changeDictionaryDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── perfectVOFDict │ │ │ │ ├── setAlphaFieldDict │ │ │ │ └── topoSetDict │ │ │ ├── test_curvature2DTri.py │ │ │ ├── triSquare.geo │ │ │ └── triSquare.msh │ │ ├── genCases.py │ │ ├── genCasesTri.py │ │ ├── getResults.py │ │ └── runAll.sh │ │ ├── curvatureSphere │ │ ├── curv3d_hex.csv │ │ ├── curv3d_hex.pdf │ │ ├── curv3d_tri.csv │ │ ├── curv3d_tri.pdf │ │ ├── curvature3D │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha1 │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Allrun_Slurm │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── changeDictionaryDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── perfectVOFDict │ │ │ │ ├── setAlphaFieldDict │ │ │ │ └── topoSetDict │ │ │ ├── test_curvature3D.py │ │ │ └── triSquare.geo │ │ ├── curvature3DTri │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha1 │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Allrun_Slurm │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── changeDictionaryDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── perfectVOFDict │ │ │ │ ├── setAlphaFieldDict │ │ │ │ └── topoSetDict │ │ │ ├── test_curvature3DTri.py │ │ │ ├── triBlock.geo │ │ │ └── triBlock.msh │ │ ├── genCases.py │ │ ├── genCasesTri.py │ │ ├── getResults.py │ │ ├── results.html │ │ ├── runAll.sh │ │ └── triBlock.geo │ │ ├── curvatureWall │ │ ├── curv2d_wall_RDF_hex.csv │ │ ├── curv2d_wall_RDF_hex.pdf │ │ ├── curv2d_wall_RDF_tri.csv │ │ ├── curv2d_wall_RDF_tri.pdf │ │ ├── curv2d_wall_fitParaboloid_hex.csv │ │ ├── curv2d_wall_fitParaboloid_hex.pdf │ │ ├── curv2d_wall_fitParaboloid_tri.csv │ │ ├── curv2d_wall_fitParaboloid_tri.pdf │ │ ├── curv2d_wall_gradAlpha_hex.csv │ │ ├── curv2d_wall_gradAlpha_hex.pdf │ │ ├── curv2d_wall_gradAlpha_tri.csv │ │ ├── curv2d_wall_gradAlpha_tri.pdf │ │ ├── curvatureWall │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha1 │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ └── pc │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── isoSurfDict │ │ │ │ ├── sampleDict │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ │ └── test_curvatureWall.py │ │ ├── curvatureWallTri │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha1 │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ └── pc │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── changeDictionaryDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── perfectVOFDict │ │ │ │ ├── setAlphaFieldDict │ │ │ │ └── topoSetDict │ │ │ ├── test_curvatureWallTri.py │ │ │ ├── triSquare.geo │ │ │ └── triSquare.msh │ │ ├── genCases.py │ │ ├── genCasesTri.py │ │ ├── getResults.py │ │ └── runAll.sh │ │ ├── sinWave │ │ ├── analyticalWave.dat │ │ ├── genCases.py │ │ ├── getResults.py │ │ ├── resolutionEquationSurfaceV4.m │ │ ├── runAll.sh │ │ ├── sinWave │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── alpha.water │ │ │ │ ├── p │ │ │ │ ├── p_rgh │ │ │ │ └── pc │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── initAlphaFieldDict │ │ │ │ ├── isoSurfDict │ │ │ │ ├── sampleDict │ │ │ │ ├── setAlphaFieldDict │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ │ └── test_sinWave.py │ │ ├── sinWaveHex_isoSurface.csv │ │ ├── sinWaveHex_isoSurface.pdf │ │ ├── sinWaveHex_plicRDF.csv │ │ ├── sinWaveHex_plicRDF.pdf │ │ └── sinwave_prosperetti.py │ │ └── sinWaveTri │ │ ├── analyticalWave.dat │ │ ├── genCases.py │ │ ├── getResults.py │ │ ├── runAll.sh │ │ ├── sinWaveTri │ │ ├── 0.orig │ │ │ ├── U │ │ │ ├── alpha.water │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── pc │ │ ├── Allclean │ │ ├── Allrun │ │ ├── Allrun_Slurm │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── changeDictionaryDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── initAlphaFieldDict │ │ │ ├── isoSurfDict │ │ │ ├── sampleDict │ │ │ ├── setAlphaFieldDict │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ │ ├── test_sinWaveTri.py │ │ ├── triSquare.geo │ │ └── triSquare.msh │ │ ├── sinWaveTri_plicRDF.pdf │ │ ├── sinwaveTri.csv │ │ └── sinwave_prosperetti.py ├── coffeePot │ ├── 0.orig │ │ ├── fluid │ │ │ ├── T │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── U │ │ │ ├── alpha.water │ │ │ ├── p │ │ │ └── p_rgh │ │ └── solid │ │ │ ├── T │ │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── coffee_pot_fluid.fms │ ├── coffee_pot_solid.fms │ ├── constant │ │ ├── fluid │ │ │ ├── phaseChangeProperties │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ └── turbulenceProperties │ │ ├── g │ │ ├── regionProperties │ │ └── solid │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ ├── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fluid │ │ │ ├── blockMeshDict │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── initAlphaFieldDict │ │ │ ├── setFieldTableDict │ │ │ └── setFieldsDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshDict │ │ ├── meshDict.fluid │ │ ├── meshDict.solid │ │ └── solid │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── test_coffeePot.py │ └── thermo │ │ ├── cp.dat │ │ ├── kappa.dat │ │ └── mu.dat ├── damBreakWithObstacle │ ├── 0.orig │ │ ├── U │ │ ├── alpha.water │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── setFieldsDict │ │ └── topoSetDict │ └── test_damBreakWithObstacle.py ├── depthCharge2D │ ├── 0.orig │ │ ├── T │ │ ├── T.air │ │ ├── T.water │ │ ├── U │ │ ├── air.air │ │ ├── alpha.water │ │ ├── p │ │ ├── p_rgh │ │ └── steam.air │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.water │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── test_depthCharge2D.py └── velocityStaticCircle │ ├── 0.orig │ ├── U │ ├── alpha.phase1 │ ├── p │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── Allrun.slurm │ ├── AlphaInit │ └── AlphaInit.vtk │ ├── constant │ ├── dynamicMeshDict │ ├── g │ ├── transportProperties │ └── turbulenceProperties │ ├── system │ ├── blockMeshDict │ ├── changeDictionaryDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── initAlphaFieldDict │ ├── perfectVOFDict │ ├── setAlphaFieldDict │ └── topoSetDict │ └── test_velocityStaticCircle.py ├── scripts ├── saturationsProperties_polyFit.py └── thermo_polyFit.py ├── solver ├── compressibleInterFlow │ ├── Make │ │ ├── files │ │ └── options │ ├── TEqn.H │ ├── UEqn.H │ ├── YEqns.H │ ├── alphaControls.H │ ├── alphaCourantNo.H │ ├── alphaEqn.H │ ├── alphaSuSp.H │ ├── compressibleAlphaEqnSubCycle.H │ ├── compressibleInterFlow.C │ ├── correctPhi.H │ ├── createAlphaFluxes.H │ ├── createFields.H │ ├── pEqn.H │ ├── rhofs.H │ └── setDeltaT.H ├── interFlow │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── alphaControls.H │ ├── alphaCourantNo.H │ ├── alphaEqn.H │ ├── alphaEqnSubCycle.H │ ├── alphaSuSp.H │ ├── correctPhi.H │ ├── createFields.H │ ├── createIsoAdvection.H │ ├── initCorrectPhi.H │ ├── interFlow.C │ ├── pEqn.H │ ├── rhofs.H │ └── setDeltaT.H └── multiRegionPhaseChangeFlow │ ├── Allwmake │ ├── Make │ ├── files │ └── options │ ├── createFields.H │ ├── createMeshes.H │ ├── createMeshesPostProcess.H │ ├── fluid │ ├── TEqn.H │ ├── UEqn.H │ ├── YEqns.H │ ├── alphaControls.H │ ├── alphaEqn.H │ ├── alphaSuSp.H │ ├── compressibleAlphaEqnSubCycle.H │ ├── compressibleContinuityErrors.H │ ├── correctMass.H │ ├── correctPhi.H │ ├── createFluidDyMMeshes.H │ ├── createFluidFields.H │ ├── initContinuityErrs.H │ ├── multiCourantNo.C │ ├── multiCourantNo.H │ ├── multiphaseMultiRegionCourantNo.H │ ├── pEqn.H │ ├── readFluidMultiRegionPIMPLEControls.H │ ├── rhofs.H │ ├── setRegionFluidFields.H │ └── solveFluid.H │ ├── include │ ├── setInitialMultiRegionDeltaT.H │ └── setMultiRegionDeltaT.H │ ├── multiRegionPhaseChangeFlow.C │ ├── readPIMPLEControls.H │ └── solid │ ├── createSolidFields.H │ ├── createSolidMeshes.H │ ├── readSolidMultiRegionPIMPLEControls.H │ ├── readSolidTimeControls.H │ ├── setRegionSolidFields.H │ ├── solidRegionDiffNo.C │ ├── solidRegionDiffNo.H │ ├── solidRegionDiffusionNo.H │ └── solveSolid.H ├── src ├── VoF │ ├── Make │ │ ├── files │ │ └── options │ ├── advectionSchemes │ │ ├── MULES │ │ │ ├── MULESScheme.C │ │ │ └── MULESScheme.H │ │ ├── advectionSchemes.C │ │ ├── advectionSchemes.H │ │ ├── geoAdvection │ │ │ ├── geoAdvection.C │ │ │ ├── geoAdvection.H │ │ │ └── geoAdvectionTemplates.C │ │ ├── isoAdvection │ │ │ ├── isoAdvection.C │ │ │ ├── isoAdvection.H │ │ │ └── isoAdvectionTemplates.C │ │ └── newAdvectionSchemes.C │ ├── cellCuts │ │ ├── cutCell │ │ │ ├── cutCell.C │ │ │ ├── cutCell.H │ │ │ ├── cutCellImpFunc.C │ │ │ ├── cutCellImpFunc.H │ │ │ ├── cutCellIso.C │ │ │ ├── cutCellIso.H │ │ │ ├── cutCellPLIC.C │ │ │ └── cutCellPLIC.H │ │ └── cutFace │ │ │ ├── cutFace.C │ │ │ ├── cutFace.H │ │ │ ├── cutFaceAdvect.C │ │ │ ├── cutFaceAdvect.H │ │ │ ├── cutFaceImpFunc.C │ │ │ ├── cutFaceImpFunc.H │ │ │ ├── cutFaceIso.C │ │ │ ├── cutFaceIso.H │ │ │ ├── cutFacePLIC.C │ │ │ └── cutFacePLIC.H │ ├── implicitFunctions │ │ ├── composedFunction │ │ │ ├── composedFunctionImplicitFunction.C │ │ │ └── composedFunctionImplicitFunction.H │ │ ├── cylinder │ │ │ ├── cylinderImplicitFunction.C │ │ │ └── cylinderImplicitFunction.H │ │ ├── ellipsoid │ │ │ ├── ellipsoidImplicitFunction.C │ │ │ └── ellipsoidImplicitFunction.H │ │ ├── implicitFunction.C │ │ ├── implicitFunction.H │ │ ├── paraboloid │ │ │ ├── paraboloidImplicitFunction.C │ │ │ └── paraboloidImplicitFunction.H │ │ ├── plane │ │ │ ├── planeImplicitFunction.C │ │ │ └── planeImplicitFunction.H │ │ ├── sin │ │ │ ├── sinImplicitFunction.C │ │ │ └── sinImplicitFunction.H │ │ └── sphere │ │ │ ├── sphereImplicitFunction.C │ │ │ └── sphereImplicitFunction.H │ ├── markInterfaceRegion │ │ ├── markInterfaceRegion.C │ │ └── markInterfaceRegion.H │ ├── multiDimPolyFitter │ │ ├── leastSquareFitParabolid.C │ │ ├── leastSquareFitParabolid.H │ │ ├── leastSquareGrad.C │ │ ├── leastSquareGrad.H │ │ ├── leastSquareInterpolate.C │ │ ├── leastSquareInterpolate.H │ │ ├── multiDimPolyFitter.C │ │ ├── multiDimPolyFitter.H │ │ └── multiDimPolyFunctions │ │ │ ├── multiDimPolyFunctions.C │ │ │ ├── multiDimPolyFunctions.H │ │ │ ├── paraboloid.C │ │ │ ├── paraboloid.H │ │ │ ├── polyDegree1.C │ │ │ ├── polyDegree1.H │ │ │ ├── polyDegree2.C │ │ │ └── polyDegree2.H │ ├── reconstructedDistanceFunction │ │ ├── reconstructedDistanceFunction.C │ │ └── reconstructedDistanceFunction.H │ ├── reconstructionSchemes │ │ ├── isoSchemes │ │ │ ├── isoAlpha │ │ │ │ ├── isoAlpha.C │ │ │ │ └── isoAlpha.H │ │ │ └── isoSurface │ │ │ │ ├── isoSurface.C │ │ │ │ └── isoSurface.H │ │ ├── plicSchemes │ │ │ ├── gradAlpha │ │ │ │ ├── gradAlpha.C │ │ │ │ └── gradAlpha.H │ │ │ └── plicRDF │ │ │ │ ├── plicRDF.C │ │ │ │ └── plicRDF.H │ │ ├── reconstructionSchemes.C │ │ ├── reconstructionSchemes.H │ │ └── reconstructionSchemesNew.C │ ├── surfaceIterators │ │ ├── surfaceIteratorIso.C │ │ ├── surfaceIteratorIso.H │ │ ├── surfaceIteratorPLIC.C │ │ └── surfaceIteratorPLIC.H │ └── zoneDistribute │ │ ├── zoneDistribute.C │ │ ├── zoneDistribute.H │ │ ├── zoneDistributeI.H │ │ ├── zoneDistributePoints.C │ │ ├── zoneDistributePoints.H │ │ ├── zoneDistributePointsI.H │ │ └── zoneStencils │ │ ├── zoneCPCStencil.C │ │ ├── zoneCPCStencil.H │ │ ├── zoneCellStencils.C │ │ └── zoneCellStencils.H ├── boundaryConditions │ ├── Allwclean │ ├── Allwmake │ ├── dynContactAngleModel │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── dynamicAlphaContactAngleJiang │ │ │ ├── dynamicAlphaContactAngleJiangFvPatchScalarField.C │ │ │ └── dynamicAlphaContactAngleJiangFvPatchScalarField.H │ │ └── dynamicAlphaContactAngleVoxVoinov │ │ │ ├── dynamicAlphaContactAngleVoxVoinovFvPatchScalarField.C │ │ │ └── dynamicAlphaContactAngleVoxVoinovFvPatchScalarField.H │ └── dynContactAngleModelComp │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── dynamicAlphaContactAngleJiang │ │ ├── dynamicAlphaContactAngleJiangFvPatchScalarField.C │ │ └── dynamicAlphaContactAngleJiangFvPatchScalarField.H │ │ └── dynamicAlphaContactAngleVoxVoinov │ │ ├── compdynamicAlphaContactAngleVoxVoinovFvPatchScalarField.C │ │ └── compdynamicAlphaContactAngleVoxVoinovFvPatchScalarField.H ├── phaseChange │ ├── Make │ │ ├── files │ │ └── options │ ├── interfaceDiffFlux │ │ ├── explicitInterfaceDiffFlux │ │ │ ├── explicitInterfaceDiffFlux.C │ │ │ └── explicitInterfaceDiffFlux.H │ │ └── implicitInterfaceDiffFlux │ │ │ ├── implicitInterfaceDiffFlux.C │ │ │ └── implicitInterfaceDiffFlux.H │ ├── phaseChangeModels │ │ ├── energySourceTermModel │ │ │ ├── Schrage │ │ │ │ ├── Schrage.C │ │ │ │ └── Schrage.H │ │ │ ├── energySourceTermModel.C │ │ │ ├── energySourceTermModel.H │ │ │ ├── implicitGrad │ │ │ │ ├── implicitGrad.C │ │ │ │ └── implicitGrad.H │ │ │ ├── newEnergySourceTermModel.C │ │ │ └── selectedGradExplicit │ │ │ │ ├── selectedGradExplicit.C │ │ │ │ └── selectedGradExplicit.H │ │ ├── macroModels │ │ │ ├── directEvaporation │ │ │ │ ├── directEvaporation.C │ │ │ │ └── directEvaporation.H │ │ │ ├── macroModel.C │ │ │ ├── macroModel.H │ │ │ └── macroModels.C │ │ ├── massSourceTermModel │ │ │ ├── hardtWondra │ │ │ │ ├── hardtWondra.C │ │ │ │ └── hardtWondra.H │ │ │ ├── hardtWondraGasPhase │ │ │ │ ├── hardtWondraGasPhase.C │ │ │ │ └── hardtWondraGasPhase.H │ │ │ ├── massSourceTermModel.C │ │ │ ├── massSourceTermModel.H │ │ │ ├── newMassSourceTermModel.C │ │ │ └── noPhaseChange │ │ │ │ ├── noPhaseChange.C │ │ │ │ └── noPhaseChange.H │ │ └── singleComponentPhaseChange │ │ │ ├── singleComponentPhaseChange.C │ │ │ └── singleComponentPhaseChange.H │ └── saturationProperties │ │ └── singleComponentSatProp │ │ ├── ClausiusClapeyron │ │ ├── ClausiusClapeyron.C │ │ └── ClausiusClapeyron.H │ │ ├── newSingleComponentSatProp.C │ │ ├── singleComponentFunction │ │ ├── singleComponentFunction.C │ │ └── singleComponentFunction.H │ │ ├── singleComponentSatProp.C │ │ └── singleComponentSatProp.H ├── postProcessing │ ├── Make │ │ ├── files │ │ └── options │ ├── interface │ │ ├── interface.C │ │ ├── interface.H │ │ ├── interfaceTemplates.C │ │ ├── sampledInterface.C │ │ ├── sampledInterface.H │ │ └── sampledInterfaceTemplates.C │ ├── interfaceEnergyFluxes │ │ ├── interfaceEnergyFluxes.C │ │ └── interfaceEnergyFluxes.H │ ├── interfaceRegion │ │ ├── interfaceRegion.C │ │ └── interfaceRegion.H │ ├── reconstructionError │ │ ├── reconstructionError.C │ │ └── reconstructionError.H │ ├── superHeated │ │ ├── superHeated.C │ │ └── superHeated.H │ ├── thermalResiduals │ │ ├── thermalResiduals.C │ │ └── thermalResiduals.H │ ├── volumeFractionError │ │ ├── volumeFractionError.C │ │ └── volumeFractionError.H │ └── wallHeatFluxSolid │ │ ├── wallHeatFluxSolid.C │ │ └── wallHeatFluxSolid.H ├── surfaceForces │ ├── Make │ │ ├── files │ │ └── options │ ├── accelerationForceModel │ │ ├── accelerationForceModel.C │ │ ├── accelerationForceModel.H │ │ ├── accelerationForceModels.C │ │ └── gravity │ │ │ ├── gravity.C │ │ │ └── gravity.H │ ├── deltaFunctions │ │ ├── alphaCSF │ │ │ ├── alphaCSF.C │ │ │ └── alphaCSF.H │ │ ├── deltaFunctionModel.C │ │ ├── deltaFunctionModel.H │ │ └── newDeltaFunctionModel.C │ ├── surfaceForces.C │ ├── surfaceForces.H │ └── surfaceTensionForceModels │ │ ├── surfaceTensionForceModel │ │ ├── RDF │ │ │ ├── RDF.C │ │ │ └── RDF.H │ │ ├── constantCurvature │ │ │ ├── constantCurvature.C │ │ │ └── constantCurvature.H │ │ ├── fitParaboloid │ │ │ ├── fitParaboloid.C │ │ │ └── fitParaboloid.H │ │ ├── gradAlpha │ │ │ ├── gradAlpha.C │ │ │ └── gradAlpha.H │ │ ├── heightFunction │ │ │ ├── heightFuncStencil │ │ │ │ ├── HFStencil.C │ │ │ │ └── HFStencil.H │ │ │ ├── heightFunction.C │ │ │ ├── heightFunction.H │ │ │ └── twoDimFDStencil │ │ │ │ ├── twoDimFDStencil.C │ │ │ │ └── twoDimFDStencil.H │ │ ├── surfaceTensionForceModel.C │ │ ├── surfaceTensionForceModel.H │ │ └── surfaceTensionForceModels.C │ │ └── surfaceTensionModels │ │ ├── constant │ │ ├── constantSurfaceTension.C │ │ └── constantSurfaceTension.H │ │ ├── surfaceTensionModel.C │ │ ├── surfaceTensionModel.H │ │ ├── surfaceTensionModelNew.C │ │ └── temperatureDependent │ │ ├── temperatureDependentSurfaceTension.C │ │ └── temperatureDependentSurfaceTension.H ├── thermoDynamics │ ├── Allwclean │ ├── Allwmake │ ├── fluidThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── fluidThermos.C │ │ └── tabulatedThermo │ │ │ ├── hTabulatedThermo │ │ │ ├── hTabulatedThermo.C │ │ │ ├── hTabulatedThermo.H │ │ │ └── hTabulatedThermoI.H │ │ │ └── tabulatedTransport │ │ │ ├── tabulatedTransport.C │ │ │ ├── tabulatedTransport.H │ │ │ └── tabulatedTransportI.H │ ├── solidTabulatedThermo │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── solidThermos.C │ │ ├── thermo │ │ │ ├── solidTabulatedThermo.C │ │ │ ├── solidTabulatedThermo.H │ │ │ └── solidTabulatedThermoI.H │ │ └── transport │ │ │ ├── tabulatedSolidTransport.C │ │ │ ├── tabulatedSolidTransport.H │ │ │ └── tabulatedSolidTransportI.H │ └── twoPhaseModelThermo │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── phaseModel │ │ ├── MovingPhaseModel │ │ │ ├── MovingPhaseModel.C │ │ │ └── MovingPhaseModel.H │ │ ├── MultiComponentPhaseModel │ │ │ ├── MultiComponentPhaseModel.C │ │ │ └── MultiComponentPhaseModel.H │ │ ├── PurePhaseModel │ │ │ ├── PurePhaseModel.C │ │ │ └── PurePhaseModel.H │ │ ├── StaticPhaseModel │ │ │ ├── StaticPhaseModel.C │ │ │ └── StaticPhaseModel.H │ │ └── phaseModel │ │ │ ├── makePhaseTypes.H │ │ │ ├── phaseModel.C │ │ │ ├── phaseModel.H │ │ │ ├── phaseModelNew.C │ │ │ └── phaseModels.C │ │ ├── twoPhaseMixtureThermo.C │ │ ├── twoPhaseMixtureThermo.H │ │ ├── twoPhaseModelThermo.C │ │ └── twoPhaseModelThermo.H └── turbulence │ └── VoFphaseCompressibleTurbulenceModels │ ├── Make │ ├── files │ └── options │ ├── VoFphaseCompressibleTurbulenceModel.H │ ├── VoFphaseCompressibleTurbulenceModelFwd.H │ ├── VoFphaseCompressibleTurbulenceModels.C │ ├── compressibleInterPhaseTransportModel.C │ └── compressibleInterPhaseTransportModel.H └── testsuite ├── advection ├── test-Leveque │ ├── 0.orig │ │ ├── U │ │ ├── alpha.water │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── cube.fms │ ├── expected_results.csv │ ├── generateU │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── generateU │ │ └── generateU.C │ ├── results_leveque.csv │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── initAlphaFieldDict │ │ ├── meshDict │ │ ├── setAlphaFieldDict │ │ ├── simulationParameter │ │ └── simulationParameter.orig │ ├── test,foam │ ├── test_Levque.py │ └── triBlock.geo ├── test-deformationSphere │ ├── 0.orig │ │ ├── U │ │ ├── alpha.water │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── cube.fms │ ├── expected_results.csv │ ├── generateUDeform │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── generateUDeform.C │ ├── results_deformation.csv │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── initAlphaFieldDict │ │ ├── meshDict │ │ ├── setAlphaFieldDict │ │ ├── simulationParameter │ │ └── simulationParameter.orig │ ├── test_deformationSphere.py │ └── triBlock.geo ├── test-discUniFlow │ ├── 0.orig │ │ ├── U │ │ ├── alpha.water │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── error.dat │ ├── system │ │ ├── blockMeshDict │ │ ├── changeDictionaryDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── setAlphaFieldDict │ │ └── topoSetDict │ └── test_discUniFlow.py └── test-vortexShearedDisc │ ├── 0.orig │ ├── U │ ├── alpha.water │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── Allrun.paraStudy │ ├── constant │ ├── g │ ├── transportProperties │ └── turbulenceProperties │ ├── error.dat │ ├── expected_results.csv │ ├── generateUVortex2D │ ├── Make │ │ ├── files │ │ └── options │ └── generateUVortex2D.C │ ├── results_shearedDisc.csv │ ├── system │ ├── blockMeshDict │ ├── changeDictionaryDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── initAlphaFieldDict │ ├── setAlphaFieldDict │ ├── simulationParameter │ ├── simulationParameter.orig │ └── topoSetDict │ └── test_vortexShearedDisc.py ├── phaseChange ├── stefanProblem │ ├── 0.orig │ │ └── fluid │ │ │ ├── T │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── U │ │ │ ├── alpha.water │ │ │ ├── p │ │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── fluid │ │ │ ├── phaseChangeProperties │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── faces │ │ │ │ ├── neighbour │ │ │ │ ├── owner │ │ │ │ └── points │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ └── turbulenceProperties │ │ ├── g │ │ └── regionProperties │ ├── expected_results.csv │ ├── results_Stefan.csv │ ├── system │ │ ├── controlDict │ │ ├── fluid │ │ │ ├── blockMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── initAlphaFieldDict │ │ │ └── setFieldsDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── simulationParameter │ │ └── simulationParameter.orig │ └── test_stefanProblem.py └── suckingInterface │ ├── 0.orig │ └── fluid │ │ ├── T │ │ ├── T.air │ │ ├── T.water │ │ ├── U │ │ ├── alpha.water │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── T01.csv │ ├── analyticalResults.csv │ ├── constant │ ├── fluid │ │ ├── phaseChangeProperties │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.water │ │ └── turbulenceProperties │ ├── g │ └── regionProperties │ ├── expected_results.csv │ ├── results_suckingInterface.csv │ ├── system │ ├── controlDict │ ├── fluid │ │ ├── blockMeshDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── initAlphaFieldDict │ │ ├── setFieldfromTableDict │ │ └── setFieldsDict │ ├── fvSolution │ ├── simulationParameter │ └── simulationParameter.orig │ └── test_suckingInterface.py └── surfaceTension └── sinWave ├── 0.orig ├── U ├── alpha.water ├── p ├── p_rgh └── pc ├── Allclean ├── Allrun ├── constant ├── dynamicMeshDict ├── g ├── transportProperties └── turbulenceProperties ├── expected_results.csv ├── getResults.py ├── results_sinWave.csv ├── sinwave_prosperetti.py ├── system ├── blockMeshDict ├── controlDict ├── decomposeParDict ├── fvSchemes ├── fvSolution ├── initAlphaFieldDict ├── setAlphaFieldDict ├── simulationParameter └── simulationParameter.orig └── test_sinWave.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/Allwclean -------------------------------------------------------------------------------- /Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/Allwmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/README.md -------------------------------------------------------------------------------- /apps/benchmark/advectorVoF/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/advectorVoF/Make/files -------------------------------------------------------------------------------- /apps/benchmark/advectorVoF/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/advectorVoF/Make/options -------------------------------------------------------------------------------- /apps/benchmark/advectorVoF/advectorVoF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/advectorVoF/advectorVoF.C -------------------------------------------------------------------------------- /apps/benchmark/advectorVoF/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/advectorVoF/alphaCourantNo.H -------------------------------------------------------------------------------- /apps/benchmark/advectorVoF/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/advectorVoF/alphaSuSp.H -------------------------------------------------------------------------------- /apps/benchmark/advectorVoF/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/advectorVoF/createFields.H -------------------------------------------------------------------------------- /apps/benchmark/advectorVoF/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/advectorVoF/setDeltaT.H -------------------------------------------------------------------------------- /apps/benchmark/reconstructInterface/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/reconstructInterface/Make/files -------------------------------------------------------------------------------- /apps/benchmark/reconstructInterface/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/reconstructInterface/Make/options -------------------------------------------------------------------------------- /apps/benchmark/reconstructInterface/reconstructInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/benchmark/reconstructInterface/reconstructInterface.C -------------------------------------------------------------------------------- /apps/initAlphaField/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/initAlphaField/Make/files -------------------------------------------------------------------------------- /apps/initAlphaField/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/initAlphaField/Make/options -------------------------------------------------------------------------------- /apps/initAlphaField/initAlphaField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/initAlphaField/initAlphaField.C -------------------------------------------------------------------------------- /apps/initAlphaField/initAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/initAlphaField/initAlphaFieldDict -------------------------------------------------------------------------------- /apps/setFieldfromTable/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/setFieldfromTable/Make/files -------------------------------------------------------------------------------- /apps/setFieldfromTable/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/setFieldfromTable/Make/options -------------------------------------------------------------------------------- /apps/setFieldfromTable/setFieldfromTable.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/setFieldfromTable/setFieldfromTable.C -------------------------------------------------------------------------------- /apps/setFieldfromTable/setFieldfromTableDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/apps/setFieldfromTable/setFieldfromTableDict -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/conftest.py -------------------------------------------------------------------------------- /get-gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/get-gmsh.sh -------------------------------------------------------------------------------- /patches/multiRegionAMR.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/patches/multiRegionAMR.patch -------------------------------------------------------------------------------- /patches/surfaceFieldValue.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/patches/surfaceFieldValue.patch -------------------------------------------------------------------------------- /patches/tableBase.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/patches/tableBase.patch -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/pytest.ini -------------------------------------------------------------------------------- /run/Reorientation/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/0.orig/U -------------------------------------------------------------------------------- /run/Reorientation/0.orig/alpha.phase1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/0.orig/alpha.phase1 -------------------------------------------------------------------------------- /run/Reorientation/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/0.orig/p -------------------------------------------------------------------------------- /run/Reorientation/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/0.orig/p_rgh -------------------------------------------------------------------------------- /run/Reorientation/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/Allclean -------------------------------------------------------------------------------- /run/Reorientation/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/Allrun -------------------------------------------------------------------------------- /run/Reorientation/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/Allrun-parallel -------------------------------------------------------------------------------- /run/Reorientation/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/constant/RASProperties -------------------------------------------------------------------------------- /run/Reorientation/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/constant/dynamicMeshDict -------------------------------------------------------------------------------- /run/Reorientation/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/constant/g -------------------------------------------------------------------------------- /run/Reorientation/constant/interfaceModels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/constant/interfaceModels -------------------------------------------------------------------------------- /run/Reorientation/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/constant/transportProperties -------------------------------------------------------------------------------- /run/Reorientation/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/constant/turbulenceProperties -------------------------------------------------------------------------------- /run/Reorientation/surfaceElevation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/surfaceElevation.py -------------------------------------------------------------------------------- /run/Reorientation/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/blockMeshDict -------------------------------------------------------------------------------- /run/Reorientation/system/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/changeDictionaryDict -------------------------------------------------------------------------------- /run/Reorientation/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/controlDict -------------------------------------------------------------------------------- /run/Reorientation/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/decomposeParDict -------------------------------------------------------------------------------- /run/Reorientation/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/fvSchemes -------------------------------------------------------------------------------- /run/Reorientation/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/fvSolution -------------------------------------------------------------------------------- /run/Reorientation/system/refineMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/refineMeshDict -------------------------------------------------------------------------------- /run/Reorientation/system/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/setAlphaFieldDict -------------------------------------------------------------------------------- /run/Reorientation/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/setFieldsDict -------------------------------------------------------------------------------- /run/Reorientation/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/system/topoSetDict -------------------------------------------------------------------------------- /run/Reorientation/test_Reorientation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/Reorientation/test_Reorientation.py -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/genCases.py -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/getResults.py -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/results.csv -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/results.html -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/0.orig/alpha.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/0.orig/alpha.org -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/0.orig/p_rgh -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/Allclean -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/Allrun -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/constant/g -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/prepareCase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/prepareCase -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/spuriousUCloseUp.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/spuriousUCloseUp.pvsm -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/system/blockMeshDict -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/system/controlDict -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/system/fvSchemes -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/system/fvSolution -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/system/isoSurfDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/system/isoSurfDict -------------------------------------------------------------------------------- /run/benchmark/acceleration/tiltedBox/tiltedBox/test_tiltedBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/acceleration/tiltedBox/tiltedBox/test_tiltedBox.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/Scriven_isoSurface.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/Scriven_isoSurface.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/Scriven_isoSurface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/Scriven_isoSurface.pdf -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/Scriven_plicRDF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/Scriven_plicRDF.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/Scriven_plicRDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/Scriven_plicRDF.pdf -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/genCases.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/getData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/getData.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/getResults.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/init/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/init/T01.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/init/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/init/data.dat -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/init/scriven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/init/scriven.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/plotData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/plotData.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/T -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/T.air -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/T.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/T.water -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/U -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/p -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/0.orig/fluid/p_rgh -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/Allclean -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/Allrun -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/Allrun.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/Allrun.slurm -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/T01.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/constant/g -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/system/controlDict -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/system/decomposeParDict -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/system/fluid/fvSchemes -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/system/fluid/fvSolution -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/system/fvSchemes -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/system/fvSolution -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scriven3D/scriven3D/test_scriven3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scriven3D/scriven3D/test_scriven3D.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/Allclean -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/Allrun -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/Scriven_isoSurface.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/Scriven_isoSurface.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/Scriven_isoSurface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/Scriven_isoSurface.pdf -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/Scriven_plicRDF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/Scriven_plicRDF.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/Scriven_plicRDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/Scriven_plicRDF.pdf -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/genCases.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/init/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/init/T01.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/init/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/init/data.dat -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/init/scriven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/init/scriven.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/log -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/plotInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/plotInterface.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/rmCases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/rmCases -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/0.orig/fluid/T -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/0.orig/fluid/U -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/0.orig/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/0.orig/fluid/p -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/Allclean -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/Allrun -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/Allrun.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/Allrun.slurm -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/T01.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/constant/g -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/system/fvSchemes -------------------------------------------------------------------------------- /run/benchmark/phaseChange/scrivenWedge/scrivenWedge/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/scrivenWedge/scrivenWedge/system/fvSolution -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/Allclean -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/Allrun -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/genCases.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/getData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/getData.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/init/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/init/data.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/init/startTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/init/startTime.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/init/stefanProblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/init/stefanProblem.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/plotData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/plotData.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/results/stefanProblem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/results/stefanProblem.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/results/stefan_isoSurface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/results/stefan_isoSurface.pdf -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/results/stefan_isoSurface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/results/stefan_isoSurface.png -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/results/stefan_plicRDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/results/stefan_plicRDF.pdf -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/results/stefan_plicRDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/results/stefan_plicRDF.png -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/rmCases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/rmCases -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/stefanProblem/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/stefanProblem/0.orig/fluid/T -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/stefanProblem/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/stefanProblem/0.orig/fluid/U -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/stefanProblem/0.orig/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/stefanProblem/0.orig/fluid/p -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/stefanProblem/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/stefanProblem/Allclean -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/stefanProblem/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/stefanProblem/Allrun -------------------------------------------------------------------------------- /run/benchmark/phaseChange/stefanProblem/stefanProblem/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/stefanProblem/stefanProblem/constant/g -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/genCases.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/getData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/getData.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/init/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/init/T01.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/init/T01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/init/T01.dat -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/init/T06.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/init/T06.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/init/T11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/init/T11.csv -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/init/T11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/init/T11.dat -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/init/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/init/data.dat -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/init/suckingInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/init/suckingInterface.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/plotData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/plotData.py -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/suckingInterface/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/suckingInterface/Allclean -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/suckingInterface/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/suckingInterface/Allrun -------------------------------------------------------------------------------- /run/benchmark/phaseChange/suckingInterface/suckingInterface/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/phaseChange/suckingInterface/suckingInterface/T01.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/advectCircle_hex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/advectCircle_hex.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/advectCircle_tri.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/advectCircle_tri.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/advectedCircle/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/advectedCircle/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/advectedCircle/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/advectedCircle/0.orig/p -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/advectedCircle/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/advectedCircle/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/advectedCircle/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/advectedCircle/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/advectedCircle/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/advectedCircle/constant/g -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/advectedCircleTri/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/advectedCircleTri/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/curv_error_hex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/curv_error_hex.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/curv_error_tri.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/curv_error_tri.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/genCases.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/genCasesTri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/genCasesTri.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/getResults.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/advectedCircle/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/advectedCircle/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curv2d_hex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curv2d_hex.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curv2d_hex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curv2d_hex.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curv2d_tri.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curv2d_tri.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curv2d_tri.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curv2d_tri.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2D/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curvature2D/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2D/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curvature2D/0.orig/p_rgh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2D/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curvature2D/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2D/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curvature2D/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2D/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curvature2D/constant/g -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2D/touch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2DTri/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curvature2DTri/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2DTri/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curvature2DTri/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/curvature2DTri/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/curvature2DTri/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/genCases.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/genCasesTri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/genCasesTri.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/getResults.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureCircle/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureCircle/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curv3d_hex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curv3d_hex.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curv3d_hex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curv3d_hex.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curv3d_tri.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curv3d_tri.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curv3d_tri.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curv3d_tri.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3D/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3D/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3D/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3D/0.orig/p_rgh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3D/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3D/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3D/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3D/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3D/Allrun_Slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3D/Allrun_Slurm -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3D/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3D/constant/g -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3DTri/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3DTri/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3DTri/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3DTri/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/curvature3DTri/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/curvature3DTri/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/genCases.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/genCasesTri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/genCasesTri.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/getResults.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/results.html -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureSphere/triBlock.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureSphere/triBlock.geo -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curv2d_wall_RDF_hex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curv2d_wall_RDF_hex.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curv2d_wall_RDF_hex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curv2d_wall_RDF_hex.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curv2d_wall_RDF_tri.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curv2d_wall_RDF_tri.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curv2d_wall_RDF_tri.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curv2d_wall_RDF_tri.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWall/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWall/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWall/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWall/0.orig/p -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWall/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWall/0.orig/p_rgh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWall/0.orig/pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWall/0.orig/pc -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWall/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWall/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWall/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWall/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWall/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWall/constant/g -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/0.orig/p -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/0.orig/pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/0.orig/pc -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/curvatureWallTri/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/genCases.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/genCasesTri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/genCasesTri.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/getResults.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/curvatureWall/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/curvatureWall/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/analyticalWave.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/analyticalWave.dat -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/genCases.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/getResults.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/resolutionEquationSurfaceV4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/resolutionEquationSurfaceV4.m -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/0.orig/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/0.orig/alpha.water -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/0.orig/p -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/0.orig/p_rgh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/0.orig/pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/0.orig/pc -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/constant/dynamicMeshDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/constant/g -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/blockMeshDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/controlDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/decomposeParDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/fvSchemes -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/fvSolution -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/isoSurfDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/isoSurfDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/sampleDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/setAlphaFieldDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/setFieldsDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/system/topoSetDict -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWave/test_sinWave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWave/test_sinWave.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWaveHex_isoSurface.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWaveHex_isoSurface.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWaveHex_isoSurface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWaveHex_isoSurface.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWaveHex_plicRDF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWaveHex_plicRDF.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinWaveHex_plicRDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinWaveHex_plicRDF.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWave/sinwave_prosperetti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWave/sinwave_prosperetti.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/analyticalWave.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/analyticalWave.dat -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/genCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/genCases.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/getResults.py -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/runAll.sh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/0.orig/U -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/0.orig/p -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/0.orig/p_rgh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/0.orig/pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/0.orig/pc -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/Allclean -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/Allrun -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/Allrun_Slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/Allrun_Slurm -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/constant/g -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/triSquare.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/triSquare.geo -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/triSquare.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri/triSquare.msh -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinWaveTri_plicRDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinWaveTri_plicRDF.pdf -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinwaveTri.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinwaveTri.csv -------------------------------------------------------------------------------- /run/benchmark/surfaceTension/sinWaveTri/sinwave_prosperetti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/benchmark/surfaceTension/sinWaveTri/sinwave_prosperetti.py -------------------------------------------------------------------------------- /run/coffeePot/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/fluid/T -------------------------------------------------------------------------------- /run/coffeePot/0.orig/fluid/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/fluid/T.air -------------------------------------------------------------------------------- /run/coffeePot/0.orig/fluid/T.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/fluid/T.water -------------------------------------------------------------------------------- /run/coffeePot/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/fluid/U -------------------------------------------------------------------------------- /run/coffeePot/0.orig/fluid/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/fluid/alpha.water -------------------------------------------------------------------------------- /run/coffeePot/0.orig/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/fluid/p -------------------------------------------------------------------------------- /run/coffeePot/0.orig/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/fluid/p_rgh -------------------------------------------------------------------------------- /run/coffeePot/0.orig/solid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/solid/T -------------------------------------------------------------------------------- /run/coffeePot/0.orig/solid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/0.orig/solid/p -------------------------------------------------------------------------------- /run/coffeePot/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/Allclean -------------------------------------------------------------------------------- /run/coffeePot/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/Allrun -------------------------------------------------------------------------------- /run/coffeePot/coffee_pot_fluid.fms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/coffee_pot_fluid.fms -------------------------------------------------------------------------------- /run/coffeePot/coffee_pot_solid.fms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/coffee_pot_solid.fms -------------------------------------------------------------------------------- /run/coffeePot/constant/fluid/phaseChangeProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/fluid/phaseChangeProperties -------------------------------------------------------------------------------- /run/coffeePot/constant/fluid/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/fluid/thermophysicalProperties -------------------------------------------------------------------------------- /run/coffeePot/constant/fluid/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/fluid/thermophysicalProperties.air -------------------------------------------------------------------------------- /run/coffeePot/constant/fluid/thermophysicalProperties.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/fluid/thermophysicalProperties.water -------------------------------------------------------------------------------- /run/coffeePot/constant/fluid/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/fluid/turbulenceProperties -------------------------------------------------------------------------------- /run/coffeePot/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/g -------------------------------------------------------------------------------- /run/coffeePot/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/regionProperties -------------------------------------------------------------------------------- /run/coffeePot/constant/solid/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/solid/radiationProperties -------------------------------------------------------------------------------- /run/coffeePot/constant/solid/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/constant/solid/thermophysicalProperties -------------------------------------------------------------------------------- /run/coffeePot/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/controlDict -------------------------------------------------------------------------------- /run/coffeePot/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/decomposeParDict -------------------------------------------------------------------------------- /run/coffeePot/system/fluid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fluid/blockMeshDict -------------------------------------------------------------------------------- /run/coffeePot/system/fluid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fluid/changeDictionaryDict -------------------------------------------------------------------------------- /run/coffeePot/system/fluid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fluid/decomposeParDict -------------------------------------------------------------------------------- /run/coffeePot/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fluid/fvSchemes -------------------------------------------------------------------------------- /run/coffeePot/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fluid/fvSolution -------------------------------------------------------------------------------- /run/coffeePot/system/fluid/initAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fluid/initAlphaFieldDict -------------------------------------------------------------------------------- /run/coffeePot/system/fluid/setFieldTableDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fluid/setFieldTableDict -------------------------------------------------------------------------------- /run/coffeePot/system/fluid/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fluid/setFieldsDict -------------------------------------------------------------------------------- /run/coffeePot/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fvSchemes -------------------------------------------------------------------------------- /run/coffeePot/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/fvSolution -------------------------------------------------------------------------------- /run/coffeePot/system/meshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/meshDict -------------------------------------------------------------------------------- /run/coffeePot/system/meshDict.fluid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/meshDict.fluid -------------------------------------------------------------------------------- /run/coffeePot/system/meshDict.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/meshDict.solid -------------------------------------------------------------------------------- /run/coffeePot/system/solid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/solid/changeDictionaryDict -------------------------------------------------------------------------------- /run/coffeePot/system/solid/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/solid/decomposeParDict -------------------------------------------------------------------------------- /run/coffeePot/system/solid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/solid/fvSchemes -------------------------------------------------------------------------------- /run/coffeePot/system/solid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/solid/fvSolution -------------------------------------------------------------------------------- /run/coffeePot/system/solid/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/system/solid/setFieldsDict -------------------------------------------------------------------------------- /run/coffeePot/test_coffeePot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/test_coffeePot.py -------------------------------------------------------------------------------- /run/coffeePot/thermo/cp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/thermo/cp.dat -------------------------------------------------------------------------------- /run/coffeePot/thermo/kappa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/thermo/kappa.dat -------------------------------------------------------------------------------- /run/coffeePot/thermo/mu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/coffeePot/thermo/mu.dat -------------------------------------------------------------------------------- /run/damBreakWithObstacle/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/0.orig/U -------------------------------------------------------------------------------- /run/damBreakWithObstacle/0.orig/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/0.orig/alpha.water -------------------------------------------------------------------------------- /run/damBreakWithObstacle/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/0.orig/p_rgh -------------------------------------------------------------------------------- /run/damBreakWithObstacle/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/Allclean -------------------------------------------------------------------------------- /run/damBreakWithObstacle/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/Allrun -------------------------------------------------------------------------------- /run/damBreakWithObstacle/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/constant/dynamicMeshDict -------------------------------------------------------------------------------- /run/damBreakWithObstacle/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/constant/g -------------------------------------------------------------------------------- /run/damBreakWithObstacle/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/constant/transportProperties -------------------------------------------------------------------------------- /run/damBreakWithObstacle/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/constant/turbulenceProperties -------------------------------------------------------------------------------- /run/damBreakWithObstacle/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/system/blockMeshDict -------------------------------------------------------------------------------- /run/damBreakWithObstacle/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/system/controlDict -------------------------------------------------------------------------------- /run/damBreakWithObstacle/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/system/decomposeParDict -------------------------------------------------------------------------------- /run/damBreakWithObstacle/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/system/fvSchemes -------------------------------------------------------------------------------- /run/damBreakWithObstacle/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/system/fvSolution -------------------------------------------------------------------------------- /run/damBreakWithObstacle/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/system/setFieldsDict -------------------------------------------------------------------------------- /run/damBreakWithObstacle/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/system/topoSetDict -------------------------------------------------------------------------------- /run/damBreakWithObstacle/test_damBreakWithObstacle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/damBreakWithObstacle/test_damBreakWithObstacle.py -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/T -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/T.air -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/T.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/T.water -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/U -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/air.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/air.air -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/alpha.water -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/p -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/p_rgh -------------------------------------------------------------------------------- /run/depthCharge2D/0.orig/steam.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/0.orig/steam.air -------------------------------------------------------------------------------- /run/depthCharge2D/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/Allclean -------------------------------------------------------------------------------- /run/depthCharge2D/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/Allrun -------------------------------------------------------------------------------- /run/depthCharge2D/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/constant/g -------------------------------------------------------------------------------- /run/depthCharge2D/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/constant/thermophysicalProperties -------------------------------------------------------------------------------- /run/depthCharge2D/constant/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/constant/thermophysicalProperties.air -------------------------------------------------------------------------------- /run/depthCharge2D/constant/thermophysicalProperties.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/constant/thermophysicalProperties.water -------------------------------------------------------------------------------- /run/depthCharge2D/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/constant/turbulenceProperties -------------------------------------------------------------------------------- /run/depthCharge2D/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/system/blockMeshDict -------------------------------------------------------------------------------- /run/depthCharge2D/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/system/controlDict -------------------------------------------------------------------------------- /run/depthCharge2D/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/system/fvSchemes -------------------------------------------------------------------------------- /run/depthCharge2D/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/system/fvSolution -------------------------------------------------------------------------------- /run/depthCharge2D/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/system/setFieldsDict -------------------------------------------------------------------------------- /run/depthCharge2D/test_depthCharge2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/depthCharge2D/test_depthCharge2D.py -------------------------------------------------------------------------------- /run/velocityStaticCircle/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/0.orig/U -------------------------------------------------------------------------------- /run/velocityStaticCircle/0.orig/alpha.phase1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/0.orig/alpha.phase1 -------------------------------------------------------------------------------- /run/velocityStaticCircle/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/0.orig/p -------------------------------------------------------------------------------- /run/velocityStaticCircle/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/0.orig/p_rgh -------------------------------------------------------------------------------- /run/velocityStaticCircle/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/Allclean -------------------------------------------------------------------------------- /run/velocityStaticCircle/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/Allrun -------------------------------------------------------------------------------- /run/velocityStaticCircle/Allrun.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/Allrun.slurm -------------------------------------------------------------------------------- /run/velocityStaticCircle/AlphaInit/AlphaInit.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/AlphaInit/AlphaInit.vtk -------------------------------------------------------------------------------- /run/velocityStaticCircle/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/constant/dynamicMeshDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/constant/g -------------------------------------------------------------------------------- /run/velocityStaticCircle/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/constant/transportProperties -------------------------------------------------------------------------------- /run/velocityStaticCircle/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/constant/turbulenceProperties -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/blockMeshDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/changeDictionaryDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/controlDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/decomposeParDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/fvSchemes -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/fvSolution -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/initAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/initAlphaFieldDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/perfectVOFDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/perfectVOFDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/setAlphaFieldDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/system/topoSetDict -------------------------------------------------------------------------------- /run/velocityStaticCircle/test_velocityStaticCircle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/run/velocityStaticCircle/test_velocityStaticCircle.py -------------------------------------------------------------------------------- /scripts/saturationsProperties_polyFit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/scripts/saturationsProperties_polyFit.py -------------------------------------------------------------------------------- /scripts/thermo_polyFit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/scripts/thermo_polyFit.py -------------------------------------------------------------------------------- /solver/compressibleInterFlow/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/Make/files -------------------------------------------------------------------------------- /solver/compressibleInterFlow/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/Make/options -------------------------------------------------------------------------------- /solver/compressibleInterFlow/TEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/TEqn.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/UEqn.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/YEqns.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/YEqns.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/alphaControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/alphaControls.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/alphaCourantNo.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/alphaEqn.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/alphaSuSp.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/compressibleAlphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/compressibleAlphaEqnSubCycle.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/compressibleInterFlow.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/compressibleInterFlow.C -------------------------------------------------------------------------------- /solver/compressibleInterFlow/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/correctPhi.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/createAlphaFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/createAlphaFluxes.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/createFields.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/pEqn.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/rhofs.H -------------------------------------------------------------------------------- /solver/compressibleInterFlow/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/compressibleInterFlow/setDeltaT.H -------------------------------------------------------------------------------- /solver/interFlow/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/Make/files -------------------------------------------------------------------------------- /solver/interFlow/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/Make/options -------------------------------------------------------------------------------- /solver/interFlow/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/UEqn.H -------------------------------------------------------------------------------- /solver/interFlow/alphaControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/alphaControls.H -------------------------------------------------------------------------------- /solver/interFlow/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/alphaCourantNo.H -------------------------------------------------------------------------------- /solver/interFlow/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/alphaEqn.H -------------------------------------------------------------------------------- /solver/interFlow/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /solver/interFlow/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/alphaSuSp.H -------------------------------------------------------------------------------- /solver/interFlow/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/correctPhi.H -------------------------------------------------------------------------------- /solver/interFlow/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/createFields.H -------------------------------------------------------------------------------- /solver/interFlow/createIsoAdvection.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/createIsoAdvection.H -------------------------------------------------------------------------------- /solver/interFlow/initCorrectPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/initCorrectPhi.H -------------------------------------------------------------------------------- /solver/interFlow/interFlow.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/interFlow.C -------------------------------------------------------------------------------- /solver/interFlow/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/pEqn.H -------------------------------------------------------------------------------- /solver/interFlow/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/rhofs.H -------------------------------------------------------------------------------- /solver/interFlow/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/interFlow/setDeltaT.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/Allwmake -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/Make/files -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/Make/options -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/createFields.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/createMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/createMeshes.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/createMeshesPostProcess.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/createMeshesPostProcess.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/TEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/TEqn.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/UEqn.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/YEqns.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/YEqns.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/alphaControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/alphaControls.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/alphaEqn.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/alphaSuSp.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/correctMass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/correctMass.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/correctPhi.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/createFluidDyMMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/createFluidDyMMeshes.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/createFluidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/createFluidFields.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/initContinuityErrs.H: -------------------------------------------------------------------------------- 1 | List cumulativeContErr(fluidRegions.size(), 0.0); 2 | -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/multiCourantNo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/multiCourantNo.C -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/multiCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/multiCourantNo.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/pEqn.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/rhofs.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/setRegionFluidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/setRegionFluidFields.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/fluid/solveFluid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/fluid/solveFluid.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/include/setMultiRegionDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/include/setMultiRegionDeltaT.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/multiRegionPhaseChangeFlow.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/multiRegionPhaseChangeFlow.C -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/readPIMPLEControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/readPIMPLEControls.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/solid/createSolidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/solid/createSolidFields.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/solid/createSolidMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/solid/createSolidMeshes.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/solid/readSolidTimeControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/solid/readSolidTimeControls.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/solid/setRegionSolidFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/solid/setRegionSolidFields.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/solid/solidRegionDiffNo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/solid/solidRegionDiffNo.C -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/solid/solidRegionDiffNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/solid/solidRegionDiffNo.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/solid/solidRegionDiffusionNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/solid/solidRegionDiffusionNo.H -------------------------------------------------------------------------------- /solver/multiRegionPhaseChangeFlow/solid/solveSolid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/solver/multiRegionPhaseChangeFlow/solid/solveSolid.H -------------------------------------------------------------------------------- /src/VoF/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/Make/files -------------------------------------------------------------------------------- /src/VoF/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/Make/options -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/MULES/MULESScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/MULES/MULESScheme.C -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/MULES/MULESScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/MULES/MULESScheme.H -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/advectionSchemes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/advectionSchemes.C -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/advectionSchemes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/advectionSchemes.H -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/geoAdvection/geoAdvection.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/geoAdvection/geoAdvection.C -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/geoAdvection/geoAdvection.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/geoAdvection/geoAdvection.H -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/geoAdvection/geoAdvectionTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/geoAdvection/geoAdvectionTemplates.C -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/isoAdvection/isoAdvection.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/isoAdvection/isoAdvection.C -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/isoAdvection/isoAdvection.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/isoAdvection/isoAdvection.H -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C -------------------------------------------------------------------------------- /src/VoF/advectionSchemes/newAdvectionSchemes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/advectionSchemes/newAdvectionSchemes.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutCell/cutCell.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutCell/cutCell.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutCell/cutCell.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutCell/cutCell.H -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutCell/cutCellImpFunc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutCell/cutCellImpFunc.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutCell/cutCellImpFunc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutCell/cutCellImpFunc.H -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutCell/cutCellIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutCell/cutCellIso.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutCell/cutCellIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutCell/cutCellIso.H -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutCell/cutCellPLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutCell/cutCellPLIC.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutCell/cutCellPLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutCell/cutCellPLIC.H -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFace.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFace.H -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFaceAdvect.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFaceAdvect.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFaceAdvect.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFaceAdvect.H -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFaceImpFunc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFaceImpFunc.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFaceImpFunc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFaceImpFunc.H -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFaceIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFaceIso.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFaceIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFaceIso.H -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFacePLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFacePLIC.C -------------------------------------------------------------------------------- /src/VoF/cellCuts/cutFace/cutFacePLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/cellCuts/cutFace/cutFacePLIC.H -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/cylinder/cylinderImplicitFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/cylinder/cylinderImplicitFunction.C -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/cylinder/cylinderImplicitFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/cylinder/cylinderImplicitFunction.H -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/ellipsoid/ellipsoidImplicitFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/ellipsoid/ellipsoidImplicitFunction.C -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/ellipsoid/ellipsoidImplicitFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/ellipsoid/ellipsoidImplicitFunction.H -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/implicitFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/implicitFunction.C -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/implicitFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/implicitFunction.H -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/paraboloid/paraboloidImplicitFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/paraboloid/paraboloidImplicitFunction.C -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/paraboloid/paraboloidImplicitFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/paraboloid/paraboloidImplicitFunction.H -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/plane/planeImplicitFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/plane/planeImplicitFunction.C -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/plane/planeImplicitFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/plane/planeImplicitFunction.H -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/sin/sinImplicitFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/sin/sinImplicitFunction.C -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/sin/sinImplicitFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/sin/sinImplicitFunction.H -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/sphere/sphereImplicitFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/sphere/sphereImplicitFunction.C -------------------------------------------------------------------------------- /src/VoF/implicitFunctions/sphere/sphereImplicitFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/implicitFunctions/sphere/sphereImplicitFunction.H -------------------------------------------------------------------------------- /src/VoF/markInterfaceRegion/markInterfaceRegion.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/markInterfaceRegion/markInterfaceRegion.C -------------------------------------------------------------------------------- /src/VoF/markInterfaceRegion/markInterfaceRegion.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/markInterfaceRegion/markInterfaceRegion.H -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/leastSquareFitParabolid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/leastSquareFitParabolid.C -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/leastSquareFitParabolid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/leastSquareFitParabolid.H -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/leastSquareGrad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/leastSquareGrad.C -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/leastSquareGrad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/leastSquareGrad.H -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/leastSquareInterpolate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/leastSquareInterpolate.C -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/leastSquareInterpolate.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/leastSquareInterpolate.H -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/multiDimPolyFitter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/multiDimPolyFitter.C -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/multiDimPolyFitter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/multiDimPolyFitter.H -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/multiDimPolyFunctions/paraboloid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/multiDimPolyFunctions/paraboloid.C -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/multiDimPolyFunctions/paraboloid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/multiDimPolyFunctions/paraboloid.H -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/multiDimPolyFunctions/polyDegree1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/multiDimPolyFunctions/polyDegree1.C -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/multiDimPolyFunctions/polyDegree1.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/multiDimPolyFunctions/polyDegree1.H -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/multiDimPolyFunctions/polyDegree2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/multiDimPolyFunctions/polyDegree2.C -------------------------------------------------------------------------------- /src/VoF/multiDimPolyFitter/multiDimPolyFunctions/polyDegree2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/multiDimPolyFitter/multiDimPolyFunctions/polyDegree2.H -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.C -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.H -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/isoSchemes/isoSurface/isoSurface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/isoSchemes/isoSurface/isoSurface.C -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/isoSchemes/isoSurface/isoSurface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/isoSchemes/isoSurface/isoSurface.H -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.C -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.H -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.C -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.H -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/reconstructionSchemes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/reconstructionSchemes.C -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/reconstructionSchemes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/reconstructionSchemes.H -------------------------------------------------------------------------------- /src/VoF/reconstructionSchemes/reconstructionSchemesNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/reconstructionSchemes/reconstructionSchemesNew.C -------------------------------------------------------------------------------- /src/VoF/surfaceIterators/surfaceIteratorIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/surfaceIterators/surfaceIteratorIso.C -------------------------------------------------------------------------------- /src/VoF/surfaceIterators/surfaceIteratorIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/surfaceIterators/surfaceIteratorIso.H -------------------------------------------------------------------------------- /src/VoF/surfaceIterators/surfaceIteratorPLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/surfaceIterators/surfaceIteratorPLIC.C -------------------------------------------------------------------------------- /src/VoF/surfaceIterators/surfaceIteratorPLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/surfaceIterators/surfaceIteratorPLIC.H -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneDistribute.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneDistribute.C -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneDistribute.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneDistribute.H -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneDistributeI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneDistributeI.H -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneDistributePoints.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneDistributePoints.C -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneDistributePoints.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneDistributePoints.H -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneDistributePointsI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneDistributePointsI.H -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneStencils/zoneCPCStencil.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneStencils/zoneCPCStencil.C -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneStencils/zoneCPCStencil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneStencils/zoneCPCStencil.H -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneStencils/zoneCellStencils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneStencils/zoneCellStencils.C -------------------------------------------------------------------------------- /src/VoF/zoneDistribute/zoneStencils/zoneCellStencils.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/VoF/zoneDistribute/zoneStencils/zoneCellStencils.H -------------------------------------------------------------------------------- /src/boundaryConditions/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/boundaryConditions/Allwclean -------------------------------------------------------------------------------- /src/boundaryConditions/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/boundaryConditions/Allwmake -------------------------------------------------------------------------------- /src/boundaryConditions/dynContactAngleModel/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/boundaryConditions/dynContactAngleModel/Make/files -------------------------------------------------------------------------------- /src/boundaryConditions/dynContactAngleModel/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/boundaryConditions/dynContactAngleModel/Make/options -------------------------------------------------------------------------------- /src/boundaryConditions/dynContactAngleModelComp/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/boundaryConditions/dynContactAngleModelComp/Make/files -------------------------------------------------------------------------------- /src/boundaryConditions/dynContactAngleModelComp/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/boundaryConditions/dynContactAngleModelComp/Make/options -------------------------------------------------------------------------------- /src/phaseChange/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/phaseChange/Make/files -------------------------------------------------------------------------------- /src/phaseChange/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/phaseChange/Make/options -------------------------------------------------------------------------------- /src/phaseChange/phaseChangeModels/macroModels/macroModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/phaseChange/phaseChangeModels/macroModels/macroModel.C -------------------------------------------------------------------------------- /src/phaseChange/phaseChangeModels/macroModels/macroModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/phaseChange/phaseChangeModels/macroModels/macroModel.H -------------------------------------------------------------------------------- /src/phaseChange/phaseChangeModels/macroModels/macroModels.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/phaseChange/phaseChangeModels/macroModels/macroModels.C -------------------------------------------------------------------------------- /src/postProcessing/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/Make/files -------------------------------------------------------------------------------- /src/postProcessing/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/Make/options -------------------------------------------------------------------------------- /src/postProcessing/interface/interface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interface/interface.C -------------------------------------------------------------------------------- /src/postProcessing/interface/interface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interface/interface.H -------------------------------------------------------------------------------- /src/postProcessing/interface/interfaceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interface/interfaceTemplates.C -------------------------------------------------------------------------------- /src/postProcessing/interface/sampledInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interface/sampledInterface.C -------------------------------------------------------------------------------- /src/postProcessing/interface/sampledInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interface/sampledInterface.H -------------------------------------------------------------------------------- /src/postProcessing/interface/sampledInterfaceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interface/sampledInterfaceTemplates.C -------------------------------------------------------------------------------- /src/postProcessing/interfaceEnergyFluxes/interfaceEnergyFluxes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interfaceEnergyFluxes/interfaceEnergyFluxes.C -------------------------------------------------------------------------------- /src/postProcessing/interfaceEnergyFluxes/interfaceEnergyFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interfaceEnergyFluxes/interfaceEnergyFluxes.H -------------------------------------------------------------------------------- /src/postProcessing/interfaceRegion/interfaceRegion.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interfaceRegion/interfaceRegion.C -------------------------------------------------------------------------------- /src/postProcessing/interfaceRegion/interfaceRegion.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/interfaceRegion/interfaceRegion.H -------------------------------------------------------------------------------- /src/postProcessing/reconstructionError/reconstructionError.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/reconstructionError/reconstructionError.C -------------------------------------------------------------------------------- /src/postProcessing/reconstructionError/reconstructionError.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/reconstructionError/reconstructionError.H -------------------------------------------------------------------------------- /src/postProcessing/superHeated/superHeated.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/superHeated/superHeated.C -------------------------------------------------------------------------------- /src/postProcessing/superHeated/superHeated.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/superHeated/superHeated.H -------------------------------------------------------------------------------- /src/postProcessing/thermalResiduals/thermalResiduals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/thermalResiduals/thermalResiduals.C -------------------------------------------------------------------------------- /src/postProcessing/thermalResiduals/thermalResiduals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/thermalResiduals/thermalResiduals.H -------------------------------------------------------------------------------- /src/postProcessing/volumeFractionError/volumeFractionError.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/volumeFractionError/volumeFractionError.C -------------------------------------------------------------------------------- /src/postProcessing/volumeFractionError/volumeFractionError.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/volumeFractionError/volumeFractionError.H -------------------------------------------------------------------------------- /src/postProcessing/wallHeatFluxSolid/wallHeatFluxSolid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/wallHeatFluxSolid/wallHeatFluxSolid.C -------------------------------------------------------------------------------- /src/postProcessing/wallHeatFluxSolid/wallHeatFluxSolid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/postProcessing/wallHeatFluxSolid/wallHeatFluxSolid.H -------------------------------------------------------------------------------- /src/surfaceForces/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/Make/files -------------------------------------------------------------------------------- /src/surfaceForces/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/Make/options -------------------------------------------------------------------------------- /src/surfaceForces/accelerationForceModel/accelerationForceModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/accelerationForceModel/accelerationForceModel.C -------------------------------------------------------------------------------- /src/surfaceForces/accelerationForceModel/accelerationForceModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/accelerationForceModel/accelerationForceModel.H -------------------------------------------------------------------------------- /src/surfaceForces/accelerationForceModel/accelerationForceModels.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/accelerationForceModel/accelerationForceModels.C -------------------------------------------------------------------------------- /src/surfaceForces/accelerationForceModel/gravity/gravity.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/accelerationForceModel/gravity/gravity.C -------------------------------------------------------------------------------- /src/surfaceForces/accelerationForceModel/gravity/gravity.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/accelerationForceModel/gravity/gravity.H -------------------------------------------------------------------------------- /src/surfaceForces/deltaFunctions/alphaCSF/alphaCSF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/deltaFunctions/alphaCSF/alphaCSF.C -------------------------------------------------------------------------------- /src/surfaceForces/deltaFunctions/alphaCSF/alphaCSF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/deltaFunctions/alphaCSF/alphaCSF.H -------------------------------------------------------------------------------- /src/surfaceForces/deltaFunctions/deltaFunctionModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/deltaFunctions/deltaFunctionModel.C -------------------------------------------------------------------------------- /src/surfaceForces/deltaFunctions/deltaFunctionModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/deltaFunctions/deltaFunctionModel.H -------------------------------------------------------------------------------- /src/surfaceForces/deltaFunctions/newDeltaFunctionModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/deltaFunctions/newDeltaFunctionModel.C -------------------------------------------------------------------------------- /src/surfaceForces/surfaceForces.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/surfaceForces.C -------------------------------------------------------------------------------- /src/surfaceForces/surfaceForces.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/surfaceForces/surfaceForces.H -------------------------------------------------------------------------------- /src/thermoDynamics/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/Allwclean -------------------------------------------------------------------------------- /src/thermoDynamics/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/Allwmake -------------------------------------------------------------------------------- /src/thermoDynamics/fluidThermo/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/fluidThermo/Make/files -------------------------------------------------------------------------------- /src/thermoDynamics/fluidThermo/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/fluidThermo/Make/options -------------------------------------------------------------------------------- /src/thermoDynamics/fluidThermo/fluidThermos.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/fluidThermo/fluidThermos.C -------------------------------------------------------------------------------- /src/thermoDynamics/solidTabulatedThermo/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/solidTabulatedThermo/Make/files -------------------------------------------------------------------------------- /src/thermoDynamics/solidTabulatedThermo/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/solidTabulatedThermo/Make/options -------------------------------------------------------------------------------- /src/thermoDynamics/solidTabulatedThermo/solidThermos.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/solidTabulatedThermo/solidThermos.C -------------------------------------------------------------------------------- /src/thermoDynamics/twoPhaseModelThermo/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/twoPhaseModelThermo/Make/files -------------------------------------------------------------------------------- /src/thermoDynamics/twoPhaseModelThermo/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/twoPhaseModelThermo/Make/options -------------------------------------------------------------------------------- /src/thermoDynamics/twoPhaseModelThermo/twoPhaseMixtureThermo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/twoPhaseModelThermo/twoPhaseMixtureThermo.C -------------------------------------------------------------------------------- /src/thermoDynamics/twoPhaseModelThermo/twoPhaseMixtureThermo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/twoPhaseModelThermo/twoPhaseMixtureThermo.H -------------------------------------------------------------------------------- /src/thermoDynamics/twoPhaseModelThermo/twoPhaseModelThermo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/twoPhaseModelThermo/twoPhaseModelThermo.C -------------------------------------------------------------------------------- /src/thermoDynamics/twoPhaseModelThermo/twoPhaseModelThermo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/thermoDynamics/twoPhaseModelThermo/twoPhaseModelThermo.H -------------------------------------------------------------------------------- /src/turbulence/VoFphaseCompressibleTurbulenceModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/turbulence/VoFphaseCompressibleTurbulenceModels/Make/files -------------------------------------------------------------------------------- /src/turbulence/VoFphaseCompressibleTurbulenceModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/src/turbulence/VoFphaseCompressibleTurbulenceModels/Make/options -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/0.orig/U -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/0.orig/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/0.orig/alpha.water -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/0.orig/p_rgh -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/Allclean -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/Allrun -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/constant/g -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/constant/transportProperties -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/constant/turbulenceProperties -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/cube.fms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/cube.fms -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/expected_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/expected_results.csv -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/generateU/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/generateU/Make/files -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/generateU/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/generateU/Make/options -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/generateU/generateU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/generateU/generateU -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/generateU/generateU.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/generateU/generateU.C -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/results_leveque.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/results_leveque.csv -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/blockMeshDict -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/controlDict -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/decomposeParDict -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/fvSchemes -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/fvSolution -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/initAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/initAlphaFieldDict -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/meshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/meshDict -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/setAlphaFieldDict -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/simulationParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/simulationParameter -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/system/simulationParameter.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/system/simulationParameter.orig -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/test,foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/test_Levque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/test_Levque.py -------------------------------------------------------------------------------- /testsuite/advection/test-Leveque/triBlock.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-Leveque/triBlock.geo -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/0.orig/U -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/0.orig/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/0.orig/alpha.water -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/0.orig/p_rgh -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/Allclean -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/Allrun -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/constant/g -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/cube.fms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/cube.fms -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/expected_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/expected_results.csv -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/results_deformation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/results_deformation.csv -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/system/blockMeshDict -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/system/controlDict -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/system/decomposeParDict -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/system/fvSchemes -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/system/fvSolution -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/system/meshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/system/meshDict -------------------------------------------------------------------------------- /testsuite/advection/test-deformationSphere/triBlock.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-deformationSphere/triBlock.geo -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/0.orig/U -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/0.orig/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/0.orig/alpha.water -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/0.orig/p_rgh -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/Allclean -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/Allrun -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/constant/g -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/constant/transportProperties -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/constant/turbulenceProperties -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/error.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/system/blockMeshDict -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/system/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/system/changeDictionaryDict -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/system/controlDict -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/system/decomposeParDict -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/system/fvSchemes -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/system/fvSolution -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/system/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/system/setAlphaFieldDict -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/system/topoSetDict -------------------------------------------------------------------------------- /testsuite/advection/test-discUniFlow/test_discUniFlow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-discUniFlow/test_discUniFlow.py -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/0.orig/U -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/0.orig/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/0.orig/alpha.water -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/0.orig/p_rgh -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/Allclean -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/Allrun -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/Allrun.paraStudy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/Allrun.paraStudy -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/constant/g -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/error.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/expected_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/expected_results.csv -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/results_shearedDisc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/results_shearedDisc.csv -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/system/blockMeshDict -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/system/controlDict -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/system/decomposeParDict -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/system/fvSchemes -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/system/fvSolution -------------------------------------------------------------------------------- /testsuite/advection/test-vortexShearedDisc/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/advection/test-vortexShearedDisc/system/topoSetDict -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/0.orig/fluid/T -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/0.orig/fluid/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/0.orig/fluid/T.air -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/0.orig/fluid/T.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/0.orig/fluid/T.water -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/0.orig/fluid/U -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/0.orig/fluid/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/0.orig/fluid/alpha.water -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/0.orig/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/0.orig/fluid/p -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/0.orig/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/0.orig/fluid/p_rgh -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/Allclean -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/Allrun -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/constant/fluid/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/constant/fluid/polyMesh/faces -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/constant/fluid/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/constant/fluid/polyMesh/owner -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/constant/fluid/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/constant/fluid/polyMesh/points -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/constant/g -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/constant/regionProperties -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/expected_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/expected_results.csv -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/results_Stefan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/results_Stefan.csv -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/system/controlDict -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/system/fluid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/system/fluid/blockMeshDict -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/system/fluid/fvSchemes -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/system/fluid/fvSolution -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/system/fluid/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/system/fluid/setFieldsDict -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/system/fvSchemes -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/system/fvSolution -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/system/simulationParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/system/simulationParameter -------------------------------------------------------------------------------- /testsuite/phaseChange/stefanProblem/test_stefanProblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/stefanProblem/test_stefanProblem.py -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/0.orig/fluid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/0.orig/fluid/T -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/0.orig/fluid/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/0.orig/fluid/T.air -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/0.orig/fluid/T.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/0.orig/fluid/T.water -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/0.orig/fluid/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/0.orig/fluid/U -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/0.orig/fluid/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/0.orig/fluid/alpha.water -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/0.orig/fluid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/0.orig/fluid/p -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/0.orig/fluid/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/0.orig/fluid/p_rgh -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/Allclean -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/Allrun -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/T01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/T01.csv -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/analyticalResults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/analyticalResults.csv -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/constant/g -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/constant/regionProperties -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/expected_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/expected_results.csv -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/system/controlDict -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/system/fluid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/system/fluid/blockMeshDict -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/system/fluid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/system/fluid/fvSchemes -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/system/fluid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/system/fluid/fvSolution -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/system/fluid/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/system/fluid/setFieldsDict -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/system/fvSolution -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/system/simulationParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/system/simulationParameter -------------------------------------------------------------------------------- /testsuite/phaseChange/suckingInterface/test_suckingInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/phaseChange/suckingInterface/test_suckingInterface.py -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/0.orig/U -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/0.orig/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/0.orig/alpha.water -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/0.orig/p -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/0.orig/p_rgh -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/0.orig/pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/0.orig/pc -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/Allclean -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/Allrun -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/constant/dynamicMeshDict -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/constant/g -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/constant/transportProperties -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/constant/turbulenceProperties -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/expected_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/expected_results.csv -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/getResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/getResults.py -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/results_sinWave.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/results_sinWave.csv -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/sinwave_prosperetti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/sinwave_prosperetti.py -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/blockMeshDict -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/controlDict -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/decomposeParDict -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/fvSchemes -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/fvSolution -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/initAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/initAlphaFieldDict -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/setAlphaFieldDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/setAlphaFieldDict -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/simulationParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/simulationParameter -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/system/simulationParameter.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/system/simulationParameter.orig -------------------------------------------------------------------------------- /testsuite/surfaceTension/sinWave/test_sinWave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-RY/TwoPhaseFlow/HEAD/testsuite/surfaceTension/sinWave/test_sinWave.py --------------------------------------------------------------------------------