├── .gitignore ├── LICENSE ├── README.md ├── src ├── Make │ ├── files │ ├── linux64GccDPInt32Debug │ │ ├── options │ │ ├── sourceFiles │ │ └── variables │ ├── linux64GccDPInt32Opt │ │ ├── options │ │ ├── sourceFiles │ │ └── variables │ └── options ├── dynamicRefine2DFvMesh │ ├── dynamicRefine2DFvMesh.C │ └── dynamicRefine2DFvMesh.H └── hexRef2D │ ├── hexRef2D.C │ └── hexRef2D.H └── tutorial └── interFoam └── damBreak ├── 0 ├── U ├── alpha.water ├── alpha.water.orig └── p_rgh ├── .gitignore ├── Allrun ├── Screenshot from 2019-04-18 14-46-42.png ├── alpha-with-refinement.gif ├── constant ├── dynamicMeshDict ├── g ├── polyMesh │ ├── boundary │ ├── faces │ ├── neighbour │ ├── owner │ └── points ├── transportProperties └── turbulenceProperties ├── meshRefinement-2d.gif ├── meshRefinement-3d.gif └── system ├── blockMeshDict ├── controlDict ├── decomposeParDict ├── fvSchemes ├── fvSolution ├── sampling └── setFieldsDict /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/README.md -------------------------------------------------------------------------------- /src/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/Make/files -------------------------------------------------------------------------------- /src/Make/linux64GccDPInt32Debug/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/Make/linux64GccDPInt32Debug/options -------------------------------------------------------------------------------- /src/Make/linux64GccDPInt32Debug/sourceFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/Make/linux64GccDPInt32Debug/sourceFiles -------------------------------------------------------------------------------- /src/Make/linux64GccDPInt32Debug/variables: -------------------------------------------------------------------------------- 1 | LIB = $(FOAM_USER_LIBBIN)/libTest2dDynamicRefine 2 | -------------------------------------------------------------------------------- /src/Make/linux64GccDPInt32Opt/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/Make/linux64GccDPInt32Opt/options -------------------------------------------------------------------------------- /src/Make/linux64GccDPInt32Opt/sourceFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/Make/linux64GccDPInt32Opt/sourceFiles -------------------------------------------------------------------------------- /src/Make/linux64GccDPInt32Opt/variables: -------------------------------------------------------------------------------- 1 | LIB = $(FOAM_USER_LIBBIN)/libdynamicRefine2D 2 | -------------------------------------------------------------------------------- /src/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/Make/options -------------------------------------------------------------------------------- /src/dynamicRefine2DFvMesh/dynamicRefine2DFvMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/dynamicRefine2DFvMesh/dynamicRefine2DFvMesh.C -------------------------------------------------------------------------------- /src/dynamicRefine2DFvMesh/dynamicRefine2DFvMesh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/dynamicRefine2DFvMesh/dynamicRefine2DFvMesh.H -------------------------------------------------------------------------------- /src/hexRef2D/hexRef2D.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/hexRef2D/hexRef2D.C -------------------------------------------------------------------------------- /src/hexRef2D/hexRef2D.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/src/hexRef2D/hexRef2D.H -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/.gitignore -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/0/U -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/0/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/0/alpha.water -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/0/alpha.water.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/0/alpha.water.orig -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/0/p_rgh -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/Allrun -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/Screenshot from 2019-04-18 14-46-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/Screenshot from 2019-04-18 14-46-42.png -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/alpha-with-refinement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/alpha-with-refinement.gif -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/g -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/transportProperties -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/meshRefinement-2d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/meshRefinement-2d.gif -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/meshRefinement-3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/meshRefinement-3d.gif -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/system/blockMeshDict -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/system/controlDict -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/system/decomposeParDict -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/system/fvSchemes -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/system/fvSolution -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/system/sampling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/system/sampling -------------------------------------------------------------------------------- /tutorial/interFoam/damBreak/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krajit/dynamicRefine2DFvMesh/HEAD/tutorial/interFoam/damBreak/system/setFieldsDict --------------------------------------------------------------------------------