├── .dockerignore ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── RELEASE-NOTES.md ├── docker ├── Dockerfile_elmer84_of6 ├── Dockerfile_elmer84_of6_debug ├── Dockerfile_elmerdev_of7 ├── Dockerfile_eof ├── Dockerfile_pv54_mesa ├── Dockerfile_pv56_mesa ├── travisDockerPush.sh └── user-mapping.sh ├── etc └── bashrc ├── libs ├── Elmer2OpenFOAM.F90 ├── OpenFOAM2Elmer.F90 ├── commSplit │ ├── 2 │ │ ├── PstreamGlobals.C │ │ ├── PstreamGlobals.H │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ ├── UPstream.C │ │ ├── allReduce.H │ │ └── allReduceTemplates.C │ ├── 3 │ │ ├── PstreamGlobals.C │ │ ├── PstreamGlobals.H │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ ├── UPstream.C │ │ ├── allReduce.H │ │ └── allReduceTemplates.C │ ├── 4 │ │ ├── PstreamGlobals.C │ │ ├── PstreamGlobals.H │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ ├── UPstream.C │ │ ├── allReduce.H │ │ └── allReduceTemplates.C │ ├── 5 │ │ ├── PstreamGlobals.C │ │ ├── PstreamGlobals.H │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ ├── UPstream.C │ │ ├── allReduce.H │ │ └── allReduceTemplates.C │ ├── Make │ │ ├── files │ │ └── options │ └── v1812 │ │ ├── PstreamGlobals.C │ │ ├── PstreamGlobals.H │ │ ├── UIPread.C │ │ ├── UOPwrite.C │ │ ├── UPstream.C │ │ ├── allReduce.H │ │ └── allReduceTemplates.C └── coupleElmer │ ├── Elmer.C │ ├── Elmer.H │ └── Make │ ├── files │ └── options ├── solvers ├── interpolationTestFoam │ ├── Make │ │ ├── files │ │ └── options │ └── interpolationTestFoam.C ├── mhdInterFoam5 │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── alphaCourantNo.H │ ├── alphaEqn.H │ ├── alphaEqnSubCycle.H │ ├── correctPhi.H │ ├── createFields.H │ ├── mhdInterFoam.C │ ├── pEqn.H │ ├── setDeltaT.H │ └── setRDeltaT.H ├── mhdInterFoam6 │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── VoF │ │ ├── alphaCourantNo.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── createAlphaFluxes.H │ │ ├── setDeltaT.H │ │ └── setRDeltaT.H │ ├── alphaSuSp.H │ ├── correctPhi.H │ ├── createFields.H │ ├── initCorrectPhi.H │ ├── mhdInterFoam.C │ ├── pEqn.H │ └── rhofs.H ├── mhdInterFoam7 │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── VoF │ │ ├── alphaCourantNo.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── createAlphaFluxes.H │ │ ├── setDeltaT.H │ │ └── setRDeltaT.H │ ├── alphaSuSp.H │ ├── correctPhi.H │ ├── createFields.H │ ├── initCorrectPhi.H │ ├── mhdInterFoam.C │ ├── pEqn.H │ └── rhofs.H ├── mhdThermoInterFoam5 │ ├── Make │ │ ├── files │ │ └── options │ ├── TEqn.H │ ├── TableVisc │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── TableVisc.C │ │ └── TableVisc.H │ ├── UEqn.H │ ├── alphaCourantNo.H │ ├── alphaEqn.H │ ├── alphaEqnSubCycle.H │ ├── correctPhi.H │ ├── createFields.H │ ├── mhdThermoInterFoam.C │ ├── pEqn.H │ ├── setDeltaT.H │ └── setRDeltaT.H └── mhdVxBPimpleFoam5 │ ├── Make │ ├── files │ └── options │ ├── UEqn.H │ ├── createFields.H │ ├── mhdVxBPimpleFoam.C │ └── pEqn.H └── tests ├── interpolationTest ├── 0 │ ├── T │ └── realT ├── InterpolationTester.F90 ├── constant │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ └── points │ └── transportProperties ├── dg.sif ├── elem.sif ├── ip.sif ├── meshElmer │ ├── mesh.boundary │ ├── mesh.elements │ ├── mesh.header │ ├── mesh.names │ └── mesh.nodes ├── runTravisTest.sh └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── levitation2D ├── 0 │ ├── JxB │ ├── U │ ├── alpha.melt │ ├── alpha.melt.orig │ ├── epsilon │ ├── k │ ├── nut │ ├── omega │ └── p_rgh ├── case.sif ├── constant │ ├── dynamicMeshDict │ ├── g │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ └── points │ ├── transportProperties │ └── turbulenceProperties ├── meshElmer │ ├── mesh.boundary │ ├── mesh.elements │ ├── mesh.header │ ├── mesh.names │ └── mesh.nodes ├── runTravisTest.sh └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── extrudeMeshDict │ ├── fvSchemes │ ├── fvSolution │ ├── mapFieldsDict │ ├── setFieldsDict │ └── snappyHexMeshDict └── travisTests.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | partitioning.* 2 | processor* 3 | runs/ 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /docker/Dockerfile_elmer84_of6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/docker/Dockerfile_elmer84_of6 -------------------------------------------------------------------------------- /docker/Dockerfile_elmer84_of6_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/docker/Dockerfile_elmer84_of6_debug -------------------------------------------------------------------------------- /docker/Dockerfile_elmerdev_of7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/docker/Dockerfile_elmerdev_of7 -------------------------------------------------------------------------------- /docker/Dockerfile_eof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/docker/Dockerfile_eof -------------------------------------------------------------------------------- /docker/Dockerfile_pv54_mesa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/docker/Dockerfile_pv54_mesa -------------------------------------------------------------------------------- /docker/Dockerfile_pv56_mesa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/docker/Dockerfile_pv56_mesa -------------------------------------------------------------------------------- /docker/travisDockerPush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/docker/travisDockerPush.sh -------------------------------------------------------------------------------- /docker/user-mapping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/docker/user-mapping.sh -------------------------------------------------------------------------------- /etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/etc/bashrc -------------------------------------------------------------------------------- /libs/Elmer2OpenFOAM.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/Elmer2OpenFOAM.F90 -------------------------------------------------------------------------------- /libs/OpenFOAM2Elmer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/OpenFOAM2Elmer.F90 -------------------------------------------------------------------------------- /libs/commSplit/2/PstreamGlobals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/2/PstreamGlobals.C -------------------------------------------------------------------------------- /libs/commSplit/2/PstreamGlobals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/2/PstreamGlobals.H -------------------------------------------------------------------------------- /libs/commSplit/2/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/2/UIPread.C -------------------------------------------------------------------------------- /libs/commSplit/2/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/2/UOPwrite.C -------------------------------------------------------------------------------- /libs/commSplit/2/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/2/UPstream.C -------------------------------------------------------------------------------- /libs/commSplit/2/allReduce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/2/allReduce.H -------------------------------------------------------------------------------- /libs/commSplit/2/allReduceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/2/allReduceTemplates.C -------------------------------------------------------------------------------- /libs/commSplit/3/PstreamGlobals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/3/PstreamGlobals.C -------------------------------------------------------------------------------- /libs/commSplit/3/PstreamGlobals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/3/PstreamGlobals.H -------------------------------------------------------------------------------- /libs/commSplit/3/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/3/UIPread.C -------------------------------------------------------------------------------- /libs/commSplit/3/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/3/UOPwrite.C -------------------------------------------------------------------------------- /libs/commSplit/3/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/3/UPstream.C -------------------------------------------------------------------------------- /libs/commSplit/3/allReduce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/3/allReduce.H -------------------------------------------------------------------------------- /libs/commSplit/3/allReduceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/3/allReduceTemplates.C -------------------------------------------------------------------------------- /libs/commSplit/4/PstreamGlobals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/4/PstreamGlobals.C -------------------------------------------------------------------------------- /libs/commSplit/4/PstreamGlobals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/4/PstreamGlobals.H -------------------------------------------------------------------------------- /libs/commSplit/4/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/4/UIPread.C -------------------------------------------------------------------------------- /libs/commSplit/4/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/4/UOPwrite.C -------------------------------------------------------------------------------- /libs/commSplit/4/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/4/UPstream.C -------------------------------------------------------------------------------- /libs/commSplit/4/allReduce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/4/allReduce.H -------------------------------------------------------------------------------- /libs/commSplit/4/allReduceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/4/allReduceTemplates.C -------------------------------------------------------------------------------- /libs/commSplit/5/PstreamGlobals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/5/PstreamGlobals.C -------------------------------------------------------------------------------- /libs/commSplit/5/PstreamGlobals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/5/PstreamGlobals.H -------------------------------------------------------------------------------- /libs/commSplit/5/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/5/UIPread.C -------------------------------------------------------------------------------- /libs/commSplit/5/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/5/UOPwrite.C -------------------------------------------------------------------------------- /libs/commSplit/5/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/5/UPstream.C -------------------------------------------------------------------------------- /libs/commSplit/5/allReduce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/5/allReduce.H -------------------------------------------------------------------------------- /libs/commSplit/5/allReduceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/5/allReduceTemplates.C -------------------------------------------------------------------------------- /libs/commSplit/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/Make/files -------------------------------------------------------------------------------- /libs/commSplit/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/Make/options -------------------------------------------------------------------------------- /libs/commSplit/v1812/PstreamGlobals.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/v1812/PstreamGlobals.C -------------------------------------------------------------------------------- /libs/commSplit/v1812/PstreamGlobals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/v1812/PstreamGlobals.H -------------------------------------------------------------------------------- /libs/commSplit/v1812/UIPread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/v1812/UIPread.C -------------------------------------------------------------------------------- /libs/commSplit/v1812/UOPwrite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/v1812/UOPwrite.C -------------------------------------------------------------------------------- /libs/commSplit/v1812/UPstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/v1812/UPstream.C -------------------------------------------------------------------------------- /libs/commSplit/v1812/allReduce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/v1812/allReduce.H -------------------------------------------------------------------------------- /libs/commSplit/v1812/allReduceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/commSplit/v1812/allReduceTemplates.C -------------------------------------------------------------------------------- /libs/coupleElmer/Elmer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/coupleElmer/Elmer.C -------------------------------------------------------------------------------- /libs/coupleElmer/Elmer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/coupleElmer/Elmer.H -------------------------------------------------------------------------------- /libs/coupleElmer/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/coupleElmer/Make/files -------------------------------------------------------------------------------- /libs/coupleElmer/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/libs/coupleElmer/Make/options -------------------------------------------------------------------------------- /solvers/interpolationTestFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/interpolationTestFoam/Make/files -------------------------------------------------------------------------------- /solvers/interpolationTestFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/interpolationTestFoam/Make/options -------------------------------------------------------------------------------- /solvers/interpolationTestFoam/interpolationTestFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/interpolationTestFoam/interpolationTestFoam.C -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/Make/files -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/Make/options -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/UEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/alphaCourantNo.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/alphaEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/correctPhi.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/createFields.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/mhdInterFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/mhdInterFoam.C -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/pEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/setDeltaT.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam5/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam5/setRDeltaT.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/Make/files -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/Make/options -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/UEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/VoF/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/VoF/alphaCourantNo.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/VoF/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/VoF/alphaEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/VoF/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/VoF/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/VoF/createAlphaFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/VoF/createAlphaFluxes.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/VoF/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/VoF/setDeltaT.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/VoF/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/VoF/setRDeltaT.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/alphaSuSp.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/correctPhi.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/createFields.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/initCorrectPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/initCorrectPhi.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/mhdInterFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/mhdInterFoam.C -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/pEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam6/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam6/rhofs.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/Make/files -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/Make/options -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/UEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/VoF/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/VoF/alphaCourantNo.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/VoF/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/VoF/alphaEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/VoF/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/VoF/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/VoF/createAlphaFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/VoF/createAlphaFluxes.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/VoF/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/VoF/setDeltaT.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/VoF/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/VoF/setRDeltaT.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/alphaSuSp.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/correctPhi.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/createFields.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/initCorrectPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/initCorrectPhi.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/mhdInterFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/mhdInterFoam.C -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/pEqn.H -------------------------------------------------------------------------------- /solvers/mhdInterFoam7/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdInterFoam7/rhofs.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/Make/files -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/Make/options -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/TEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/TEqn.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/TableVisc/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/TableVisc/Make/files -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/TableVisc/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/TableVisc/Make/options -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/TableVisc/TableVisc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/TableVisc/TableVisc.C -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/TableVisc/TableVisc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/TableVisc/TableVisc.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/UEqn.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/alphaCourantNo.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/alphaEqn.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/correctPhi.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/createFields.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/mhdThermoInterFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/mhdThermoInterFoam.C -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/pEqn.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/setDeltaT.H -------------------------------------------------------------------------------- /solvers/mhdThermoInterFoam5/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdThermoInterFoam5/setRDeltaT.H -------------------------------------------------------------------------------- /solvers/mhdVxBPimpleFoam5/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdVxBPimpleFoam5/Make/files -------------------------------------------------------------------------------- /solvers/mhdVxBPimpleFoam5/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdVxBPimpleFoam5/Make/options -------------------------------------------------------------------------------- /solvers/mhdVxBPimpleFoam5/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdVxBPimpleFoam5/UEqn.H -------------------------------------------------------------------------------- /solvers/mhdVxBPimpleFoam5/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdVxBPimpleFoam5/createFields.H -------------------------------------------------------------------------------- /solvers/mhdVxBPimpleFoam5/mhdVxBPimpleFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdVxBPimpleFoam5/mhdVxBPimpleFoam.C -------------------------------------------------------------------------------- /solvers/mhdVxBPimpleFoam5/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/solvers/mhdVxBPimpleFoam5/pEqn.H -------------------------------------------------------------------------------- /tests/interpolationTest/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/0/T -------------------------------------------------------------------------------- /tests/interpolationTest/0/realT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/0/realT -------------------------------------------------------------------------------- /tests/interpolationTest/InterpolationTester.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/InterpolationTester.F90 -------------------------------------------------------------------------------- /tests/interpolationTest/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tests/interpolationTest/constant/polyMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/constant/polyMesh/cellZones -------------------------------------------------------------------------------- /tests/interpolationTest/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/constant/polyMesh/faces -------------------------------------------------------------------------------- /tests/interpolationTest/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tests/interpolationTest/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/constant/polyMesh/owner -------------------------------------------------------------------------------- /tests/interpolationTest/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/constant/polyMesh/points -------------------------------------------------------------------------------- /tests/interpolationTest/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/constant/transportProperties -------------------------------------------------------------------------------- /tests/interpolationTest/dg.sif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/dg.sif -------------------------------------------------------------------------------- /tests/interpolationTest/elem.sif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/elem.sif -------------------------------------------------------------------------------- /tests/interpolationTest/ip.sif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/ip.sif -------------------------------------------------------------------------------- /tests/interpolationTest/meshElmer/mesh.boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/meshElmer/mesh.boundary -------------------------------------------------------------------------------- /tests/interpolationTest/meshElmer/mesh.elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/meshElmer/mesh.elements -------------------------------------------------------------------------------- /tests/interpolationTest/meshElmer/mesh.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/meshElmer/mesh.header -------------------------------------------------------------------------------- /tests/interpolationTest/meshElmer/mesh.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/meshElmer/mesh.names -------------------------------------------------------------------------------- /tests/interpolationTest/meshElmer/mesh.nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/meshElmer/mesh.nodes -------------------------------------------------------------------------------- /tests/interpolationTest/runTravisTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/runTravisTest.sh -------------------------------------------------------------------------------- /tests/interpolationTest/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/system/blockMeshDict -------------------------------------------------------------------------------- /tests/interpolationTest/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/system/controlDict -------------------------------------------------------------------------------- /tests/interpolationTest/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/system/decomposeParDict -------------------------------------------------------------------------------- /tests/interpolationTest/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/system/fvSchemes -------------------------------------------------------------------------------- /tests/interpolationTest/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/interpolationTest/system/fvSolution -------------------------------------------------------------------------------- /tests/levitation2D/0/JxB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/JxB -------------------------------------------------------------------------------- /tests/levitation2D/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/U -------------------------------------------------------------------------------- /tests/levitation2D/0/alpha.melt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/alpha.melt -------------------------------------------------------------------------------- /tests/levitation2D/0/alpha.melt.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/alpha.melt.orig -------------------------------------------------------------------------------- /tests/levitation2D/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/epsilon -------------------------------------------------------------------------------- /tests/levitation2D/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/k -------------------------------------------------------------------------------- /tests/levitation2D/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/nut -------------------------------------------------------------------------------- /tests/levitation2D/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/omega -------------------------------------------------------------------------------- /tests/levitation2D/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/0/p_rgh -------------------------------------------------------------------------------- /tests/levitation2D/case.sif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/case.sif -------------------------------------------------------------------------------- /tests/levitation2D/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tests/levitation2D/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/g -------------------------------------------------------------------------------- /tests/levitation2D/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tests/levitation2D/constant/polyMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/polyMesh/cellZones -------------------------------------------------------------------------------- /tests/levitation2D/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/polyMesh/faces -------------------------------------------------------------------------------- /tests/levitation2D/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tests/levitation2D/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/polyMesh/owner -------------------------------------------------------------------------------- /tests/levitation2D/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/polyMesh/points -------------------------------------------------------------------------------- /tests/levitation2D/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/transportProperties -------------------------------------------------------------------------------- /tests/levitation2D/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/constant/turbulenceProperties -------------------------------------------------------------------------------- /tests/levitation2D/meshElmer/mesh.boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/meshElmer/mesh.boundary -------------------------------------------------------------------------------- /tests/levitation2D/meshElmer/mesh.elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/meshElmer/mesh.elements -------------------------------------------------------------------------------- /tests/levitation2D/meshElmer/mesh.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/meshElmer/mesh.header -------------------------------------------------------------------------------- /tests/levitation2D/meshElmer/mesh.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/meshElmer/mesh.names -------------------------------------------------------------------------------- /tests/levitation2D/meshElmer/mesh.nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/meshElmer/mesh.nodes -------------------------------------------------------------------------------- /tests/levitation2D/runTravisTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/runTravisTest.sh -------------------------------------------------------------------------------- /tests/levitation2D/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/blockMeshDict -------------------------------------------------------------------------------- /tests/levitation2D/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/controlDict -------------------------------------------------------------------------------- /tests/levitation2D/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/decomposeParDict -------------------------------------------------------------------------------- /tests/levitation2D/system/extrudeMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/extrudeMeshDict -------------------------------------------------------------------------------- /tests/levitation2D/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/fvSchemes -------------------------------------------------------------------------------- /tests/levitation2D/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/fvSolution -------------------------------------------------------------------------------- /tests/levitation2D/system/mapFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/mapFieldsDict -------------------------------------------------------------------------------- /tests/levitation2D/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/setFieldsDict -------------------------------------------------------------------------------- /tests/levitation2D/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/levitation2D/system/snappyHexMeshDict -------------------------------------------------------------------------------- /tests/travisTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvencels/EOF-Library/HEAD/tests/travisTests.sh --------------------------------------------------------------------------------