gitextract_re6asacm/ ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── abruptContraction/ │ ├── interPhaseChangeFoam/ │ │ ├── 0/ │ │ │ ├── U │ │ │ ├── alpha.water │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ ├── p_rgh │ │ │ ├── phi │ │ │ └── s │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── Allrun.parallel │ │ ├── constant/ │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── probes │ │ ├── refineMeshDict.1 │ │ ├── refineMeshDict.2 │ │ ├── surfaces │ │ ├── topoSetDict.1 │ │ └── topoSetDict.2 │ ├── pimpleFoam/ │ │ ├── 0/ │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── Allrun.parallel │ │ ├── constant/ │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── probes │ │ └── surfaces │ ├── pisoFoam/ │ │ ├── 0/ │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ ├── p │ │ │ └── s │ │ ├── Allclean │ │ ├── Allrun │ │ ├── Allrun.parallel │ │ ├── constant/ │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── probes │ │ └── surfaces │ └── simpleFoam/ │ ├── 0/ │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant/ │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system/ │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── cavitatingBullet/ │ ├── 0/ │ │ ├── U │ │ ├── alpha.water │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant/ │ │ ├── g │ │ ├── transportProperties │ │ ├── triSurface/ │ │ │ └── README │ │ └── turbulenceProperties │ └── system/ │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── snappyHexMeshDict ├── fishChannel/ │ ├── 0/ │ │ ├── U │ │ ├── alpha.water.orig │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ └── p_rgh │ ├── Allclean │ ├── Allmesh │ ├── Allrun │ ├── constant/ │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── showCase.pvsm │ └── system/ │ ├── blockMeshDict │ ├── controlDict │ ├── createBafflesDict │ ├── createPatchDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── refineMeshDict │ ├── refineMeshDict.section1 │ ├── refineMeshDict.section2 │ ├── setFieldsDict │ ├── topoSetDict.outlet2 │ ├── topoSetDict.section1 │ └── topoSetDict.section2 ├── flatPlate/ │ ├── 0/ │ │ ├── U │ │ ├── U~ │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant/ │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system/ │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── linuxCheatSheet/ │ ├── Common linux command in OpenFoam.md │ └── linuxCheatSheet.docx ├── magnusEffect/ │ ├── 0/ │ │ ├── .svn/ │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base/ │ │ │ ├── U.svn-base │ │ │ └── p.svn-base │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nuTilda │ │ ├── nut │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── README.md │ ├── constant/ │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── magnus.geo │ └── system/ │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── mpiTest/ │ ├── Alltest │ └── damBreak4phaseFine/ │ ├── 0/ │ │ ├── U │ │ ├── U.air │ │ ├── U.mercury │ │ ├── U.oil │ │ ├── U.water │ │ ├── alpha.air.orig │ │ ├── alpha.mercury.orig │ │ ├── alpha.oil.orig │ │ ├── alpha.water.orig │ │ └── p_rgh │ ├── Allclean │ ├── Allsbatch │ ├── constant/ │ │ ├── g │ │ ├── motionProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system/ │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict ├── programmingTutorials/ │ ├── .gitignore │ ├── LICENSE │ ├── OFtutorial00_helloWorld/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial0.C │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── OFtutorial01_inputOutput/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial1.C │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ ├── customProperties │ │ │ └── transportProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── OFtutorial02_commandLineArgumentsAndOptions/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial2.C │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── OFtutorial03_understandingTheMesh/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial3.C │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── OFtutorial04_basicFieldOperations/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial4.C │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── OFtutorial05_basicParallelComputing/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial5.C │ │ ├── createFields.H │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── OFtutorial06_customClasses/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial6.C │ │ ├── customClass.C │ │ ├── customClass.H │ │ ├── derivedClass.C │ │ ├── derivedClass.H │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── OFtutorial07_customLibraries/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial7.C │ │ ├── createFields.H │ │ ├── customLibrary/ │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── customLibrary.C │ │ │ └── customLibrary.H │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── OFtutorial08_customBC/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── prescribedPipeInletFvPatchVectorField.C │ │ ├── prescribedPipeInletFvPatchVectorField.H │ │ └── testCase/ │ │ ├── 0.org/ │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── Allrun.mesh │ │ ├── constant/ │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── mirrorMeshDict │ │ ├── runConditions │ │ └── sampleDict │ ├── OFtutorial09_runtimePostprocessingUtility/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── pipeCalc.C │ │ ├── pipeCalc.H │ │ └── testCase/ │ │ ├── 0.org/ │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── Allrun.mesh │ │ ├── constant/ │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system/ │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── mirrorMeshDict │ │ ├── runConditions │ │ ├── sampleDict │ │ └── topoSetDict │ ├── OFtutorial10_transportEquation/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial10.C │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ └── beta │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ ├── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── viewData.pvsm │ ├── OFtutorial11_modifyingTheMesh/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── OFtutorial11.C │ │ ├── meshPoints.geo │ │ └── testCase/ │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ └── transportProperties │ │ ├── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── viewGrid.pvsm │ ├── OFtutorial12_momentumSource/ │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make/ │ │ │ ├── files │ │ │ └── options │ │ ├── customActuationDiskSource.C │ │ ├── customActuationDiskSource.H │ │ ├── customActuationDiskSourceTemplates.C │ │ └── testCase/ │ │ ├── 0/ │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant/ │ │ │ ├── fvOptions │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── viewData.pvsm │ ├── OldReleases/ │ │ └── OF301/ │ │ ├── OFtutorial0_helloWorld/ │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── OFtutorial0.C │ │ │ └── testCase/ │ │ │ ├── 0/ │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant/ │ │ │ │ └── transportProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── OFtutorial1_inputOutput/ │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── OFtutorial1.C │ │ │ └── testCase/ │ │ │ ├── 0/ │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant/ │ │ │ │ ├── customProperties │ │ │ │ └── transportProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── OFtutorial2_understandingTheMesh/ │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── OFtutorial2.C │ │ │ └── testCase/ │ │ │ ├── 0/ │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant/ │ │ │ │ └── transportProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── OFtutorial3_basicFieldOperations/ │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── OFtutorial3.C │ │ │ └── testCase/ │ │ │ ├── 0/ │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant/ │ │ │ │ └── transportProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── OFtutorial4_basicParallelComputing/ │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── OFtutorial4.C │ │ │ ├── createFields.H │ │ │ └── testCase/ │ │ │ ├── 0/ │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant/ │ │ │ │ └── transportProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── OFtutorial5_customClasses/ │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── OFtutorial5.C │ │ │ ├── customClass.C │ │ │ ├── customClass.H │ │ │ ├── derivedClass.C │ │ │ ├── derivedClass.H │ │ │ └── testCase/ │ │ │ ├── 0/ │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant/ │ │ │ │ └── transportProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── OFtutorial6_customLibraries/ │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── OFtutorial6.C │ │ │ ├── createFields.H │ │ │ ├── customLibrary/ │ │ │ │ ├── Make/ │ │ │ │ │ ├── files │ │ │ │ │ └── options │ │ │ │ ├── customLibrary.C │ │ │ │ └── customLibrary.H │ │ │ └── testCase/ │ │ │ ├── 0/ │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant/ │ │ │ │ └── transportProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── OFtutorial7_customBC/ │ │ │ ├── Allwclean │ │ │ ├── Allwmake │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── prescribedPipeInletFvPatchVectorField.C │ │ │ ├── prescribedPipeInletFvPatchVectorField.H │ │ │ └── testCase/ │ │ │ ├── 0.org/ │ │ │ │ ├── U │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Allrun.mesh │ │ │ ├── constant/ │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mirrorMeshDict │ │ │ ├── runConditions │ │ │ └── sampleDict │ │ ├── OFtutorial8_runtimePostprocessingUtility/ │ │ │ ├── IOpipeCalc.H │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── pipeCalc.C │ │ │ ├── pipeCalc.H │ │ │ ├── pipeCalcFunctionObject.C │ │ │ ├── pipeCalcFunctionObject.H │ │ │ └── testCase/ │ │ │ ├── 0.org/ │ │ │ │ ├── U │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Allrun.mesh │ │ │ ├── constant/ │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mirrorMeshDict │ │ │ ├── runConditions │ │ │ ├── sampleDict │ │ │ └── topoSetDict │ │ ├── OFtutorial9_transportEquation/ │ │ │ ├── Make/ │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── OFtutorial9.C │ │ │ └── testCase/ │ │ │ ├── 0/ │ │ │ │ ├── U │ │ │ │ └── beta │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant/ │ │ │ │ └── transportProperties │ │ │ └── system/ │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── README.md │ ├── README.md │ └── testAll └── waterChannel/ ├── 0/ │ ├── U │ ├── alpha.water.orig │ ├── k │ ├── nut │ ├── omega │ └── p_rgh ├── Allclean ├── Allmesh ├── Allrun ├── constant/ │ ├── g │ ├── transportProperties │ └── turbulenceProperties └── system/ ├── blockMeshDict ├── controlDict ├── extrudeMeshDict ├── extrudeMeshDict.1 ├── extrudeMeshDict.2 ├── fvSchemes ├── fvSolution ├── setFieldsDict └── surfaces