├── .gitignore ├── Allwclean ├── Allwmake ├── COPYING ├── README.md ├── dynamicSmagorinsky ├── Make │ ├── files │ └── options ├── dynamicSmagorinsky.C ├── dynamicSmagorinsky.H └── makeDynamicSmagorinskyModel.C └── testCases └── channel395 ├── 0 ├── B.gz ├── U.gz ├── cellDist ├── k.gz ├── nuTilda.gz ├── nut.gz └── p.gz ├── 0.org ├── U ├── k ├── nuTilda ├── nut └── p ├── Allrun ├── constant ├── cellDecomposition ├── postChannelDict ├── transportProperties └── turbulenceProperties └── system ├── blockMeshDict ├── controlDict ├── decomposeParDict ├── fvOptions ├── fvSchemes └── fvSolution /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/.gitignore -------------------------------------------------------------------------------- /Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/Allwclean -------------------------------------------------------------------------------- /Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/Allwmake -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/README.md -------------------------------------------------------------------------------- /dynamicSmagorinsky/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/dynamicSmagorinsky/Make/files -------------------------------------------------------------------------------- /dynamicSmagorinsky/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/dynamicSmagorinsky/Make/options -------------------------------------------------------------------------------- /dynamicSmagorinsky/dynamicSmagorinsky.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/dynamicSmagorinsky/dynamicSmagorinsky.C -------------------------------------------------------------------------------- /dynamicSmagorinsky/dynamicSmagorinsky.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/dynamicSmagorinsky/dynamicSmagorinsky.H -------------------------------------------------------------------------------- /dynamicSmagorinsky/makeDynamicSmagorinskyModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/dynamicSmagorinsky/makeDynamicSmagorinskyModel.C -------------------------------------------------------------------------------- /testCases/channel395/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0.org/U -------------------------------------------------------------------------------- /testCases/channel395/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0.org/k -------------------------------------------------------------------------------- /testCases/channel395/0.org/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0.org/nuTilda -------------------------------------------------------------------------------- /testCases/channel395/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0.org/nut -------------------------------------------------------------------------------- /testCases/channel395/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0.org/p -------------------------------------------------------------------------------- /testCases/channel395/0/B.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0/B.gz -------------------------------------------------------------------------------- /testCases/channel395/0/U.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0/U.gz -------------------------------------------------------------------------------- /testCases/channel395/0/cellDist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0/cellDist -------------------------------------------------------------------------------- /testCases/channel395/0/k.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0/k.gz -------------------------------------------------------------------------------- /testCases/channel395/0/nuTilda.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0/nuTilda.gz -------------------------------------------------------------------------------- /testCases/channel395/0/nut.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0/nut.gz -------------------------------------------------------------------------------- /testCases/channel395/0/p.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/0/p.gz -------------------------------------------------------------------------------- /testCases/channel395/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/Allrun -------------------------------------------------------------------------------- /testCases/channel395/constant/cellDecomposition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/constant/cellDecomposition -------------------------------------------------------------------------------- /testCases/channel395/constant/postChannelDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/constant/postChannelDict -------------------------------------------------------------------------------- /testCases/channel395/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/constant/transportProperties -------------------------------------------------------------------------------- /testCases/channel395/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/constant/turbulenceProperties -------------------------------------------------------------------------------- /testCases/channel395/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/system/blockMeshDict -------------------------------------------------------------------------------- /testCases/channel395/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/system/controlDict -------------------------------------------------------------------------------- /testCases/channel395/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/system/decomposeParDict -------------------------------------------------------------------------------- /testCases/channel395/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/system/fvOptions -------------------------------------------------------------------------------- /testCases/channel395/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/system/fvSchemes -------------------------------------------------------------------------------- /testCases/channel395/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoPa/dynamicSmagorinsky/HEAD/testCases/channel395/system/fvSolution --------------------------------------------------------------------------------