├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── OpenFOAM-2112 └── flowAroundCylinderGradientAMR │ ├── 0.model │ ├── U │ └── p │ ├── constant │ ├── dynamicMeshDict │ ├── kinematicCloudProperties │ ├── polyMesh │ │ ├── boundary │ │ ├── cellLevel │ │ ├── cellZones │ │ ├── faceZones │ │ ├── faces │ │ ├── level0Edge │ │ ├── neighbour │ │ ├── owner │ │ ├── pointLevel │ │ ├── pointZones │ │ ├── points │ │ ├── sets │ │ │ └── protectedCells │ │ └── surfaceIndex │ ├── transportProperties │ ├── triSurface │ │ └── cylinder.stl │ └── turbulenceProperties │ ├── open.foam │ ├── prepare.sh │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── meshQualityDict │ └── snappyHexMeshDict ├── README.MD └── images └── dynamicMeshRefinement.png /.gitignore: -------------------------------------------------------------------------------- 1 | gradientRefinement/ 2 | Anim 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/0.model/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/0.model/U -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/0.model/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/0.model/p -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/dynamicMeshDict -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/kinematicCloudProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/kinematicCloudProperties -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/boundary -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/cellLevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/cellLevel -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/cellZones -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/faceZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/faceZones -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/faces -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/level0Edge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/level0Edge -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/owner -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/pointLevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/pointLevel -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/pointZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/pointZones -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/points -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/sets/protectedCells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/sets/protectedCells -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/surfaceIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/polyMesh/surfaceIndex -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/transportProperties -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/triSurface/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/triSurface/cylinder.stl -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/constant/turbulenceProperties -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/open.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/prepare.sh -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/system/blockMeshDict -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/system/controlDict -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/system/decomposeParDict -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/system/fvSchemes -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/system/fvSolution -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/system/meshQualityDict -------------------------------------------------------------------------------- /OpenFOAM-2112/flowAroundCylinderGradientAMR/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/OpenFOAM-2112/flowAroundCylinderGradientAMR/system/snappyHexMeshDict -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/README.MD -------------------------------------------------------------------------------- /images/dynamicMeshRefinement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasbadano/GradientAMR/HEAD/images/dynamicMeshRefinement.png --------------------------------------------------------------------------------