├── .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 │ ├── 2DconvectionDiffusion.png │ ├── 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 │ ├── testCase.OpenFOAM │ └── 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 │ ├── fvModels │ ├── transportProperties │ └── turbulenceProperties │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution │ └── viewData.pvsm ├── OFtutorial13_waveEquationSolver ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options ├── createFields.H ├── ofTutorial13.C └── testCase │ ├── 0 │ └── h │ ├── 0.orig │ └── h │ ├── Allclean │ ├── Allrun │ ├── constant │ └── transportProperties │ ├── output.mp4 │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict │ └── waveElevation.png ├── OFtutorial14_SIMPLE_algorithm ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options ├── OFtutorial14.C ├── createFields.H └── testCase │ ├── 0 │ ├── U │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ └── transportProperties │ ├── system │ ├── PDRblockMeshDict │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution │ ├── velocity_field.png │ └── viewData.pvsm ├── OFtutorial15_discretisation ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options ├── OFtutorial15.C ├── OFtutorial15.H └── testCase │ ├── 0 │ ├── T │ └── U │ ├── Allclean │ ├── Allrun │ ├── cellCentreValues.png │ ├── constant │ └── transportProperties │ ├── plotData.py │ ├── refData │ ├── centrelineData_linear.csv │ ├── centrelineData_linearUpwind.csv │ └── centrelineData_upwind.csv │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution │ ├── tutorial15.png │ └── viewData.pvsm ├── OFtutorial16_particleTracking ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options ├── OFtutorial16.C └── testCase │ ├── 0 │ ├── U │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── transportProperties │ └── turbulenceProperties │ ├── particlePath.png │ ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── 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 ├── OF5and6 │ ├── 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 │ │ │ ├── 2DconvectionDiffusion.png │ │ │ ├── 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 │ │ │ ├── testCase.OpenFOAM │ │ │ └── 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 │ ├── README.md │ └── testAll └── OF7and8 │ ├── 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 │ │ ├── 2DconvectionDiffusion.png │ │ ├── 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 │ │ ├── testCase.OpenFOAM │ │ └── 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 │ ├── OFtutorial13_waveEquationSolver │ ├── Allwclean │ ├── Allwmake │ ├── Make │ │ ├── files │ │ └── options │ ├── createFields.H │ ├── ofTutorial13.C │ └── testCase │ │ ├── 0 │ │ └── h │ │ ├── 0.orig │ │ └── h │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── polyMesh │ │ │ ├── boundary │ │ │ ├── faces │ │ │ ├── neighbour │ │ │ ├── owner │ │ │ └── points │ │ └── transportProperties │ │ ├── output.mp4 │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ │ └── waveElevation.png │ ├── OFtutorial14_SIMPLE_algorithm │ ├── Allwclean │ ├── Allwmake │ ├── Make │ │ ├── files │ │ └── options │ ├── OFtutorial14.C │ ├── createFields.H │ └── testCase │ │ ├── 0 │ │ ├── U │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── transportProperties │ │ ├── system │ │ ├── PDRblockMeshDict │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── velocity_field.png │ │ └── viewData.pvsm │ ├── OFtutorial15_discretisation │ ├── Allwclean │ ├── Allwmake │ ├── Make │ │ ├── files │ │ └── options │ ├── OFtutorial15.C │ ├── OFtutorial15.H │ └── testCase │ │ ├── 0 │ │ ├── T │ │ └── U │ │ ├── Allclean │ │ ├── Allrun │ │ ├── cellCentreValues.png │ │ ├── constant │ │ └── transportProperties │ │ ├── plotData.py │ │ ├── refData │ │ ├── centrelineData_linear.csv │ │ ├── centrelineData_linearUpwind.csv │ │ └── centrelineData_upwind.csv │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── tutorial15.png │ │ └── viewData.pvsm │ └── README.md ├── README.md ├── cleanAll └── testAll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/Make/files -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/Make/options -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/OFtutorial0.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/OFtutorial0.C -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial00_helloWorld/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/Make/files -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/Make/options -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/OFtutorial1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/OFtutorial1.C -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/constant/customProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/constant/customProperties -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial01_inputOutput/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/Make/files -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/Make/options -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/OFtutorial2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/OFtutorial2.C -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial02_commandLineArgumentsAndOptions/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/Make/files -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/Make/options -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/OFtutorial3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/OFtutorial3.C -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial03_understandingTheMesh/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/Make/files -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/Make/options -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/OFtutorial4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/OFtutorial4.C -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial04_basicFieldOperations/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/Make/files -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/Make/options -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/OFtutorial5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/OFtutorial5.C -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/createFields.H -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial05_basicParallelComputing/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial06_customClasses/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/Make/files -------------------------------------------------------------------------------- /OFtutorial06_customClasses/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/Make/options -------------------------------------------------------------------------------- /OFtutorial06_customClasses/OFtutorial6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/OFtutorial6.C -------------------------------------------------------------------------------- /OFtutorial06_customClasses/customClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/customClass.C -------------------------------------------------------------------------------- /OFtutorial06_customClasses/customClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/customClass.H -------------------------------------------------------------------------------- /OFtutorial06_customClasses/derivedClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/derivedClass.C -------------------------------------------------------------------------------- /OFtutorial06_customClasses/derivedClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/derivedClass.H -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial06_customClasses/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/Allwclean -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/Allwmake -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/Make/files -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/Make/options -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/OFtutorial7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/OFtutorial7.C -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/createFields.H -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/customLibrary/Make/files -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/customLibrary/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/customLibrary/Make/options -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/customLibrary/customLibrary.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/customLibrary/customLibrary.C -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/customLibrary/customLibrary.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/customLibrary/customLibrary.H -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial07_customLibraries/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial08_customBC/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/Allwclean -------------------------------------------------------------------------------- /OFtutorial08_customBC/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/Allwmake -------------------------------------------------------------------------------- /OFtutorial08_customBC/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/Make/files -------------------------------------------------------------------------------- /OFtutorial08_customBC/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/Make/options -------------------------------------------------------------------------------- /OFtutorial08_customBC/prescribedPipeInletFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/prescribedPipeInletFvPatchVectorField.C -------------------------------------------------------------------------------- /OFtutorial08_customBC/prescribedPipeInletFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/prescribedPipeInletFvPatchVectorField.H -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/0.org/U -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/0.org/k -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/0.org/nut -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/0.org/omega -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/0.org/p -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/Allrun.mesh -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/system/mirrorMeshDict -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/runConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/system/runConditions -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial08_customBC/testCase/system/sampleDict -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/Make/files -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/Make/options -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/pipeCalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/pipeCalc.C -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/pipeCalc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/pipeCalc.H -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/U -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/k -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/nut -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/omega -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/0.org/p -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/Allrun.mesh -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/system/mirrorMeshDict -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/runConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/system/runConditions -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/system/sampleDict -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial09_runtimePostprocessingUtility/testCase/system/topoSetDict -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/Make/files -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/Make/options -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/OFtutorial10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/OFtutorial10.C -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/0/beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/0/beta -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/2DconvectionDiffusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/2DconvectionDiffusion.png -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/viewData.pvsm -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/Make/files -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/Make/options -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/OFtutorial11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/OFtutorial11.C -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/meshPoints.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/meshPoints.geo -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/meshPoints.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/meshPoints.pdf -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/cellTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/cellTypes.png -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/testCase.OpenFOAM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/viewGrid.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/viewGrid.pvsm -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/Make/files -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/Make/options -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/customActuationDiskSource.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/customActuationDiskSource.C -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/customActuationDiskSource.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/customActuationDiskSource.H -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/customActuationDiskSourceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/customActuationDiskSourceTemplates.C -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/0/k -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/0/nut -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/0/omega -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/Umagnitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/Umagnitude.png -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/constant/fvModels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/constant/fvModels -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/viewData.pvsm -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/Make/files -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/Make/options -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/createFields.H -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/ofTutorial13.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/ofTutorial13.C -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/0.orig/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/0.orig/h -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/0/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/0/h -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/output.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/output.mp4 -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/system/setFieldsDict -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/waveElevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/waveElevation.png -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/Make/files -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/Make/options -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/OFtutorial14.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/OFtutorial14.C -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/createFields.H -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/system/PDRblockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/system/PDRblockMeshDict -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/velocity_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/velocity_field.png -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/viewData.pvsm -------------------------------------------------------------------------------- /OFtutorial15_discretisation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/Make/files -------------------------------------------------------------------------------- /OFtutorial15_discretisation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/Make/options -------------------------------------------------------------------------------- /OFtutorial15_discretisation/OFtutorial15.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/OFtutorial15.C -------------------------------------------------------------------------------- /OFtutorial15_discretisation/OFtutorial15.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/OFtutorial15.H -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/0/T -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf constant/polyMesh/* log.* 0.* 1* 2* postProcessing 3 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/cellCentreValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/cellCentreValues.png -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/plotData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/plotData.py -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/refData/centrelineData_linear.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/refData/centrelineData_linear.csv -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/refData/centrelineData_upwind.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/refData/centrelineData_upwind.csv -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/tutorial15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/tutorial15.png -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/viewData.pvsm -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/Make/files -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/Make/options -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/OFtutorial16.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/OFtutorial16.C -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/0/U -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/0/p -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/Allclean -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/Allrun -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/constant/transportProperties -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/particlePath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/particlePath.png -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/system/controlDict -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/system/fvSolution -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/viewData.pvsm -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/OFtutorial0.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/OFtutorial0.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial0_helloWorld/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/OFtutorial1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/OFtutorial1.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial1_inputOutput/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/OFtutorial2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial2_understandingTheMesh/OFtutorial2.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/OFtutorial3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial3_basicFieldOperations/OFtutorial3.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/OFtutorial4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial4_basicParallelComputing/OFtutorial4.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial4_basicParallelComputing/createFields.H -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/OFtutorial5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/OFtutorial5.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/customClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/customClass.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/customClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/customClass.H -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/derivedClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/derivedClass.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/derivedClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/derivedClass.H -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial5_customClasses/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/Allwclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/Allwmake -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/OFtutorial6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/OFtutorial6.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/createFields.H -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial6_customLibraries/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/Allwclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/Allwmake -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/k -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/nut -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/omega -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/0.org/p -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun.mesh -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/system/decomposeParDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/system/mirrorMeshDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/runConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/system/runConditions -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial7_customBC/testCase/system/sampleDict -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/IOpipeCalc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/IOpipeCalc.H -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalc.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/pipeCalc.H -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial9_transportEquation/Make/files -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial9_transportEquation/Make/options -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/OFtutorial9.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial9_transportEquation/OFtutorial9.C -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial9_transportEquation/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/testCase/0/beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial9_transportEquation/testCase/0/beta -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial9_transportEquation/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/OFtutorial9_transportEquation/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF301/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF301/README.md -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/OFtutorial0.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/OFtutorial0.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/OFtutorial1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/OFtutorial1.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/OFtutorial3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial03_understandingTheMesh/OFtutorial3.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/OFtutorial4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial04_basicFieldOperations/OFtutorial4.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial05_basicParallelComputing/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial05_basicParallelComputing/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/OFtutorial5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial05_basicParallelComputing/OFtutorial5.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial05_basicParallelComputing/createFields.H -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/OFtutorial6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/OFtutorial6.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/customClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/customClass.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/customClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/customClass.H -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/derivedClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/derivedClass.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/derivedClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/derivedClass.H -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial06_customClasses/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/Allwclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/Allwmake -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/OFtutorial7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/OFtutorial7.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/createFields.H -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/customLibrary/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/Allwclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/Allwmake -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/k -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/nut -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/omega -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/0.org/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/Allrun.mesh -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/blockMeshDict -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/mirrorMeshDict -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/runConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/runConditions -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/sampleDict -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial10_transportEquation/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial10_transportEquation/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/OFtutorial10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial10_transportEquation/OFtutorial10.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/0/beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/0/beta -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/OFtutorial11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/OFtutorial11.C -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/meshPoints.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/meshPoints.geo -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/meshPoints.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/meshPoints.pdf -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/testCase.OpenFOAM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/Make/files -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/Make/options -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/k -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/nut -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/omega -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/viewData.pvsm -------------------------------------------------------------------------------- /OldReleases/OF5and6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/README.md -------------------------------------------------------------------------------- /OldReleases/OF5and6/testAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/testAll -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial00_helloWorld/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial00_helloWorld/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/OFtutorial0.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial00_helloWorld/OFtutorial0.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial01_inputOutput/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial01_inputOutput/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/OFtutorial1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial01_inputOutput/OFtutorial1.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/OFtutorial3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial03_understandingTheMesh/OFtutorial3.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/OFtutorial4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial04_basicFieldOperations/OFtutorial4.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial05_basicParallelComputing/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial05_basicParallelComputing/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/OFtutorial5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial05_basicParallelComputing/OFtutorial5.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial05_basicParallelComputing/createFields.H -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial05_basicParallelComputing/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial05_basicParallelComputing/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/OFtutorial6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/OFtutorial6.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/customClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/customClass.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/customClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/customClass.H -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/derivedClass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/derivedClass.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/derivedClass.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/derivedClass.H -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial06_customClasses/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/Allwclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/Allwmake -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/OFtutorial7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/OFtutorial7.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/createFields.H -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/Allwclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/Allwmake -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/k -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/nut -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/omega -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/0.org/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/Allrun.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/Allrun.mesh -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/controlDict -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/fvSchemes -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/fvSolution -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/sampleDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/sampleDict -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial10_transportEquation/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial10_transportEquation/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/OFtutorial10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial10_transportEquation/OFtutorial10.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/0/beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/0/beta -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/OFtutorial11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/OFtutorial11.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/meshPoints.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/meshPoints.geo -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/meshPoints.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/meshPoints.pdf -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/testCase.OpenFOAM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/k -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/nut -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/omega -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/viewData.pvsm -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/createFields.H -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/ofTutorial13.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/ofTutorial13.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/0.orig/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/0.orig/h -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/0/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/0/h -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/OFtutorial14.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/OFtutorial14.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/createFields.H -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/0/p -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/Allclean -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/Make/files -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/Make/options -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/OFtutorial15.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/OFtutorial15.C -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/OFtutorial15.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/OFtutorial15.H -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/testCase/0/T -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/testCase/0/U -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf constant/polyMesh/* log.* 0.* 1* 2* postProcessing 3 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/testCase/Allrun -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/plotData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/testCase/plotData.py -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/viewData.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/testCase/viewData.pvsm -------------------------------------------------------------------------------- /OldReleases/OF7and8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/README.md -------------------------------------------------------------------------------- /cleanAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/cleanAll -------------------------------------------------------------------------------- /testAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/testAll --------------------------------------------------------------------------------