├── .gitattributes ├── bubble_column ├── 0 │ ├── U │ ├── alpha.water │ └── p_rgh ├── 0_org │ ├── U │ ├── alpha.water │ └── p_rgh ├── Allrun ├── constant │ ├── g │ ├── momentumTransport │ ├── transportProperties │ └── turbulenceProperties ├── questions │ ├── Area_ParaView (1).pdf │ └── Project (1).pdf └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict ├── elbow_joint ├── 0 │ ├── U │ ├── epsilon │ ├── k │ ├── nut │ └── p ├── 0_org │ ├── U │ ├── epsilon │ ├── k │ ├── nut │ └── p ├── Allrun ├── Mesh_1.unv ├── constant │ ├── momentumTransport │ └── transportProperties └── system │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── oc4_github ├── part1_geometry │ ├── oc4.stl │ └── oc4_tutorial.hdf └── part2_meshing │ ├── Allclean │ ├── Allrun.pre │ ├── constant │ ├── dynamicMeshDict │ ├── dynamicMeshDict_sixDof │ ├── dynamicMeshDict_static │ ├── extendedFeatureEdgeMesh │ │ ├── float.extendedFeatureEdgeMesh │ │ ├── float_concaveFeaturePts.obj │ │ ├── float_convexFeaturePts.obj │ │ ├── float_edgeDirections.obj │ │ ├── float_edgeMesh.obj │ │ ├── float_externalEdges.obj │ │ ├── float_flatEdges.obj │ │ ├── float_internalEdges.obj │ │ ├── float_mixedFeaturePts.obj │ │ ├── float_mixedFeaturePtsStructure.obj │ │ ├── float_multipleEdges.obj │ │ ├── float_openEdges.obj │ │ └── float_regionEdges.obj │ ├── g │ ├── transportProperties │ ├── triSurface │ │ ├── float.eMesh │ │ └── float.stl │ ├── turbulenceProperties │ └── waveProperties │ ├── float3.stl │ ├── mesh │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── fvSolution_org │ ├── meshQualityDict │ ├── refineMeshDict │ ├── setFieldsDict │ ├── snappyHexMeshDict │ ├── surfaceFeatureExtractDict │ ├── surfaceFeaturesDict │ ├── topoSetDict │ ├── topoSetDict.1 │ ├── topoSetDict.2 │ ├── topoSetDict.3 │ ├── topoSetDict.4 │ ├── topoSetDict.5 │ └── topoSetDict.6 ├── viv ├── 0 │ ├── U │ ├── p │ └── pointDisplacement ├── 0_org │ ├── U │ ├── epsilon │ ├── k │ ├── nuTilda │ ├── nut │ ├── omega │ ├── p │ └── pointDisplacement ├── constant │ ├── dynamicMeshDict │ ├── transportProperties │ ├── triSurface │ │ ├── cylinder.eMesh │ │ └── cylinder.stl │ └── turbulenceProperties ├── cylinder.hdf ├── force.dat ├── forces.py ├── position.py └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── meshQualityDict │ ├── snappyHexMeshDict │ ├── surfaceFeatureExtractDict │ └── surfaceFeaturesDict ├── viv_from_beginning ├── 0 │ ├── U │ ├── epsilon │ ├── k │ ├── nuTilda │ ├── nut │ ├── omega │ ├── p │ └── pointDisplacement ├── 0_org │ ├── U │ ├── epsilon │ ├── k │ ├── nuTilda │ ├── nut │ ├── omega │ ├── p │ └── pointDisplacement ├── constant │ ├── dynamicMeshDict │ ├── extendedFeatureEdgeMesh │ │ ├── cylinder.extendedFeatureEdgeMesh │ │ ├── cylinder_concaveFeaturePts.obj │ │ ├── cylinder_convexFeaturePts.obj │ │ ├── cylinder_edgeDirections.obj │ │ ├── cylinder_edgeMesh.obj │ │ ├── cylinder_externalEdges.obj │ │ ├── cylinder_flatEdges.obj │ │ ├── cylinder_internalEdges.obj │ │ ├── cylinder_mixedFeaturePts.obj │ │ ├── cylinder_mixedFeaturePtsStructure.obj │ │ ├── cylinder_multipleEdges.obj │ │ ├── cylinder_openEdges.obj │ │ └── cylinder_regionEdges.obj │ ├── polyMesh │ │ ├── boundary │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ └── points │ ├── transportProperties │ ├── triSurface │ │ ├── cylinder.eMesh │ │ └── cylinder.stl │ └── turbulenceProperties ├── cylinder.hdf ├── cylinder.stl └── system │ ├── blockMeshDict │ ├── blockMeshDict_final │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── meshQualityDict │ ├── snappyHexMeshDict │ ├── snappyHexMeshDict_org │ └── surfaceFeatureExtractDict ├── viv_of9 ├── 0 │ ├── U │ └── p ├── 0_org │ ├── U │ ├── epsilon │ ├── k │ ├── nuTilda │ ├── nut │ ├── omega │ ├── p │ └── pointDisplacement ├── constant │ ├── dynamicMeshDict │ ├── extendedFeatureEdgeMesh │ │ ├── cylinder.extendedFeatureEdgeMesh │ │ └── cylinder_edgeMesh.obj │ ├── transportProperties │ ├── triSurface │ │ ├── cylinder.eMesh │ │ └── cylinder.stl │ └── turbulenceProperties ├── cylinder.hdf ├── cylinder.stl └── system │ ├── blockMeshDict │ ├── blockMeshDict_final │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── meshQualityDict │ ├── snappyHexMeshDict │ ├── snappyHexMeshDict_org │ ├── surfaceFeatureExtractDict │ └── surfaceFeaturesDict └── viv_turbulence ├── 0 ├── U ├── k ├── nuTilda ├── nut ├── omega ├── p └── pointDisplacement ├── 0_org ├── U ├── k ├── nuTilda ├── nut ├── omega ├── p └── pointDisplacement ├── constant ├── dynamicMeshDict ├── dynamicMeshDict_dev ├── extendedFeatureEdgeMesh │ ├── cylinder.extendedFeatureEdgeMesh │ └── cylinder_edgeMesh.obj ├── polyMesh │ ├── boundary │ ├── cellLevel │ ├── cellZones │ ├── faceZones │ ├── faces │ ├── level0Edge │ ├── neighbour │ ├── owner │ ├── pointLevel │ ├── pointZones │ ├── points │ ├── sets │ │ ├── addedCells │ │ └── layerFaces │ └── surfaceIndex ├── transportProperties ├── triSurface │ ├── cylinder.eMesh │ └── cylinder.stl └── turbulenceProperties └── system ├── blockMeshDict ├── blockMeshDict_final ├── controlDict ├── decomposeParDict ├── fvSchemes ├── fvSolution ├── meshQualityDict ├── snappyHexMeshDict ├── surfaceFeatureExtractDict └── surfaceFeaturesDict /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/.gitattributes -------------------------------------------------------------------------------- /bubble_column/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/0/U -------------------------------------------------------------------------------- /bubble_column/0/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/0/alpha.water -------------------------------------------------------------------------------- /bubble_column/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/0/p_rgh -------------------------------------------------------------------------------- /bubble_column/0_org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/0_org/U -------------------------------------------------------------------------------- /bubble_column/0_org/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/0_org/alpha.water -------------------------------------------------------------------------------- /bubble_column/0_org/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/0_org/p_rgh -------------------------------------------------------------------------------- /bubble_column/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/Allrun -------------------------------------------------------------------------------- /bubble_column/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/constant/g -------------------------------------------------------------------------------- /bubble_column/constant/momentumTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/constant/momentumTransport -------------------------------------------------------------------------------- /bubble_column/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/constant/transportProperties -------------------------------------------------------------------------------- /bubble_column/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/constant/turbulenceProperties -------------------------------------------------------------------------------- /bubble_column/questions/Area_ParaView (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/questions/Area_ParaView (1).pdf -------------------------------------------------------------------------------- /bubble_column/questions/Project (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/questions/Project (1).pdf -------------------------------------------------------------------------------- /bubble_column/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/system/blockMeshDict -------------------------------------------------------------------------------- /bubble_column/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/system/controlDict -------------------------------------------------------------------------------- /bubble_column/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/system/decomposeParDict -------------------------------------------------------------------------------- /bubble_column/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/system/fvSchemes -------------------------------------------------------------------------------- /bubble_column/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/system/fvSolution -------------------------------------------------------------------------------- /bubble_column/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/bubble_column/system/setFieldsDict -------------------------------------------------------------------------------- /elbow_joint/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0/U -------------------------------------------------------------------------------- /elbow_joint/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0/epsilon -------------------------------------------------------------------------------- /elbow_joint/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0/k -------------------------------------------------------------------------------- /elbow_joint/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0/nut -------------------------------------------------------------------------------- /elbow_joint/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0/p -------------------------------------------------------------------------------- /elbow_joint/0_org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0_org/U -------------------------------------------------------------------------------- /elbow_joint/0_org/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0_org/epsilon -------------------------------------------------------------------------------- /elbow_joint/0_org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0_org/k -------------------------------------------------------------------------------- /elbow_joint/0_org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0_org/nut -------------------------------------------------------------------------------- /elbow_joint/0_org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/0_org/p -------------------------------------------------------------------------------- /elbow_joint/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/Allrun -------------------------------------------------------------------------------- /elbow_joint/Mesh_1.unv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/Mesh_1.unv -------------------------------------------------------------------------------- /elbow_joint/constant/momentumTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/constant/momentumTransport -------------------------------------------------------------------------------- /elbow_joint/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/constant/transportProperties -------------------------------------------------------------------------------- /elbow_joint/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/system/controlDict -------------------------------------------------------------------------------- /elbow_joint/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/system/fvSchemes -------------------------------------------------------------------------------- /elbow_joint/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/elbow_joint/system/fvSolution -------------------------------------------------------------------------------- /oc4_github/part1_geometry/oc4.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part1_geometry/oc4.stl -------------------------------------------------------------------------------- /oc4_github/part1_geometry/oc4_tutorial.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part1_geometry/oc4_tutorial.hdf -------------------------------------------------------------------------------- /oc4_github/part2_meshing/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/Allclean -------------------------------------------------------------------------------- /oc4_github/part2_meshing/Allrun.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/Allrun.pre -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/dynamicMeshDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/dynamicMeshDict_sixDof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/dynamicMeshDict_sixDof -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/dynamicMeshDict_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/dynamicMeshDict_static -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float.extendedFeatureEdgeMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float.extendedFeatureEdgeMesh -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_concaveFeaturePts.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_concaveFeaturePts.obj -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_convexFeaturePts.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_edgeDirections.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_edgeDirections.obj -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_edgeMesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_edgeMesh.obj -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_externalEdges.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_externalEdges.obj -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_flatEdges.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_internalEdges.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_internalEdges.obj -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_mixedFeaturePts.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_mixedFeaturePts.obj -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_mixedFeaturePtsStructure.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_mixedFeaturePtsStructure.obj -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_multipleEdges.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_openEdges.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/extendedFeatureEdgeMesh/float_regionEdges.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/g -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/transportProperties -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/triSurface/float.eMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/triSurface/float.eMesh -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/triSurface/float.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/triSurface/float.stl -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/turbulenceProperties -------------------------------------------------------------------------------- /oc4_github/part2_meshing/constant/waveProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/constant/waveProperties -------------------------------------------------------------------------------- /oc4_github/part2_meshing/float3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/float3.stl -------------------------------------------------------------------------------- /oc4_github/part2_meshing/mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/mesh -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/blockMeshDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/controlDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/decomposeParDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/fvSchemes -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/fvSolution -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/fvSolution_org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/fvSolution_org -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/meshQualityDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/refineMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/refineMeshDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/setFieldsDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/snappyHexMeshDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/surfaceFeaturesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/surfaceFeaturesDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/topoSetDict -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/topoSetDict.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/topoSetDict.1 -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/topoSetDict.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/topoSetDict.2 -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/topoSetDict.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/topoSetDict.3 -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/topoSetDict.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/topoSetDict.4 -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/topoSetDict.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/topoSetDict.5 -------------------------------------------------------------------------------- /oc4_github/part2_meshing/system/topoSetDict.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/oc4_github/part2_meshing/system/topoSetDict.6 -------------------------------------------------------------------------------- /viv/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0/U -------------------------------------------------------------------------------- /viv/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0/p -------------------------------------------------------------------------------- /viv/0/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0/pointDisplacement -------------------------------------------------------------------------------- /viv/0_org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0_org/U -------------------------------------------------------------------------------- /viv/0_org/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0_org/epsilon -------------------------------------------------------------------------------- /viv/0_org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0_org/k -------------------------------------------------------------------------------- /viv/0_org/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0_org/nuTilda -------------------------------------------------------------------------------- /viv/0_org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0_org/nut -------------------------------------------------------------------------------- /viv/0_org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0_org/omega -------------------------------------------------------------------------------- /viv/0_org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0_org/p -------------------------------------------------------------------------------- /viv/0_org/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/0_org/pointDisplacement -------------------------------------------------------------------------------- /viv/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/constant/dynamicMeshDict -------------------------------------------------------------------------------- /viv/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/constant/transportProperties -------------------------------------------------------------------------------- /viv/constant/triSurface/cylinder.eMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/constant/triSurface/cylinder.eMesh -------------------------------------------------------------------------------- /viv/constant/triSurface/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/constant/triSurface/cylinder.stl -------------------------------------------------------------------------------- /viv/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/constant/turbulenceProperties -------------------------------------------------------------------------------- /viv/cylinder.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/cylinder.hdf -------------------------------------------------------------------------------- /viv/force.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/force.dat -------------------------------------------------------------------------------- /viv/forces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/forces.py -------------------------------------------------------------------------------- /viv/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/position.py -------------------------------------------------------------------------------- /viv/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/blockMeshDict -------------------------------------------------------------------------------- /viv/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/controlDict -------------------------------------------------------------------------------- /viv/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/decomposeParDict -------------------------------------------------------------------------------- /viv/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/fvSchemes -------------------------------------------------------------------------------- /viv/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/fvSolution -------------------------------------------------------------------------------- /viv/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/meshQualityDict -------------------------------------------------------------------------------- /viv/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/snappyHexMeshDict -------------------------------------------------------------------------------- /viv/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /viv/system/surfaceFeaturesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv/system/surfaceFeaturesDict -------------------------------------------------------------------------------- /viv_from_beginning/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0/U -------------------------------------------------------------------------------- /viv_from_beginning/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0/epsilon -------------------------------------------------------------------------------- /viv_from_beginning/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0/k -------------------------------------------------------------------------------- /viv_from_beginning/0/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0/nuTilda -------------------------------------------------------------------------------- /viv_from_beginning/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0/nut -------------------------------------------------------------------------------- /viv_from_beginning/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0/omega -------------------------------------------------------------------------------- /viv_from_beginning/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0/p -------------------------------------------------------------------------------- /viv_from_beginning/0/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0/pointDisplacement -------------------------------------------------------------------------------- /viv_from_beginning/0_org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0_org/U -------------------------------------------------------------------------------- /viv_from_beginning/0_org/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0_org/epsilon -------------------------------------------------------------------------------- /viv_from_beginning/0_org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0_org/k -------------------------------------------------------------------------------- /viv_from_beginning/0_org/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0_org/nuTilda -------------------------------------------------------------------------------- /viv_from_beginning/0_org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0_org/nut -------------------------------------------------------------------------------- /viv_from_beginning/0_org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0_org/omega -------------------------------------------------------------------------------- /viv_from_beginning/0_org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0_org/p -------------------------------------------------------------------------------- /viv_from_beginning/0_org/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/0_org/pointDisplacement -------------------------------------------------------------------------------- /viv_from_beginning/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/dynamicMeshDict -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder.extendedFeatureEdgeMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder.extendedFeatureEdgeMesh -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_concaveFeaturePts.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_convexFeaturePts.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_edgeDirections.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_edgeDirections.obj -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_edgeMesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_edgeMesh.obj -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_externalEdges.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_externalEdges.obj -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_flatEdges.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_internalEdges.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_internalEdges.obj -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_mixedFeaturePts.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_mixedFeaturePtsStructure.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_multipleEdges.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_openEdges.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viv_from_beginning/constant/extendedFeatureEdgeMesh/cylinder_regionEdges.obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viv_from_beginning/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/polyMesh/boundary -------------------------------------------------------------------------------- /viv_from_beginning/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/polyMesh/faces -------------------------------------------------------------------------------- /viv_from_beginning/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /viv_from_beginning/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/polyMesh/owner -------------------------------------------------------------------------------- /viv_from_beginning/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/polyMesh/points -------------------------------------------------------------------------------- /viv_from_beginning/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/transportProperties -------------------------------------------------------------------------------- /viv_from_beginning/constant/triSurface/cylinder.eMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/triSurface/cylinder.eMesh -------------------------------------------------------------------------------- /viv_from_beginning/constant/triSurface/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/triSurface/cylinder.stl -------------------------------------------------------------------------------- /viv_from_beginning/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/constant/turbulenceProperties -------------------------------------------------------------------------------- /viv_from_beginning/cylinder.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/cylinder.hdf -------------------------------------------------------------------------------- /viv_from_beginning/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/cylinder.stl -------------------------------------------------------------------------------- /viv_from_beginning/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/blockMeshDict -------------------------------------------------------------------------------- /viv_from_beginning/system/blockMeshDict_final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/blockMeshDict_final -------------------------------------------------------------------------------- /viv_from_beginning/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/controlDict -------------------------------------------------------------------------------- /viv_from_beginning/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/decomposeParDict -------------------------------------------------------------------------------- /viv_from_beginning/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/fvSchemes -------------------------------------------------------------------------------- /viv_from_beginning/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/fvSolution -------------------------------------------------------------------------------- /viv_from_beginning/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/meshQualityDict -------------------------------------------------------------------------------- /viv_from_beginning/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/snappyHexMeshDict -------------------------------------------------------------------------------- /viv_from_beginning/system/snappyHexMeshDict_org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/snappyHexMeshDict_org -------------------------------------------------------------------------------- /viv_from_beginning/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_from_beginning/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /viv_of9/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0/U -------------------------------------------------------------------------------- /viv_of9/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0/p -------------------------------------------------------------------------------- /viv_of9/0_org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0_org/U -------------------------------------------------------------------------------- /viv_of9/0_org/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0_org/epsilon -------------------------------------------------------------------------------- /viv_of9/0_org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0_org/k -------------------------------------------------------------------------------- /viv_of9/0_org/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0_org/nuTilda -------------------------------------------------------------------------------- /viv_of9/0_org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0_org/nut -------------------------------------------------------------------------------- /viv_of9/0_org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0_org/omega -------------------------------------------------------------------------------- /viv_of9/0_org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0_org/p -------------------------------------------------------------------------------- /viv_of9/0_org/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/0_org/pointDisplacement -------------------------------------------------------------------------------- /viv_of9/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/constant/dynamicMeshDict -------------------------------------------------------------------------------- /viv_of9/constant/extendedFeatureEdgeMesh/cylinder.extendedFeatureEdgeMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/constant/extendedFeatureEdgeMesh/cylinder.extendedFeatureEdgeMesh -------------------------------------------------------------------------------- /viv_of9/constant/extendedFeatureEdgeMesh/cylinder_edgeMesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/constant/extendedFeatureEdgeMesh/cylinder_edgeMesh.obj -------------------------------------------------------------------------------- /viv_of9/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/constant/transportProperties -------------------------------------------------------------------------------- /viv_of9/constant/triSurface/cylinder.eMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/constant/triSurface/cylinder.eMesh -------------------------------------------------------------------------------- /viv_of9/constant/triSurface/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/constant/triSurface/cylinder.stl -------------------------------------------------------------------------------- /viv_of9/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/constant/turbulenceProperties -------------------------------------------------------------------------------- /viv_of9/cylinder.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/cylinder.hdf -------------------------------------------------------------------------------- /viv_of9/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/cylinder.stl -------------------------------------------------------------------------------- /viv_of9/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/blockMeshDict -------------------------------------------------------------------------------- /viv_of9/system/blockMeshDict_final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/blockMeshDict_final -------------------------------------------------------------------------------- /viv_of9/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/controlDict -------------------------------------------------------------------------------- /viv_of9/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/decomposeParDict -------------------------------------------------------------------------------- /viv_of9/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/fvSchemes -------------------------------------------------------------------------------- /viv_of9/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/fvSolution -------------------------------------------------------------------------------- /viv_of9/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/meshQualityDict -------------------------------------------------------------------------------- /viv_of9/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/snappyHexMeshDict -------------------------------------------------------------------------------- /viv_of9/system/snappyHexMeshDict_org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/snappyHexMeshDict_org -------------------------------------------------------------------------------- /viv_of9/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /viv_of9/system/surfaceFeaturesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_of9/system/surfaceFeaturesDict -------------------------------------------------------------------------------- /viv_turbulence/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0/U -------------------------------------------------------------------------------- /viv_turbulence/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0/k -------------------------------------------------------------------------------- /viv_turbulence/0/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0/nuTilda -------------------------------------------------------------------------------- /viv_turbulence/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0/nut -------------------------------------------------------------------------------- /viv_turbulence/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0/omega -------------------------------------------------------------------------------- /viv_turbulence/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0/p -------------------------------------------------------------------------------- /viv_turbulence/0/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0/pointDisplacement -------------------------------------------------------------------------------- /viv_turbulence/0_org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0_org/U -------------------------------------------------------------------------------- /viv_turbulence/0_org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0_org/k -------------------------------------------------------------------------------- /viv_turbulence/0_org/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0_org/nuTilda -------------------------------------------------------------------------------- /viv_turbulence/0_org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0_org/nut -------------------------------------------------------------------------------- /viv_turbulence/0_org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0_org/omega -------------------------------------------------------------------------------- /viv_turbulence/0_org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0_org/p -------------------------------------------------------------------------------- /viv_turbulence/0_org/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/0_org/pointDisplacement -------------------------------------------------------------------------------- /viv_turbulence/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/dynamicMeshDict -------------------------------------------------------------------------------- /viv_turbulence/constant/dynamicMeshDict_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/dynamicMeshDict_dev -------------------------------------------------------------------------------- /viv_turbulence/constant/extendedFeatureEdgeMesh/cylinder.extendedFeatureEdgeMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/extendedFeatureEdgeMesh/cylinder.extendedFeatureEdgeMesh -------------------------------------------------------------------------------- /viv_turbulence/constant/extendedFeatureEdgeMesh/cylinder_edgeMesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/extendedFeatureEdgeMesh/cylinder_edgeMesh.obj -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/boundary -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/cellLevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/cellLevel -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/cellZones -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/faceZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/faceZones -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/faces -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/level0Edge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/level0Edge -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/owner -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/pointLevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/pointLevel -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/pointZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/pointZones -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/points -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/sets/addedCells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/sets/addedCells -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/sets/layerFaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/sets/layerFaces -------------------------------------------------------------------------------- /viv_turbulence/constant/polyMesh/surfaceIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/polyMesh/surfaceIndex -------------------------------------------------------------------------------- /viv_turbulence/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/transportProperties -------------------------------------------------------------------------------- /viv_turbulence/constant/triSurface/cylinder.eMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/triSurface/cylinder.eMesh -------------------------------------------------------------------------------- /viv_turbulence/constant/triSurface/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/triSurface/cylinder.stl -------------------------------------------------------------------------------- /viv_turbulence/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/constant/turbulenceProperties -------------------------------------------------------------------------------- /viv_turbulence/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/blockMeshDict -------------------------------------------------------------------------------- /viv_turbulence/system/blockMeshDict_final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/blockMeshDict_final -------------------------------------------------------------------------------- /viv_turbulence/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/controlDict -------------------------------------------------------------------------------- /viv_turbulence/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/decomposeParDict -------------------------------------------------------------------------------- /viv_turbulence/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/fvSchemes -------------------------------------------------------------------------------- /viv_turbulence/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/fvSolution -------------------------------------------------------------------------------- /viv_turbulence/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/meshQualityDict -------------------------------------------------------------------------------- /viv_turbulence/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/snappyHexMeshDict -------------------------------------------------------------------------------- /viv_turbulence/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /viv_turbulence/system/surfaceFeaturesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thawtar/openfoam_tutorials/HEAD/viv_turbulence/system/surfaceFeaturesDict --------------------------------------------------------------------------------