├── .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 ├── pic.png └── system │ ├── blockMeshDict │ ├── blockMeshDict~ │ ├── controlDict │ ├── controlDict~ │ ├── fvSchemes │ ├── fvSolution │ └── fvSolution~ ├── linuxCheatSheet ├── Common linux command in OpenFoam.md ├── linuxCheatSheet.docx └── linuxCheatSheet.pdf ├── 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 │ ├── meshPoints.pdf │ └── testCase │ │ ├── Allclean │ │ ├── Allrun │ │ ├── cellTypes.png │ │ ├── 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 │ │ ├── Umagnitude.png │ │ ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/_config.yml -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/0/U -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/0/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/0/alpha.water -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/0/k -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/0/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/0/nuTilda -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/0/nut -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/0/p_rgh -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/0/phi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/0/phi -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/0/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/0/s -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/Allclean -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/Allmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/Allmesh -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/Allrun -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/Allrun.parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/Allrun.parallel -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/constant/g -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/constant/transportProperties -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/constant/turbulenceProperties -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/blockMeshDict -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/controlDict -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/decomposeParDict -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/fvSchemes -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/fvSolution -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/probes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/probes -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/refineMeshDict.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/refineMeshDict.1 -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/refineMeshDict.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/refineMeshDict.2 -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/surfaces -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/topoSetDict.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/topoSetDict.1 -------------------------------------------------------------------------------- /abruptContraction/interPhaseChangeFoam/system/topoSetDict.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/interPhaseChangeFoam/system/topoSetDict.2 -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/0/U -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/0/epsilon -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/0/k -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/0/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/0/nuTilda -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/0/nut -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/0/p -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/Allclean -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/Allrun -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/Allrun.parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/Allrun.parallel -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/constant/transportProperties -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/constant/turbulenceProperties -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/system/blockMeshDict -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/system/controlDict -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/system/decomposeParDict -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/system/fvSchemes -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/system/fvSolution -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/system/probes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/system/probes -------------------------------------------------------------------------------- /abruptContraction/pimpleFoam/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pimpleFoam/system/surfaces -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/0/U -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/0/k -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/0/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/0/nuTilda -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/0/nut -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/0/p -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/0/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/0/s -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/Allclean -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/Allrun -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/Allrun.parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/Allrun.parallel -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/constant/transportProperties -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/constant/turbulenceProperties -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/system/blockMeshDict -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/system/controlDict -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/system/decomposeParDict -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/system/fvSchemes -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/system/fvSolution -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/system/probes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/system/probes -------------------------------------------------------------------------------- /abruptContraction/pisoFoam/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/pisoFoam/system/surfaces -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/0/U -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/0/epsilon -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/0/k -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/0/nut -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/0/p -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/Allclean -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/Allrun -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/constant/transportProperties -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/constant/turbulenceProperties -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/system/blockMeshDict -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/system/controlDict -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/system/fvSchemes -------------------------------------------------------------------------------- /abruptContraction/simpleFoam/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/abruptContraction/simpleFoam/system/fvSolution -------------------------------------------------------------------------------- /cavitatingBullet/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/0/U -------------------------------------------------------------------------------- /cavitatingBullet/0/alpha.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/0/alpha.water -------------------------------------------------------------------------------- /cavitatingBullet/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/0/p_rgh -------------------------------------------------------------------------------- /cavitatingBullet/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/Allclean -------------------------------------------------------------------------------- /cavitatingBullet/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/Allrun -------------------------------------------------------------------------------- /cavitatingBullet/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/constant/g -------------------------------------------------------------------------------- /cavitatingBullet/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/constant/transportProperties -------------------------------------------------------------------------------- /cavitatingBullet/constant/triSurface/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/constant/triSurface/README -------------------------------------------------------------------------------- /cavitatingBullet/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/constant/turbulenceProperties -------------------------------------------------------------------------------- /cavitatingBullet/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/system/blockMeshDict -------------------------------------------------------------------------------- /cavitatingBullet/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/system/controlDict -------------------------------------------------------------------------------- /cavitatingBullet/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/system/decomposeParDict -------------------------------------------------------------------------------- /cavitatingBullet/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/system/fvSchemes -------------------------------------------------------------------------------- /cavitatingBullet/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/system/fvSolution -------------------------------------------------------------------------------- /cavitatingBullet/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/cavitatingBullet/system/snappyHexMeshDict -------------------------------------------------------------------------------- /fishChannel/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/0/U -------------------------------------------------------------------------------- /fishChannel/0/alpha.water.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/0/alpha.water.orig -------------------------------------------------------------------------------- /fishChannel/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/0/epsilon -------------------------------------------------------------------------------- /fishChannel/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/0/k -------------------------------------------------------------------------------- /fishChannel/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/0/nut -------------------------------------------------------------------------------- /fishChannel/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/0/omega -------------------------------------------------------------------------------- /fishChannel/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/0/p_rgh -------------------------------------------------------------------------------- /fishChannel/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/Allclean -------------------------------------------------------------------------------- /fishChannel/Allmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/Allmesh -------------------------------------------------------------------------------- /fishChannel/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/Allrun -------------------------------------------------------------------------------- /fishChannel/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/constant/g -------------------------------------------------------------------------------- /fishChannel/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/constant/transportProperties -------------------------------------------------------------------------------- /fishChannel/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/constant/turbulenceProperties -------------------------------------------------------------------------------- /fishChannel/showCase.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/showCase.pvsm -------------------------------------------------------------------------------- /fishChannel/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/blockMeshDict -------------------------------------------------------------------------------- /fishChannel/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/controlDict -------------------------------------------------------------------------------- /fishChannel/system/createBafflesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/createBafflesDict -------------------------------------------------------------------------------- /fishChannel/system/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/createPatchDict -------------------------------------------------------------------------------- /fishChannel/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/decomposeParDict -------------------------------------------------------------------------------- /fishChannel/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/fvSchemes -------------------------------------------------------------------------------- /fishChannel/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/fvSolution -------------------------------------------------------------------------------- /fishChannel/system/refineMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/refineMeshDict -------------------------------------------------------------------------------- /fishChannel/system/refineMeshDict.section1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/refineMeshDict.section1 -------------------------------------------------------------------------------- /fishChannel/system/refineMeshDict.section2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/refineMeshDict.section2 -------------------------------------------------------------------------------- /fishChannel/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/setFieldsDict -------------------------------------------------------------------------------- /fishChannel/system/topoSetDict.outlet2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/topoSetDict.outlet2 -------------------------------------------------------------------------------- /fishChannel/system/topoSetDict.section1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/topoSetDict.section1 -------------------------------------------------------------------------------- /fishChannel/system/topoSetDict.section2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/fishChannel/system/topoSetDict.section2 -------------------------------------------------------------------------------- /flatPlate/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/0/U -------------------------------------------------------------------------------- /flatPlate/0/U~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/0/U~ -------------------------------------------------------------------------------- /flatPlate/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/0/epsilon -------------------------------------------------------------------------------- /flatPlate/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/0/k -------------------------------------------------------------------------------- /flatPlate/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/0/nut -------------------------------------------------------------------------------- /flatPlate/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/0/p -------------------------------------------------------------------------------- /flatPlate/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/Allclean -------------------------------------------------------------------------------- /flatPlate/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/Allrun -------------------------------------------------------------------------------- /flatPlate/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/constant/transportProperties -------------------------------------------------------------------------------- /flatPlate/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/constant/turbulenceProperties -------------------------------------------------------------------------------- /flatPlate/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/pic.png -------------------------------------------------------------------------------- /flatPlate/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/system/blockMeshDict -------------------------------------------------------------------------------- /flatPlate/system/blockMeshDict~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/system/blockMeshDict~ -------------------------------------------------------------------------------- /flatPlate/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/system/controlDict -------------------------------------------------------------------------------- /flatPlate/system/controlDict~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/system/controlDict~ -------------------------------------------------------------------------------- /flatPlate/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/system/fvSchemes -------------------------------------------------------------------------------- /flatPlate/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/system/fvSolution -------------------------------------------------------------------------------- /flatPlate/system/fvSolution~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/flatPlate/system/fvSolution~ -------------------------------------------------------------------------------- /linuxCheatSheet/Common linux command in OpenFoam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/linuxCheatSheet/Common linux command in OpenFoam.md -------------------------------------------------------------------------------- /linuxCheatSheet/linuxCheatSheet.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/linuxCheatSheet/linuxCheatSheet.docx -------------------------------------------------------------------------------- /linuxCheatSheet/linuxCheatSheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/linuxCheatSheet/linuxCheatSheet.pdf -------------------------------------------------------------------------------- /magnusEffect/0/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/.svn/all-wcprops -------------------------------------------------------------------------------- /magnusEffect/0/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/.svn/entries -------------------------------------------------------------------------------- /magnusEffect/0/.svn/text-base/U.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/.svn/text-base/U.svn-base -------------------------------------------------------------------------------- /magnusEffect/0/.svn/text-base/p.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/.svn/text-base/p.svn-base -------------------------------------------------------------------------------- /magnusEffect/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/U -------------------------------------------------------------------------------- /magnusEffect/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/epsilon -------------------------------------------------------------------------------- /magnusEffect/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/k -------------------------------------------------------------------------------- /magnusEffect/0/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/nuTilda -------------------------------------------------------------------------------- /magnusEffect/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/nut -------------------------------------------------------------------------------- /magnusEffect/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/0/p -------------------------------------------------------------------------------- /magnusEffect/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/Allclean -------------------------------------------------------------------------------- /magnusEffect/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/Allrun -------------------------------------------------------------------------------- /magnusEffect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/README.md -------------------------------------------------------------------------------- /magnusEffect/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/constant/transportProperties -------------------------------------------------------------------------------- /magnusEffect/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/constant/turbulenceProperties -------------------------------------------------------------------------------- /magnusEffect/magnus.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/magnus.geo -------------------------------------------------------------------------------- /magnusEffect/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/system/controlDict -------------------------------------------------------------------------------- /magnusEffect/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/system/fvSchemes -------------------------------------------------------------------------------- /magnusEffect/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/magnusEffect/system/fvSolution -------------------------------------------------------------------------------- /mpiTest/Alltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/Alltest -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/U -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/U.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/U.air -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/U.mercury: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/U.mercury -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/U.oil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/U.oil -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/U.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/U.water -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/alpha.air.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/alpha.air.orig -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/alpha.mercury.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/alpha.mercury.orig -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/alpha.oil.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/alpha.oil.orig -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/alpha.water.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/alpha.water.orig -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/0/p_rgh -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/Allclean -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/Allsbatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/Allsbatch -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/constant/g -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/constant/motionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/constant/motionProperties -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/constant/transportProperties -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/constant/turbulenceProperties -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/system/blockMeshDict -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/system/controlDict -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/system/decomposeParDict -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/system/fvSchemes -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/system/fvSolution -------------------------------------------------------------------------------- /mpiTest/damBreak4phaseFine/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/mpiTest/damBreak4phaseFine/system/setFieldsDict -------------------------------------------------------------------------------- /programmingTutorials/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/.gitignore -------------------------------------------------------------------------------- /programmingTutorials/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/LICENSE -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/OFtutorial0.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/OFtutorial0.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial00_helloWorld/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial00_helloWorld/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/OFtutorial1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/OFtutorial1.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/constant/customProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/constant/customProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial01_inputOutput/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial01_inputOutput/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/OFtutorial2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/OFtutorial2.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/OFtutorial3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/OFtutorial3.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial03_understandingTheMesh/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial03_understandingTheMesh/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/OFtutorial4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/OFtutorial4.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial04_basicFieldOperations/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial04_basicFieldOperations/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/OFtutorial5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/OFtutorial5.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/createFields.H -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial05_basicParallelComputing/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/OFtutorial6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/OFtutorial6.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/customClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/customClass.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/customClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/customClass.H -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/derivedClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/derivedClass.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/derivedClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/derivedClass.H -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial06_customClasses/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial06_customClasses/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/Allwclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/Allwmake -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/OFtutorial7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/OFtutorial7.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/createFields.H -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/customLibrary/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/customLibrary/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/customLibrary/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/customLibrary/customLibrary.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/customLibrary/customLibrary.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/customLibrary/customLibrary.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/customLibrary/customLibrary.H -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial07_customLibraries/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial07_customLibraries/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/Allwclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/Allwmake -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/prescribedPipeInletFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/prescribedPipeInletFvPatchVectorField.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/prescribedPipeInletFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/prescribedPipeInletFvPatchVectorField.H -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/0.org/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/0.org/k -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/0.org/nut -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/0.org/omega -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/0.org/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/Allrun.mesh -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/system/mirrorMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/system/runConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/system/runConditions -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial08_customBC/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial08_customBC/testCase/system/sampleDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/pipeCalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/pipeCalc.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/pipeCalc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/pipeCalc.H -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/k -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/nut -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/omega -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/Allrun.mesh -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/mirrorMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/runConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/runConditions -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/sampleDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial09_runtimePostprocessingUtility/testCase/system/topoSetDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/OFtutorial10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/OFtutorial10.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/0/beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/0/beta -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial10_transportEquation/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial10_transportEquation/testCase/viewData.pvsm -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/OFtutorial11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/OFtutorial11.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/meshPoints.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/meshPoints.geo -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/meshPoints.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/meshPoints.pdf -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/cellTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/cellTypes.png -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/viewGrid.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial11_modifyingTheMesh/testCase/viewGrid.pvsm -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/customActuationDiskSource.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/customActuationDiskSource.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/customActuationDiskSource.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/customActuationDiskSource.H -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/customActuationDiskSourceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/customActuationDiskSourceTemplates.C -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/0/k -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/0/nut -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/0/omega -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/Umagnitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/Umagnitude.png -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/constant/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/constant/fvOptions -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OFtutorial12_momentumSource/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OFtutorial12_momentumSource/testCase/viewData.pvsm -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/OFtutorial0.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/OFtutorial0.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/OFtutorial1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/OFtutorial1.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/constant/customProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/constant/customProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/OFtutorial2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/OFtutorial2.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/OFtutorial3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/OFtutorial3.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/OFtutorial4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/OFtutorial4.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/createFields.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/OFtutorial5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/OFtutorial5.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/customClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/customClass.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/customClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/customClass.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/derivedClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/derivedClass.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/derivedClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/derivedClass.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/Allwclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/Allwmake -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/OFtutorial6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/OFtutorial6.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/createFields.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/customLibrary.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/customLibrary.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/customLibrary.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/customLibrary.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/0/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/Allwclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/Allwmake -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/prescribedPipeInletFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/prescribedPipeInletFvPatchVectorField.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/prescribedPipeInletFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/prescribedPipeInletFvPatchVectorField.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/k -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/nut -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/omega -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun.mesh -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/mirrorMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/runConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/runConditions -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial7_customBC/testCase/system/sampleDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/IOpipeCalc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/IOpipeCalc.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalc.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalc.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalcFunctionObject.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalcFunctionObject.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalcFunctionObject.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalcFunctionObject.H -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/k -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/nut -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/omega -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/0.org/p -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/Allclean -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/Allrun.mesh -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/mirrorMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/runConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/runConditions -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/sampleDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/topoSetDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/Make/files -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/Make/options -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/OFtutorial9.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/OFtutorial9.C -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/0/U -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/0/beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/0/beta -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/Allrun -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/constant/transportProperties -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/controlDict -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/fvSchemes -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/fvSolution -------------------------------------------------------------------------------- /programmingTutorials/OldReleases/OF301/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/OldReleases/OF301/README.md -------------------------------------------------------------------------------- /programmingTutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/README.md -------------------------------------------------------------------------------- /programmingTutorials/testAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/programmingTutorials/testAll -------------------------------------------------------------------------------- /waterChannel/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/0/U -------------------------------------------------------------------------------- /waterChannel/0/alpha.water.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/0/alpha.water.orig -------------------------------------------------------------------------------- /waterChannel/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/0/k -------------------------------------------------------------------------------- /waterChannel/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/0/nut -------------------------------------------------------------------------------- /waterChannel/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/0/omega -------------------------------------------------------------------------------- /waterChannel/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/0/p_rgh -------------------------------------------------------------------------------- /waterChannel/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/Allclean -------------------------------------------------------------------------------- /waterChannel/Allmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/Allmesh -------------------------------------------------------------------------------- /waterChannel/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/Allrun -------------------------------------------------------------------------------- /waterChannel/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/constant/g -------------------------------------------------------------------------------- /waterChannel/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/constant/transportProperties -------------------------------------------------------------------------------- /waterChannel/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/constant/turbulenceProperties -------------------------------------------------------------------------------- /waterChannel/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/blockMeshDict -------------------------------------------------------------------------------- /waterChannel/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/controlDict -------------------------------------------------------------------------------- /waterChannel/system/extrudeMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/extrudeMeshDict -------------------------------------------------------------------------------- /waterChannel/system/extrudeMeshDict.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/extrudeMeshDict.1 -------------------------------------------------------------------------------- /waterChannel/system/extrudeMeshDict.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/extrudeMeshDict.2 -------------------------------------------------------------------------------- /waterChannel/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/fvSchemes -------------------------------------------------------------------------------- /waterChannel/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/fvSolution -------------------------------------------------------------------------------- /waterChannel/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/setFieldsDict -------------------------------------------------------------------------------- /waterChannel/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phresher/OpenFOAM_Tutorials_Plus/HEAD/waterChannel/system/surfaces --------------------------------------------------------------------------------