├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── __init__.py ├── code_reference │ ├── case.rst │ ├── data_extraction.rst │ ├── plotting.rst │ ├── quantities.rst │ └── readers.rst ├── conf.py ├── figures │ └── cover.png ├── index.rst ├── make.bat └── tutorial │ └── turbulucid_tutorial.ipynb ├── pyproject.toml ├── tests ├── bin │ └── test_averageAlongAxis.py └── core │ ├── test_data_extraction.py │ └── test_readers.py └── turbulucid ├── __init__.py ├── bin ├── __init__.py ├── averageAlongAxis.py ├── averageAlongAxisPyVista.py └── averageAlongAxisStructured.py ├── core ├── __init__.py ├── case.py ├── data_extraction.py ├── plotting.py ├── quantities.py └── readers.py └── datasets ├── __init__.py ├── bfs ├── average │ ├── average_0.vtp │ ├── average_1.vtp │ ├── average_2.vtp │ ├── average_3.vtp │ ├── average_4.vtp │ ├── average_5.vtp │ └── average_6.vtp └── bfs.vtm ├── test_case_1 ├── 0 │ ├── scalarField │ ├── symtensorField │ ├── tensorField │ └── vectorField ├── averaged.vtm ├── averaged │ ├── averaged_0.vtp │ ├── averaged_1.vtp │ ├── averaged_2.vtp │ ├── averaged_3.vtp │ ├── averaged_4.vtp │ ├── averaged_5.vtp │ ├── averaged_6.vtp │ └── averaged_7.vtp ├── averagingConfig ├── constant │ └── polyMesh │ │ ├── boundary │ │ ├── cellZones │ │ ├── faceZones │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── pointZones │ │ ├── points │ │ └── sets │ │ ├── internal │ │ └── nonOrthoFaces ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── test_case_1.foam └── test_mesh.geo └── test_case_block ├── 0 ├── scalarField ├── symtensorField ├── tensorField └── vectorField ├── averaged.vtm ├── averaged ├── averaged_0.vtp ├── averaged_1.vtp ├── averaged_2.vtp ├── averaged_3.vtp └── averaged_4.vtp ├── constant └── polyMesh │ ├── boundary │ ├── faces │ ├── neighbour │ ├── owner │ └── points ├── system ├── blockMeshDict ├── controlDict ├── fvSchemes └── fvSolution └── test_case_block.foam /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/code_reference/case.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/code_reference/case.rst -------------------------------------------------------------------------------- /docs/code_reference/data_extraction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/code_reference/data_extraction.rst -------------------------------------------------------------------------------- /docs/code_reference/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/code_reference/plotting.rst -------------------------------------------------------------------------------- /docs/code_reference/quantities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/code_reference/quantities.rst -------------------------------------------------------------------------------- /docs/code_reference/readers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/code_reference/readers.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/figures/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/figures/cover.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/tutorial/turbulucid_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/docs/tutorial/turbulucid_tutorial.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/bin/test_averageAlongAxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/tests/bin/test_averageAlongAxis.py -------------------------------------------------------------------------------- /tests/core/test_data_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/tests/core/test_data_extraction.py -------------------------------------------------------------------------------- /tests/core/test_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/tests/core/test_readers.py -------------------------------------------------------------------------------- /turbulucid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/__init__.py -------------------------------------------------------------------------------- /turbulucid/bin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/bin/__init__.py -------------------------------------------------------------------------------- /turbulucid/bin/averageAlongAxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/bin/averageAlongAxis.py -------------------------------------------------------------------------------- /turbulucid/bin/averageAlongAxisPyVista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/bin/averageAlongAxisPyVista.py -------------------------------------------------------------------------------- /turbulucid/bin/averageAlongAxisStructured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/bin/averageAlongAxisStructured.py -------------------------------------------------------------------------------- /turbulucid/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/core/__init__.py -------------------------------------------------------------------------------- /turbulucid/core/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/core/case.py -------------------------------------------------------------------------------- /turbulucid/core/data_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/core/data_extraction.py -------------------------------------------------------------------------------- /turbulucid/core/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/core/plotting.py -------------------------------------------------------------------------------- /turbulucid/core/quantities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/core/quantities.py -------------------------------------------------------------------------------- /turbulucid/core/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/core/readers.py -------------------------------------------------------------------------------- /turbulucid/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turbulucid/datasets/bfs/average/average_0.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/bfs/average/average_0.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/bfs/average/average_1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/bfs/average/average_1.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/bfs/average/average_2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/bfs/average/average_2.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/bfs/average/average_3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/bfs/average/average_3.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/bfs/average/average_4.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/bfs/average/average_4.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/bfs/average/average_5.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/bfs/average/average_5.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/bfs/average/average_6.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/bfs/average/average_6.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/bfs/bfs.vtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/bfs/bfs.vtm -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/0/scalarField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/0/scalarField -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/0/symtensorField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/0/symtensorField -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/0/tensorField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/0/tensorField -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/0/vectorField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/0/vectorField -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged.vtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged.vtm -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged/averaged_0.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged/averaged_0.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged/averaged_1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged/averaged_1.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged/averaged_2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged/averaged_2.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged/averaged_3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged/averaged_3.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged/averaged_4.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged/averaged_4.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged/averaged_5.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged/averaged_5.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged/averaged_6.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged/averaged_6.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averaged/averaged_7.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averaged/averaged_7.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/averagingConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/averagingConfig -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/boundary -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/cellZones -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/faceZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/faceZones -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/faces -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/owner -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/pointZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/pointZones -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/points -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/sets/internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/sets/internal -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/constant/polyMesh/sets/nonOrthoFaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/constant/polyMesh/sets/nonOrthoFaces -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/system/blockMeshDict -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/system/controlDict -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/system/fvSchemes -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/system/fvSolution -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/test_case_1.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_1/test_mesh.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_1/test_mesh.geo -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/0/scalarField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/0/scalarField -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/0/symtensorField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/0/symtensorField -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/0/tensorField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/0/tensorField -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/0/vectorField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/0/vectorField -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/averaged.vtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/averaged.vtm -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/averaged/averaged_0.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/averaged/averaged_0.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/averaged/averaged_1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/averaged/averaged_1.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/averaged/averaged_2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/averaged/averaged_2.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/averaged/averaged_3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/averaged/averaged_3.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/averaged/averaged_4.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/averaged/averaged_4.vtp -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/constant/polyMesh/boundary -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/constant/polyMesh/faces -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/constant/polyMesh/owner -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/constant/polyMesh/points -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/system/blockMeshDict -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/system/controlDict -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/system/fvSchemes -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofeymukha/turbulucid/HEAD/turbulucid/datasets/test_case_block/system/fvSolution -------------------------------------------------------------------------------- /turbulucid/datasets/test_case_block/test_case_block.foam: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------