├── OFtutorial11_modifyingTheMesh ├── testCase │ ├── testCase.OpenFOAM │ ├── Allclean │ ├── cellTypes.png │ ├── Allrun │ └── constant │ │ └── transportProperties ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options └── meshPoints.geo ├── OFtutorial00_helloWorld ├── Allwmake ├── Allwclean ├── testCase │ ├── Allrun │ ├── Allclean │ └── constant │ │ └── transportProperties └── Make │ ├── files │ └── options ├── OFtutorial01_inputOutput ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options └── testCase │ ├── Allrun │ ├── Allclean │ └── constant │ └── transportProperties ├── OFtutorial06_customClasses ├── Allwclean ├── Allwmake ├── testCase │ ├── Allrun │ ├── Allclean │ └── constant │ │ └── transportProperties ├── Make │ ├── files │ └── options ├── customClass.C └── derivedClass.H ├── OFtutorial03_understandingTheMesh ├── Allwmake ├── Allwclean ├── Make │ ├── files │ └── options └── testCase │ ├── Allrun │ ├── Allclean │ └── constant │ └── transportProperties ├── OFtutorial04_basicFieldOperations ├── Allwmake ├── Allwclean ├── Make │ ├── files │ └── options └── testCase │ ├── Allrun │ ├── Allclean │ └── constant │ └── transportProperties ├── OFtutorial10_transportEquation ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options └── testCase │ ├── Allclean │ ├── Allrun │ ├── 2DconvectionDiffusion.png │ └── constant │ └── transportProperties ├── OFtutorial12_momentumSource ├── Allwmake ├── Allwclean ├── Make │ ├── files │ └── options └── testCase │ ├── Allclean │ ├── Allrun │ ├── Umagnitude.png │ └── constant │ ├── transportProperties │ └── turbulenceProperties ├── OFtutorial13_waveEquationSolver ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options ├── testCase │ ├── output.mp4 │ ├── waveElevation.png │ ├── Allclean │ ├── Allrun │ └── constant │ │ └── transportProperties └── createFields.H ├── OFtutorial14_SIMPLE_algorithm ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options └── testCase │ ├── Allrun │ ├── Allclean │ ├── velocity_field.png │ └── constant │ └── transportProperties ├── OFtutorial15_discretisation ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options └── testCase │ ├── Allclean │ ├── tutorial15.png │ ├── cellCentreValues.png │ ├── Allrun │ ├── refData │ ├── centrelineData_linear.csv │ ├── centrelineData_upwind.csv │ └── centrelineData_linearUpwind.csv │ └── constant │ └── transportProperties ├── OFtutorial16_particleTracking ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options └── testCase │ ├── Allclean │ ├── particlePath.png │ ├── Allrun │ └── constant │ ├── turbulenceProperties │ └── transportProperties ├── OFtutorial05_basicParallelComputing ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options ├── testCase │ ├── Allclean │ ├── Allrun │ └── constant │ │ └── transportProperties └── createFields.H ├── OldReleases ├── OF5and6 │ ├── OFtutorial11_modifyingTheMesh │ │ ├── testCase │ │ │ ├── testCase.OpenFOAM │ │ │ ├── Allclean │ │ │ ├── cellTypes.png │ │ │ ├── Allrun │ │ │ └── constant │ │ │ │ └── transportProperties │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── meshPoints.geo │ ├── OFtutorial00_helloWorld │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ │ └── transportProperties │ │ └── Make │ │ │ ├── files │ │ │ └── options │ ├── OFtutorial01_inputOutput │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial06_customClasses │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ │ └── transportProperties │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── customClass.C │ │ └── derivedClass.H │ ├── OFtutorial03_understandingTheMesh │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial04_basicFieldOperations │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial10_transportEquation │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── 2DconvectionDiffusion.png │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial12_momentumSource │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Umagnitude.png │ │ │ └── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ ├── OFtutorial05_basicParallelComputing │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── constant │ │ │ │ └── transportProperties │ │ └── createFields.H │ ├── OFtutorial02_commandLineArgumentsAndOptions │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial09_runtimePostprocessingUtility │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── system │ │ │ └── mirrorMeshDict │ ├── OFtutorial07_customLibraries │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ │ └── transportProperties │ │ ├── customLibrary │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── customLibrary.C │ │ │ └── customLibrary.H │ │ └── createFields.H │ └── OFtutorial08_customBC │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── Allwclean │ │ ├── Allwmake │ │ └── testCase │ │ ├── Allclean │ │ ├── Allrun │ │ ├── system │ │ └── mirrorMeshDict │ │ └── constant │ │ ├── transportProperties │ │ └── turbulenceProperties ├── OF7and8 │ ├── OFtutorial11_modifyingTheMesh │ │ ├── testCase │ │ │ ├── testCase.OpenFOAM │ │ │ ├── Allclean │ │ │ ├── cellTypes.png │ │ │ ├── Allrun │ │ │ └── constant │ │ │ │ └── transportProperties │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── meshPoints.geo │ ├── OFtutorial00_helloWorld │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ │ └── transportProperties │ │ └── Make │ │ │ ├── files │ │ │ └── options │ ├── OFtutorial01_inputOutput │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial06_customClasses │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ │ └── transportProperties │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── customClass.C │ │ └── derivedClass.H │ ├── OFtutorial03_understandingTheMesh │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial04_basicFieldOperations │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial10_transportEquation │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── 2DconvectionDiffusion.png │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial12_momentumSource │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Umagnitude.png │ │ │ └── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ ├── OFtutorial13_waveEquationSolver │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── testCase │ │ │ ├── Allclean │ │ │ ├── output.mp4 │ │ │ ├── waveElevation.png │ │ │ ├── Allrun │ │ │ └── constant │ │ │ │ └── transportProperties │ │ └── createFields.H │ ├── OFtutorial14_SIMPLE_algorithm │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ ├── velocity_field.png │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial15_discretisation │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── tutorial15.png │ │ │ ├── Allrun │ │ │ ├── cellCentreValues.png │ │ │ ├── refData │ │ │ ├── centrelineData_linear.csv │ │ │ ├── centrelineData_upwind.csv │ │ │ └── centrelineData_linearUpwind.csv │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial05_basicParallelComputing │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── constant │ │ │ │ └── transportProperties │ │ └── createFields.H │ ├── OFtutorial02_commandLineArgumentsAndOptions │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── constant │ │ │ └── transportProperties │ ├── OFtutorial09_runtimePostprocessingUtility │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── testCase │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── system │ │ │ └── mirrorMeshDict │ ├── OFtutorial07_customLibraries │ │ ├── Allwmake │ │ ├── Allwclean │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── testCase │ │ │ ├── Allrun │ │ │ ├── Allclean │ │ │ └── constant │ │ │ │ └── transportProperties │ │ ├── customLibrary │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── customLibrary.C │ │ │ └── customLibrary.H │ │ └── createFields.H │ └── OFtutorial08_customBC │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── Allwclean │ │ ├── Allwmake │ │ └── testCase │ │ ├── Allclean │ │ ├── Allrun │ │ ├── system │ │ └── mirrorMeshDict │ │ └── constant │ │ ├── transportProperties │ │ └── turbulenceProperties └── OF301 │ ├── OFtutorial0_helloWorld │ ├── testCase │ │ ├── Allrun │ │ ├── Allclean │ │ └── constant │ │ │ └── transportProperties │ └── Make │ │ ├── files │ │ └── options │ ├── OFtutorial1_inputOutput │ ├── Make │ │ ├── files │ │ └── options │ └── testCase │ │ ├── Allrun │ │ ├── Allclean │ │ └── constant │ │ └── transportProperties │ ├── OFtutorial6_customLibraries │ ├── Allwclean │ ├── Allwmake │ ├── Make │ │ ├── files │ │ └── options │ ├── testCase │ │ ├── Allrun │ │ ├── Allclean │ │ └── constant │ │ │ └── transportProperties │ ├── customLibrary │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── customLibrary.C │ │ └── customLibrary.H │ └── createFields.H │ ├── OFtutorial9_transportEquation │ ├── Make │ │ ├── files │ │ └── options │ └── testCase │ │ ├── Allrun │ │ ├── Allclean │ │ └── constant │ │ └── transportProperties │ ├── OFtutorial2_understandingTheMesh │ ├── Make │ │ ├── files │ │ └── options │ └── testCase │ │ ├── Allrun │ │ ├── Allclean │ │ └── constant │ │ └── transportProperties │ ├── OFtutorial3_basicFieldOperations │ ├── Make │ │ ├── files │ │ └── options │ └── testCase │ │ ├── Allrun │ │ ├── Allclean │ │ └── constant │ │ └── transportProperties │ ├── OFtutorial4_basicParallelComputing │ ├── Make │ │ ├── files │ │ └── options │ ├── testCase │ │ ├── Allclean │ │ ├── Allrun │ │ └── constant │ │ │ └── transportProperties │ └── createFields.H │ ├── OFtutorial5_customClasses │ ├── testCase │ │ ├── Allrun │ │ ├── Allclean │ │ └── constant │ │ │ └── transportProperties │ ├── Make │ │ ├── files │ │ └── options │ ├── customClass.C │ └── derivedClass.H │ ├── OFtutorial7_customBC │ ├── Make │ │ ├── files │ │ └── options │ ├── Allwclean │ ├── Allwmake │ └── testCase │ │ ├── Allclean │ │ ├── Allrun │ │ ├── system │ │ └── mirrorMeshDict │ │ └── constant │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── OFtutorial8_runtimePostprocessingUtility │ ├── Make │ ├── files │ └── options │ └── testCase │ ├── Allclean │ ├── Allrun │ ├── system │ └── mirrorMeshDict │ └── constant │ ├── transportProperties │ └── turbulenceProperties ├── OFtutorial02_commandLineArgumentsAndOptions ├── Allwmake ├── Allwclean ├── Make │ ├── files │ └── options └── testCase │ ├── Allclean │ ├── Allrun │ └── constant │ └── transportProperties ├── OFtutorial09_runtimePostprocessingUtility ├── Allwmake ├── Allwclean ├── Make │ ├── files │ └── options └── testCase │ ├── Allclean │ ├── Allrun │ ├── system │ └── mirrorMeshDict │ └── constant │ ├── transportProperties │ └── turbulenceProperties ├── OFtutorial07_customLibraries ├── Allwmake ├── Allwclean ├── Make │ ├── files │ └── options ├── testCase │ ├── Allrun │ ├── Allclean │ └── constant │ │ └── transportProperties ├── customLibrary │ ├── Make │ │ ├── files │ │ └── options │ ├── customLibrary.C │ └── customLibrary.H └── createFields.H ├── OFtutorial08_customBC ├── Make │ ├── files │ └── options ├── Allwclean ├── Allwmake └── testCase │ ├── Allclean │ ├── Allrun │ ├── system │ └── mirrorMeshDict │ └── constant │ ├── transportProperties │ └── turbulenceProperties └── cleanAll /OFtutorial11_modifyingTheMesh/testCase/testCase.OpenFOAM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/testCase.OpenFOAM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/testCase.OpenFOAM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /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/OFtutorial06_customClasses/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /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/OFtutorial06_customClasses/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 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/OFtutorial11_modifyingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 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/OFtutorial11_modifyingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /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/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/OFtutorial15_discretisation/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso customLibrary 4 | wmake 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /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/OFtutorial12_momentumSource/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /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/OFtutorial12_momentumSource/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial0.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial0 4 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial1.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial1 4 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso customLibrary 4 | wclean 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake 4 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial1 5 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial7.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial7 4 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial10.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial10 4 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial11.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial11 4 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial14.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial14 4 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | blockMesh > log.blockMesh 3 | ofTutorial14 4 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial15.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libofTutorial15 4 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial16.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)//ofTutorial16 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso 4 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial3.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial3 4 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial4.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial4 4 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial5.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial5 4 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial6 5 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial7 5 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/Make/files: -------------------------------------------------------------------------------- 1 | ofTutorial13.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial13 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso 4 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial3 5 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial4 5 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/Make/files: -------------------------------------------------------------------------------- 1 | pipeCalc.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libpipeCalc 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial0.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial1.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial1 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso customLibrary 4 | wclean 5 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso customLibrary 4 | wmake 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso customLibrary 4 | wmake 5 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wmake libso customLibrary 4 | wmake 5 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial2.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial2 4 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf constant/polyMesh/* log.* 0.* 1* 2* postProcessing 3 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial6.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial6 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial9.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial9 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial0.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial1.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial1 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso customLibrary 4 | wclean 5 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial0.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial0 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial1.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial1 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wclean libso customLibrary 4 | wclean 5 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- 1 | customLibrary.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libcustomLibrary 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial1 5 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial2.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial2 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial3.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial3 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial4.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial4 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial5 5 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial6 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial1 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial7.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial7 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial10.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial10 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial11.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial11 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial1 5 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial7.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial7 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial10.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial10 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial11.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial11 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial14.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial14 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | blockMesh > log.blockMesh 3 | ofTutorial14 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial15.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libofTutorial15 4 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf 0.* 1* 2* 3* 4* 5* 6* 7* 8* 9* constant/polyMesh/* log.* 3 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial2 5 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial3 5 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial9 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial3.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial3 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial4.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial4 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial5.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial5 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial6 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial7 5 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial3.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial3 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial4.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial4 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial5.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial5 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial6 5 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial7 5 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/Make/files: -------------------------------------------------------------------------------- 1 | ofTutorial13.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial13 4 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/Make/files: -------------------------------------------------------------------------------- 1 | prescribedPipeInletFvPatchVectorField.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libprescribedPipeInlet 4 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/Make/files: -------------------------------------------------------------------------------- 1 | customActuationDiskSource.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libcustomActuationDiskSource 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial3 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial4 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/Make/files: -------------------------------------------------------------------------------- 1 | pipeCalc.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libpipeCalc 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial3 5 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial4 5 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/Make/files: -------------------------------------------------------------------------------- 1 | pipeCalc.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libpipeCalc 4 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/Make/files: -------------------------------------------------------------------------------- 1 | customClass.C 2 | derivedClass.C 3 | OFtutorial6.C 4 | 5 | EXE = $(FOAM_USER_APPBIN)/ofTutorial6 6 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude 3 | 4 | LIB_LIBS = \ 5 | -lfiniteVolume 6 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- 1 | customLibrary.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libcustomLibrary 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial2.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial2 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/Make/files: -------------------------------------------------------------------------------- 1 | OFtutorial2.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/ofTutorial2 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm 0/result* constant/polyMesh/* log.* 2>/dev/null 3 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf constant/polyMesh/* log.* 0.* 1* 2* postProcessing 3 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- 1 | customLibrary.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libcustomLibrary 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/customLibrary/Make/files: -------------------------------------------------------------------------------- 1 | customLibrary.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libcustomLibrary 4 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/Make/files: -------------------------------------------------------------------------------- 1 | prescribedPipeInletFvPatchVectorField.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libprescribedPipeInlet 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf 0.* 1* 2* 3* 4* 5* 6* 7* 8* 9* constant/polyMesh/* log.* 3 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | wclean libso 4 | 5 | # ----------------------------------------------------------------- end-of-file 6 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | wmake libso 4 | 5 | # ----------------------------------------------------------------- end-of-file 6 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/Make/files: -------------------------------------------------------------------------------- 1 | customClass.C 2 | derivedClass.C 3 | OFtutorial5.C 4 | 5 | EXE = $(FOAM_USER_APPBIN)/ofTutorial5 6 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/Make/files: -------------------------------------------------------------------------------- 1 | prescribedPipeInletFvPatchVectorField.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libprescribedPipeInlet 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/Make/files: -------------------------------------------------------------------------------- 1 | customActuationDiskSource.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libcustomActuationDiskSource 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/Make/files: -------------------------------------------------------------------------------- 1 | prescribedPipeInletFvPatchVectorField.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libprescribedPipeInlet 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/Make/files: -------------------------------------------------------------------------------- 1 | customActuationDiskSource.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libcustomActuationDiskSource 4 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | simpleFoam 5 | echo "Now run: paraview --state=viewData.pvsm" 6 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude 3 | 4 | LIB_LIBS = \ 5 | -lfiniteVolume 6 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/files: -------------------------------------------------------------------------------- 1 | pipeCalc.C 2 | pipeCalcFunctionObject.C 3 | 4 | LIB = $(FOAM_USER_LIBBIN)/libpipeCalc 5 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/Make/files: -------------------------------------------------------------------------------- 1 | customClass.C 2 | derivedClass.C 3 | OFtutorial6.C 4 | 5 | EXE = $(FOAM_USER_APPBIN)/ofTutorial6 6 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude 3 | 4 | LIB_LIBS = \ 5 | -lfiniteVolume 6 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/Make/files: -------------------------------------------------------------------------------- 1 | customClass.C 2 | derivedClass.C 3 | OFtutorial6.C 4 | 5 | EXE = $(FOAM_USER_APPBIN)/ofTutorial6 6 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude 3 | 4 | LIB_LIBS = \ 5 | -lfiniteVolume 6 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* postProcessing 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial10 5 | echo "Now run: paraview --state=viewData.pvsm" 6 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | wclean libso 4 | 5 | # ----------------------------------------------------------------- end-of-file 6 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | wmake libso 4 | 5 | # ----------------------------------------------------------------- end-of-file 6 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial2 someWordIPassed 5. -someSwitch -someInt 2 -dict path_to_nowhere_in_particular 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | wclean libso 4 | 5 | # ----------------------------------------------------------------- end-of-file 6 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | wmake libso 4 | 5 | # ----------------------------------------------------------------- end-of-file 6 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/Allwclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | wclean libso 4 | 5 | # ----------------------------------------------------------------- end-of-file 6 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/Allwmake: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | wmake libso 4 | 5 | # ----------------------------------------------------------------- end-of-file 6 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | simpleFoam 5 | echo "Now run: paraview --state=viewData.pvsm" 6 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | simpleFoam 5 | echo "Now run: paraview --state=viewData.pvsm" 6 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/cellTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial11_modifyingTheMesh/testCase/cellTypes.png -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/Umagnitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial12_momentumSource/testCase/Umagnitude.png -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/output.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/output.mp4 -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/tutorial15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/tutorial15.png -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* postProcessing 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* postProcessing 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial10 5 | echo "Now run: paraview --state=viewData.pvsm" 6 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* postProcessing 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | ofTutorial10 5 | echo "Now run: paraview --state=viewData.pvsm" 6 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # starting simulation 4 | rm -f log.* 5 | rm -rf VTK 6 | foamListTimes -rm 7 | rm -rf constant/polyMesh/* dynamicCode 8 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/particlePath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial16_particleTracking/testCase/particlePath.png -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -r 1* 2* 3* 4* 5* 6* 7* 8* 9* 0.* constant/polyMesh/* processor* log.* 2>/dev/null 4 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/waveElevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial13_waveEquationSolver/testCase/waveElevation.png -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/velocity_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial14_SIMPLE_algorithm/testCase/velocity_field.png -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/cellCentreValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial15_discretisation/testCase/cellCentreValues.png -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial2 someWordIPassed 5. -someSwitch -someInt 2 -dict path_to_nowhere_in_particular 4 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ofTutorial2 someWordIPassed 5. -someSwitch -someInt 2 -dict path_to_nowhere_in_particular 4 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -f log.waveFoam log.setFields log.blockMesh 3 | foamListTimes -rm 4 | rm -r 0 constant/polyMesh/* 5 | cp -r 0.orig 0 6 | rm -rf VTK 7 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -f log.waveFoam log.setFields log.blockMesh 3 | foamListTimes -rm 4 | rm -r 0 5 | cp -r 0.orig 0 6 | rm -rf VTK 7 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | decomposePar > log.decomposePar 5 | mpirun -np 4 ofTutorial5 -parallel 6 | rm -r processor* 2>/dev/null 7 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/2DconvectionDiffusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OFtutorial10_transportEquation/testCase/2DconvectionDiffusion.png -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | scalarTransportFoam 5 | 6 | echo "Now run: paraview --state=viewData.pvsm" 7 | echo "and then: python plotData.py" 8 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/customLibrary/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./Allclean 3 | blockMesh > log.blockMesh 4 | ofTutorial11 5 | checkMesh -constant -allTopology -allGeometry 6 | echo "Now run: paraview --state=viewGrid.pvsm" 7 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | EXE_LIBS = \ 5 | -lOpenFOAM \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | decomposePar > log.decomposePar 5 | mpirun -np 4 ofTutorial4 -parallel 6 | rm -r processor* 2>/dev/null 7 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/cellTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/cellTypes.png -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/Umagnitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/Umagnitude.png -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/cellTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/cellTypes.png -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/Umagnitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/Umagnitude.png -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/output.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/output.mp4 -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/tutorial15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/testCase/tutorial15.png -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | LIB_LIBS = \ 6 | -lfiniteVolume \ 7 | -lgenericPatchFields 8 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | decomposePar > log.decomposePar 5 | mpirun -np 4 ofTutorial5 -parallel 6 | rm -r processor* 2>/dev/null 7 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | decomposePar > log.decomposePar 5 | mpirun -np 4 ofTutorial5 -parallel 6 | rm -r processor* 2>/dev/null 7 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/waveElevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/waveElevation.png -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/velocity_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/velocity_field.png -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 4 | scalarTransportFoam 5 | 6 | echo "Now run: paraview --state=viewData.pvsm" 7 | echo "and then: python plotData.py" 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/cellCentreValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial15_discretisation/testCase/cellCentreValues.png -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | blockMesh > log.blockMesh 2>&1 4 | simpleFoam > log.simpleFoam 2>&1 5 | 6 | ofTutorial16 2>&1 | tee log.particleTracking 7 | 8 | echo "Now run paraview --state=viewData.pvsm" 9 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/customLibrary/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./Allclean 3 | blockMesh > log.blockMesh 4 | ofTutorial11 5 | checkMesh -constant -allTopology -allGeometry 6 | echo "Now run: paraview --state=viewGrid.pvsm" 7 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/customLibrary/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | EXE_LIBS = \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./Allclean 3 | blockMesh > log.blockMesh 4 | ofTutorial11 5 | checkMesh -constant -allTopology -allGeometry 6 | echo "Now run: paraview --state=viewGrid.pvsm" 7 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | EXE_LIBS = \ 5 | -lOpenFOAM \ 6 | -lfiniteVolume \ 7 | -lmeshTools 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | LIB_LIBS = \ 6 | -lfiniteVolume \ 7 | -lgenericPatchFields 8 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/2DconvectionDiffusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/2DconvectionDiffusion.png -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude 4 | 5 | LIB_LIBS = \ 6 | -lfiniteVolume \ 7 | -lgenericPatchFields 8 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/2DconvectionDiffusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials/HEAD/OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/2DconvectionDiffusion.png -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Creating blockMesh.." 3 | blockMesh > log.blockMesh 4 | echo "Running setFields to initial amplitude field values.." 5 | setFields > log.setFields 6 | echo "Running solver.." 7 | ofTutorial13 8 | echo "Done." 9 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude \ 4 | -I$(LIB_SRC)/fvOptions/lnInclude 5 | 6 | EXE_LIBS = \ 7 | -lfiniteVolume \ 8 | -lmeshTools \ 9 | -lfvOptions 10 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude \ 4 | -IcustomLibrary 5 | 6 | EXE_LIBS = \ 7 | -lfiniteVolume \ 8 | -lmeshTools \ 9 | -L$(FOAM_USER_LIBBIN) -lcustomLibrary 10 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Creating blockMesh.." 3 | blockMesh > log.blockMesh 4 | echo "Running setFields to initial amplitude field values.." 5 | setFields > log.setFields 6 | echo "Running solver.." 7 | ofTutorial13 8 | echo "Done." 9 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude \ 4 | -I$(LIB_SRC)/fvOptions/lnInclude 5 | 6 | EXE_LIBS = \ 7 | -lfiniteVolume \ 8 | -lmeshTools \ 9 | -lfvOptions 10 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude \ 4 | -I$(LIB_SRC)/fvOptions/lnInclude 5 | 6 | EXE_LIBS = \ 7 | -lfiniteVolume \ 8 | -lmeshTools \ 9 | -lfvOptions 10 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude \ 4 | -IcustomLibrary 5 | 6 | EXE_LIBS = \ 7 | -lfiniteVolume \ 8 | -lmeshTools \ 9 | -L$(FOAM_USER_LIBBIN) -lcustomLibrary 10 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude \ 4 | -IcustomLibrary 5 | 6 | EXE_LIBS = \ 7 | -lfiniteVolume \ 8 | -lmeshTools \ 9 | -L$(FOAM_USER_LIBBIN) -lcustomLibrary 10 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/meshTools/lnInclude \ 4 | -IcustomLibrary 5 | 6 | EXE_LIBS = \ 7 | -lfiniteVolume \ 8 | -lmeshTools \ 9 | -L$(FOAM_USER_LIBBIN) -lcustomLibrary 10 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/fvOptions/lnInclude \ 4 | -I$(LIB_SRC)/meshTools/lnInclude \ 5 | -I$(LIB_SRC)/sampling/lnInclude 6 | 7 | EXE_LIBS = \ 8 | -lfiniteVolume \ 9 | -lmeshTools \ 10 | -lsampling 11 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/fvOptions/lnInclude \ 4 | -I$(LIB_SRC)/meshTools/lnInclude \ 5 | -I$(LIB_SRC)/sampling/lnInclude 6 | 7 | EXE_LIBS = \ 8 | -lfiniteVolume \ 9 | -lfvOptions \ 10 | -lmeshTools \ 11 | -lsampling 12 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/fvOptions/lnInclude \ 4 | -I$(LIB_SRC)/meshTools/lnInclude \ 5 | -I$(LIB_SRC)/sampling/lnInclude 6 | 7 | EXE_LIBS = \ 8 | -lfiniteVolume \ 9 | -lfvOptions \ 10 | -lmeshTools \ 11 | -lsampling 12 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/fvOptions/lnInclude \ 4 | -I$(LIB_SRC)/meshTools/lnInclude \ 5 | -I$(LIB_SRC)/sampling/lnInclude 6 | 7 | EXE_LIBS = \ 8 | -lfiniteVolume \ 9 | -lfvOptions \ 10 | -lmeshTools \ 11 | -lsampling 12 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/Make/options: -------------------------------------------------------------------------------- 1 | EXE_INC = \ 2 | -I$(LIB_SRC)/finiteVolume/lnInclude \ 3 | -I$(LIB_SRC)/fileFormats/lnInclude \ 4 | -I$(LIB_SRC)/postProcessing/postCalc \ 5 | -I$(LIB_SRC)/meshTools/lnInclude 6 | 7 | LIB_LIBS = \ 8 | -lfiniteVolume \ 9 | -lfileFormats \ 10 | -lgenericPatchFields 11 | -------------------------------------------------------------------------------- /cleanAll: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # === 4 | # Script for cleaning all of the tutorials. 5 | # === 6 | 7 | for tutorialDir in */ ; do 8 | if [[ $tutorialDir = *OFtutorial* ]]; then 9 | echo "Cleaning:" $tutorialDir 10 | 11 | cd $tutorialDir 12 | ./Allwclean >/dev/null 2>&1 13 | cd testCase 14 | ./Allclean >/dev/null 2>&1 15 | cd ../.. 16 | fi 17 | done 18 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ${0%/*} || exit 1 # run from this directory 3 | 4 | rm -f log* 5 | 6 | rm -rf processor* postProcessing 7 | 8 | rm -rf constant/polyMesh/* 9 | rm -rf constant/triSurface/*.eMesh* 10 | rm -rf constant/triSurface/*.obj* 11 | rm -rf constant/extendedFeatureEdgeMesh/ 12 | 13 | rm -rf 0 1* 2* 3* 4* 5* 6* 7* 8* 9* 14 | # ----------------------------------------------------------------- end-of-file 15 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ${0%/*} || exit 1 # run from this directory 3 | 4 | rm -f log* 5 | 6 | rm -rf processor* postProcessing 7 | 8 | rm -rf constant/polyMesh/* 9 | rm -rf constant/triSurface/*.eMesh* 10 | rm -rf constant/triSurface/*.obj* 11 | rm -rf constant/extendedFeatureEdgeMesh/ 12 | 13 | rm -rf 0 1* 2* 3* 4* 5* 6* 7* 8* 9* 14 | # ----------------------------------------------------------------- end-of-file 15 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ${0%/*} || exit 1 # run from this directory 3 | 4 | rm -f log* 5 | 6 | rm -rf processor* postProcessing 7 | 8 | rm -rf constant/polyMesh/* 9 | rm -rf constant/triSurface/*.eMesh* 10 | rm -rf constant/triSurface/*.obj* 11 | rm -rf constant/extendedFeatureEdgeMesh/ 12 | 13 | rm -rf 0 1* 2* 3* 4* 5* 6* 7* 8* 9* 14 | # ----------------------------------------------------------------- end-of-file 15 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ${0%/*} || exit 1 # run from this directory 3 | 4 | rm -f log* 5 | 6 | rm -rf processor* postProcessing 7 | 8 | rm -rf constant/polyMesh/* 9 | rm -rf constant/triSurface/*.eMesh* 10 | rm -rf constant/triSurface/*.obj* 11 | rm -rf constant/extendedFeatureEdgeMesh/ 12 | 13 | rm -rf 0 1* 2* 3* 4* 5* 6* 7* 8* 9* 14 | # ----------------------------------------------------------------- end-of-file 15 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ${0%/*} || exit 1 # run from this directory 3 | 4 | rm -f log* 5 | 6 | rm -rf processor* postProcessing 7 | 8 | rm -rf constant/polyMesh/* 9 | rm -rf constant/triSurface/*.eMesh* 10 | rm -rf constant/triSurface/*.obj* 11 | rm -rf constant/extendedFeatureEdgeMesh/ 12 | 13 | rm -rf 0 1* 2* 3* 4* 5* 6* 7* 8* 9* 14 | # ----------------------------------------------------------------- end-of-file 15 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./Allrun.mesh > log.mesh 2>&1 4 | 5 | # Need to create the faceZone for runtime post-processing 6 | topoSet > log.topoSet 2>&1 7 | 8 | cp -r 0.org 0 9 | 10 | potentialFoam > log.potentialFoam 2>&1 11 | 12 | echo "Finished preparing, running the solver." 13 | 14 | simpleFoam > log.run 2>&1 15 | 16 | echo "Done." 17 | 18 | # ----------------------------------------------------------------- end-of-file 19 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ${0%/*} || exit 1 # run from this directory 3 | 4 | rm -f log* 5 | 6 | rm -rf processor* postProcessing 7 | 8 | rm -rf constant/polyMesh/* 9 | rm -rf constant/triSurface/*.eMesh* 10 | rm -rf constant/triSurface/*.obj* 11 | rm -rf constant/extendedFeatureEdgeMesh/ 12 | 13 | rm -rf 0 1* 2* 3* 4* 5* 6* 7* 8* 9* 14 | # ----------------------------------------------------------------- end-of-file 15 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ${0%/*} || exit 1 # run from this directory 3 | 4 | rm -f log* 5 | 6 | rm -rf processor* postProcessing 7 | 8 | rm -rf constant/polyMesh/* 9 | rm -rf constant/triSurface/*.eMesh* 10 | rm -rf constant/triSurface/*.obj* 11 | rm -rf constant/extendedFeatureEdgeMesh/ 12 | 13 | rm -rf 0 1* 2* 3* 4* 5* 6* 7* 8* 9* 14 | # ----------------------------------------------------------------- end-of-file 15 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/testCase/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ${0%/*} || exit 1 # run from this directory 3 | 4 | rm -f log* 5 | 6 | rm -rf processor* postProcessing 7 | 8 | rm -rf constant/polyMesh/* 9 | rm -rf constant/triSurface/*.eMesh* 10 | rm -rf constant/triSurface/*.obj* 11 | rm -rf constant/extendedFeatureEdgeMesh/ 12 | 13 | rm -rf 0 1* 2* 3* 4* 5* 6* 7* 8* 9* 14 | # ----------------------------------------------------------------- end-of-file 15 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./Allrun.mesh > log.mesh 2>&1 4 | 5 | # Need to create the faceZone for runtime post-processing 6 | topoSet > log.topoSet 2>&1 7 | 8 | cp -r 0.org 0 9 | 10 | potentialFoam > log.potentialFoam 2>&1 11 | 12 | echo "Finished preparing, running the solver." 13 | 14 | simpleFoam > log.run 2>&1 15 | 16 | echo "Done." 17 | 18 | # ----------------------------------------------------------------- end-of-file 19 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./Allrun.mesh > log.mesh 2>&1 4 | 5 | # Need to create the faceZone for runtime post-processing 6 | topoSet > log.topoSet 2>&1 7 | 8 | cp -r 0.org 0 9 | 10 | potentialFoam > log.potentialFoam 2>&1 11 | 12 | echo "Finished preparing, running the solver." 13 | 14 | simpleFoam > log.run 2>&1 15 | 16 | echo "Done." 17 | 18 | # ----------------------------------------------------------------- end-of-file 19 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./Allrun.mesh > log.mesh 2>&1 4 | 5 | # Need to create the faceZone for runtime post-processing 6 | topoSet > log.topoSet 2>&1 7 | 8 | cp -r 0.org 0 9 | 10 | potentialFoam > log.potentialFoam 2>&1 11 | 12 | echo "Finished preparing, running the solver." 13 | 14 | simpleFoam > log.run 2>&1 15 | 16 | echo "Done." 17 | 18 | # ----------------------------------------------------------------- end-of-file 19 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/customClass.C: -------------------------------------------------------------------------------- 1 | #include "customClass.H" 2 | 3 | customClass::customClass() 4 | { 5 | myInt_= 0; 6 | } 7 | 8 | customClass::~customClass() 9 | {} 10 | 11 | label customClass::basicFunction() const 12 | { 13 | Info << "Calling customClass::basicFunction()" << endl; 14 | return myInt_*2; 15 | } 16 | 17 | void customClass::meshOpFunction(fvMesh& mesh) 18 | { 19 | Info << "Custom class got a mesh with " << mesh.C().size() << " cells" << endl; 20 | myInt_ = mesh.C().size(); 21 | } 22 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/customClass.C: -------------------------------------------------------------------------------- 1 | #include "customClass.H" 2 | 3 | customClass::customClass() 4 | { 5 | myInt_= 0; 6 | } 7 | 8 | customClass::~customClass() 9 | {} 10 | 11 | label customClass::basicFunction() const 12 | { 13 | Info << "Calling customClass::basicFunction()" << endl; 14 | return myInt_*2; 15 | } 16 | 17 | void customClass::meshOpFunction(fvMesh& mesh) 18 | { 19 | Info << "Custom class got a mesh with " << mesh.C().size() << " cells" << endl; 20 | myInt_ = mesh.C().size(); 21 | } 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/customClass.C: -------------------------------------------------------------------------------- 1 | #include "customClass.H" 2 | 3 | customClass::customClass() 4 | { 5 | myInt_= 0; 6 | } 7 | 8 | customClass::~customClass() 9 | {} 10 | 11 | label customClass::basicFunction() const 12 | { 13 | Info << "Calling customClass::basicFunction()" << endl; 14 | return myInt_*2; 15 | } 16 | 17 | void customClass::meshOpFunction(fvMesh& mesh) 18 | { 19 | Info << "Custom class got a mesh with " << mesh.C().size() << " cells" << endl; 20 | myInt_ = mesh.C().size(); 21 | } 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/customClass.C: -------------------------------------------------------------------------------- 1 | #include "customClass.H" 2 | 3 | customClass::customClass() 4 | { 5 | myInt_= 0; 6 | } 7 | 8 | customClass::~customClass() 9 | {} 10 | 11 | label customClass::basicFunction() const 12 | { 13 | Info << "Calling customClass::basicFunction()" << endl; 14 | return myInt_*2; 15 | } 16 | 17 | void customClass::meshOpFunction(fvMesh& mesh) 18 | { 19 | Info << "Custom class got a mesh with " << mesh.C().size() << " cells" << endl; 20 | myInt_ = mesh.C().size(); 21 | } 22 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/meshPoints.geo: -------------------------------------------------------------------------------- 1 | //+ 2 | Point(0) = {0.0, 0, 0}; 3 | Point(1) = {0.5, 0, 0}; 4 | Point(2) = {1.0, 0, 0}; 5 | Point(3) = {0.0, 1, 0}; 6 | Point(4) = {0.5, 1, 0}; 7 | Point(5) = {1.0, 1, 0}; 8 | Point(6) = {0.0, 0, 0.1}; 9 | Point(7) = {0.5, 0, 0.1}; 10 | Point(8) = {1.0, 0, 0.1}; 11 | Point(9) = {0.0, 1, 0.1}; 12 | Point(10) = {0.5, 1, 0.1}; 13 | Point(11) = {1.0, 1, 0.1}; 14 | Point(12) = {0.7, 0.5, -0.5}; 15 | Point(13) = {0.7, 1.0, -0.5}; 16 | Point(14) = {0.7, 1.2, -0.5}; 17 | Point(15) = {0.5, 1.2, 0.0}; 18 | Point(16) = {1.0, 1.2, 0.0}; 19 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/meshPoints.geo: -------------------------------------------------------------------------------- 1 | //+ 2 | Point(0) = {0.0, 0, 0}; 3 | Point(1) = {0.5, 0, 0}; 4 | Point(2) = {1.0, 0, 0}; 5 | Point(3) = {0.0, 1, 0}; 6 | Point(4) = {0.5, 1, 0}; 7 | Point(5) = {1.0, 1, 0}; 8 | Point(6) = {0.0, 0, 0.1}; 9 | Point(7) = {0.5, 0, 0.1}; 10 | Point(8) = {1.0, 0, 0.1}; 11 | Point(9) = {0.0, 1, 0.1}; 12 | Point(10) = {0.5, 1, 0.1}; 13 | Point(11) = {1.0, 1, 0.1}; 14 | Point(12) = {0.7, 0.5, -0.5}; 15 | Point(13) = {0.7, 1.0, -0.5}; 16 | Point(14) = {0.7, 1.2, -0.5}; 17 | Point(15) = {0.5, 1.2, 0.0}; 18 | Point(16) = {1.0, 1.2, 0.0}; 19 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/meshPoints.geo: -------------------------------------------------------------------------------- 1 | //+ 2 | Point(0) = {0.0, 0, 0}; 3 | Point(1) = {0.5, 0, 0}; 4 | Point(2) = {1.0, 0, 0}; 5 | Point(3) = {0.0, 1, 0}; 6 | Point(4) = {0.5, 1, 0}; 7 | Point(5) = {1.0, 1, 0}; 8 | Point(6) = {0.0, 0, 0.1}; 9 | Point(7) = {0.5, 0, 0.1}; 10 | Point(8) = {1.0, 0, 0.1}; 11 | Point(9) = {0.0, 1, 0.1}; 12 | Point(10) = {0.5, 1, 0.1}; 13 | Point(11) = {1.0, 1, 0.1}; 14 | Point(12) = {0.7, 0.5, -0.5}; 15 | Point(13) = {0.7, 1.0, -0.5}; 16 | Point(14) = {0.7, 1.2, -0.5}; 17 | Point(15) = {0.5, 1.2, 0.0}; 18 | Point(16) = {1.0, 1.2, 0.0}; 19 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./Allrun.mesh > log.mesh 2>&1 4 | 5 | cp -r 0.org 0 6 | 7 | potentialFoam > log.potentialFoam 2>&1 8 | 9 | decomposePar > log.decomposePar 2>&1 10 | 11 | echo "Finished preparing, running the solver." 12 | 13 | mpirun -np 4 simpleFoam -parallel > log.run 2>&1 14 | 15 | reconstructPar -latestTime > log.reconstruct 2>&1 16 | 17 | yPlus -latestTime > log.yPlus 18 | sample -latestTime > log.sample 19 | 20 | rm -r processor* 21 | 22 | echo "Done." 23 | 24 | # ----------------------------------------------------------------- end-of-file 25 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./Allrun.mesh > log.mesh 2>&1 4 | 5 | cp -r 0.org 0 6 | 7 | potentialFoam > log.potentialFoam 2>&1 8 | 9 | decomposePar > log.decomposePar 2>&1 10 | 11 | echo "Finished preparing, running the solver." 12 | 13 | mpirun -np 4 simpleFoam -parallel > log.run 2>&1 14 | 15 | reconstructPar -latestTime > log.reconstruct 2>&1 16 | 17 | simpleFoam -postProcess -func yPlus -latestTime > log.yPlus 18 | simpleFoam -postProcess -func sample -latestTime > log.sample 19 | 20 | rm -r processor* 21 | 22 | echo "Done." 23 | 24 | # ----------------------------------------------------------------- end-of-file 25 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/refData/centrelineData_linear.csv: -------------------------------------------------------------------------------- 1 | x,y,z,T 2 | 0.025,0.05,0.05,1.00021 3 | 0.075,0.05,0.05,0.999031 4 | 0.125,0.05,0.05,0.99892 5 | 0.175,0.05,0.05,1.00479 6 | 0.225,0.05,0.05,1.01202 7 | 0.275,0.05,0.05,1.00212 8 | 0.325,0.05,0.05,0.953314 9 | 0.375,0.05,0.05,0.855654 10 | 0.425,0.05,0.05,0.717507 11 | 0.475,0.05,0.05,0.560317 12 | 0.525,0.05,0.05,0.407872 13 | 0.575,0.05,0.05,0.277604 14 | 0.625,0.05,0.05,0.177362 15 | 0.675,0.05,0.05,0.106822 16 | 0.725,0.05,0.05,0.060899 17 | 0.775,0.05,0.05,0.0329906 18 | 0.825,0.05,0.05,0.0170445 19 | 0.875,0.05,0.05,0.00841831 20 | 0.925,0.05,0.05,0.00402652 21 | 0.975,0.05,0.05,0.00165676 22 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/refData/centrelineData_upwind.csv: -------------------------------------------------------------------------------- 1 | x,y,z,T 2 | 0.025,0.05,0.05,0.999308 3 | 0.075,0.05,0.05,0.996427 4 | 0.125,0.05,0.05,0.989001 5 | 0.175,0.05,0.05,0.973398 6 | 0.225,0.05,0.05,0.945365 7 | 0.275,0.05,0.05,0.901116 8 | 0.325,0.05,0.05,0.838635 9 | 0.375,0.05,0.05,0.758637 10 | 0.425,0.05,0.05,0.664766 11 | 0.475,0.05,0.05,0.562933 12 | 0.525,0.05,0.05,0.460049 13 | 0.575,0.05,0.05,0.362635 14 | 0.625,0.05,0.05,0.275731 15 | 0.675,0.05,0.05,0.202337 16 | 0.725,0.05,0.05,0.143416 17 | 0.775,0.05,0.05,0.0982881 18 | 0.825,0.05,0.05,0.0652061 19 | 0.875,0.05,0.05,0.041932 20 | 0.925,0.05,0.05,0.0262306 21 | 0.975,0.05,0.05,0.0165926 22 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/refData/centrelineData_linearUpwind.csv: -------------------------------------------------------------------------------- 1 | x,y,z,T 2 | 0.025,0.05,0.05,0.999996 3 | 0.075,0.05,0.05,1.00001 4 | 0.125,0.05,0.05,1.00022 5 | 0.175,0.05,0.05,1.0004 6 | 0.225,0.05,0.05,0.997676 7 | 0.275,0.05,0.05,0.983597 8 | 0.325,0.05,0.05,0.94426 9 | 0.375,0.05,0.05,0.866203 10 | 0.425,0.05,0.05,0.745505 11 | 0.475,0.05,0.05,0.593092 12 | 0.525,0.05,0.05,0.43145 13 | 0.575,0.05,0.05,0.284822 14 | 0.625,0.05,0.05,0.169655 15 | 0.675,0.05,0.05,0.0907059 16 | 0.725,0.05,0.05,0.0432548 17 | 0.775,0.05,0.05,0.0182241 18 | 0.825,0.05,0.05,0.00667237 19 | 0.875,0.05,0.05,0.00205313 20 | 0.925,0.05,0.05,0.000487457 21 | 0.975,0.05,0.05,4.4752e-05 22 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/customLibrary/customLibrary.C: -------------------------------------------------------------------------------- 1 | #include "customLibrary.H" 2 | 3 | scalar computeR(const fvMesh& mesh, volScalarField& r, dimensionedVector x0) 4 | { 5 | r = mag(mesh.C()-x0); 6 | return returnReduce(max(r).value(), maxOp()); 7 | } 8 | 9 | void computeU(const fvMesh& mesh, volVectorField& U, word pName) 10 | { 11 | // This allows a reference to a field to be obtained through the mesh object 12 | // alone by just knowing the name of the field. 13 | const volScalarField& pField = mesh.lookupObject(pName); 14 | 15 | // Do the usual 16 | U = fvc::grad(pField)*dimensionedScalar("tmp", dimTime, 1.); 17 | } 18 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./Allrun.mesh > log.mesh 2>&1 4 | 5 | cp -r 0.org 0 6 | 7 | potentialFoam > log.potentialFoam 2>&1 8 | 9 | decomposePar > log.decomposePar 2>&1 10 | 11 | echo "Finished preparing, running the solver." 12 | 13 | mpirun -np 4 simpleFoam -parallel > log.run 2>&1 14 | 15 | reconstructPar -latestTime > log.reconstruct 2>&1 16 | 17 | simpleFoam -postProcess -func yPlus -latestTime > log.yPlus 18 | simpleFoam -postProcess -func sample -latestTime > log.sample 19 | 20 | rm -r processor* 21 | 22 | echo "Done." 23 | 24 | # ----------------------------------------------------------------- end-of-file 25 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/Allrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./Allrun.mesh > log.mesh 2>&1 4 | 5 | cp -r 0.org 0 6 | 7 | potentialFoam > log.potentialFoam 2>&1 8 | 9 | decomposePar > log.decomposePar 2>&1 10 | 11 | echo "Finished preparing, running the solver." 12 | 13 | mpirun -np 4 simpleFoam -parallel > log.run 2>&1 14 | 15 | reconstructPar -latestTime > log.reconstruct 2>&1 16 | 17 | simpleFoam -postProcess -func yPlus -latestTime > log.yPlus 18 | simpleFoam -postProcess -func sample -latestTime > log.sample 19 | 20 | rm -r processor* 21 | 22 | echo "Done." 23 | 24 | # ----------------------------------------------------------------- end-of-file 25 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/customLibrary.C: -------------------------------------------------------------------------------- 1 | #include "customLibrary.H" 2 | 3 | scalar computeR(const fvMesh& mesh, scalarField& r, dimensionedVector x0) 4 | { 5 | r = mag(mesh.C()-x0); 6 | return returnReduce(max(r), maxOp()); 7 | } 8 | 9 | void computeU(const fvMesh& mesh, volVectorField& U, word pName) 10 | { 11 | // This allows a reference to a field to be obtained through the mesh object 12 | // alone by just knowing the name of the field. 13 | const volScalarField& pField = mesh.lookupObject(pName); 14 | 15 | // Do the usual 16 | U = fvc::grad(pField)*dimensionedScalar("tmp",dimTime,1.); 17 | } 18 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/refData/centrelineData_linear.csv: -------------------------------------------------------------------------------- 1 | x,y,z,T 2 | 0.025,0.05,0.05,1.00021 3 | 0.075,0.05,0.05,0.999031 4 | 0.125,0.05,0.05,0.99892 5 | 0.175,0.05,0.05,1.00479 6 | 0.225,0.05,0.05,1.01202 7 | 0.275,0.05,0.05,1.00212 8 | 0.325,0.05,0.05,0.953314 9 | 0.375,0.05,0.05,0.855654 10 | 0.425,0.05,0.05,0.717507 11 | 0.475,0.05,0.05,0.560317 12 | 0.525,0.05,0.05,0.407872 13 | 0.575,0.05,0.05,0.277604 14 | 0.625,0.05,0.05,0.177362 15 | 0.675,0.05,0.05,0.106822 16 | 0.725,0.05,0.05,0.060899 17 | 0.775,0.05,0.05,0.0329906 18 | 0.825,0.05,0.05,0.0170445 19 | 0.875,0.05,0.05,0.00841831 20 | 0.925,0.05,0.05,0.00402652 21 | 0.975,0.05,0.05,0.00165676 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/refData/centrelineData_upwind.csv: -------------------------------------------------------------------------------- 1 | x,y,z,T 2 | 0.025,0.05,0.05,0.999308 3 | 0.075,0.05,0.05,0.996427 4 | 0.125,0.05,0.05,0.989001 5 | 0.175,0.05,0.05,0.973398 6 | 0.225,0.05,0.05,0.945365 7 | 0.275,0.05,0.05,0.901116 8 | 0.325,0.05,0.05,0.838635 9 | 0.375,0.05,0.05,0.758637 10 | 0.425,0.05,0.05,0.664766 11 | 0.475,0.05,0.05,0.562933 12 | 0.525,0.05,0.05,0.460049 13 | 0.575,0.05,0.05,0.362635 14 | 0.625,0.05,0.05,0.275731 15 | 0.675,0.05,0.05,0.202337 16 | 0.725,0.05,0.05,0.143416 17 | 0.775,0.05,0.05,0.0982881 18 | 0.825,0.05,0.05,0.0652061 19 | 0.875,0.05,0.05,0.041932 20 | 0.925,0.05,0.05,0.0262306 21 | 0.975,0.05,0.05,0.0165926 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/refData/centrelineData_linearUpwind.csv: -------------------------------------------------------------------------------- 1 | x,y,z,T 2 | 0.025,0.05,0.05,0.999996 3 | 0.075,0.05,0.05,1.00001 4 | 0.125,0.05,0.05,1.00022 5 | 0.175,0.05,0.05,1.0004 6 | 0.225,0.05,0.05,0.997676 7 | 0.275,0.05,0.05,0.983597 8 | 0.325,0.05,0.05,0.94426 9 | 0.375,0.05,0.05,0.866203 10 | 0.425,0.05,0.05,0.745505 11 | 0.475,0.05,0.05,0.593092 12 | 0.525,0.05,0.05,0.43145 13 | 0.575,0.05,0.05,0.284822 14 | 0.625,0.05,0.05,0.169655 15 | 0.675,0.05,0.05,0.0907059 16 | 0.725,0.05,0.05,0.0432548 17 | 0.775,0.05,0.05,0.0182241 18 | 0.825,0.05,0.05,0.00667237 19 | 0.875,0.05,0.05,0.00205313 20 | 0.925,0.05,0.05,0.000487457 21 | 0.975,0.05,0.05,4.4752e-05 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/customLibrary/customLibrary.C: -------------------------------------------------------------------------------- 1 | #include "customLibrary.H" 2 | 3 | scalar computeR(const fvMesh& mesh, volScalarField& r, dimensionedVector x0) 4 | { 5 | r = mag(mesh.C()-x0); 6 | return returnReduce(max(r).value(), maxOp()); 7 | } 8 | 9 | void computeU(const fvMesh& mesh, volVectorField& U, word pName) 10 | { 11 | // This allows a reference to a field to be obtained through the mesh object 12 | // alone by just knowing the name of the field. 13 | const volScalarField& pField = mesh.lookupObject(pName); 14 | 15 | // Do the usual 16 | U = fvc::grad(pField)*dimensionedScalar("tmp", dimTime, 1.); 17 | } 18 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/customLibrary/customLibrary.C: -------------------------------------------------------------------------------- 1 | #include "customLibrary.H" 2 | 3 | scalar computeR(const fvMesh& mesh, volScalarField& r, dimensionedVector x0) 4 | { 5 | r = mag(mesh.C()-x0); 6 | return returnReduce(max(r).value(), maxOp()); 7 | } 8 | 9 | void computeU(const fvMesh& mesh, volVectorField& U, word pName) 10 | { 11 | // This allows a reference to a field to be obtained through the mesh object 12 | // alone by just knowing the name of the field. 13 | const volScalarField& pField = mesh.lookupObject(pName); 14 | 15 | // Do the usual 16 | U = fvc::grad(pField)*dimensionedScalar("tmp", dimTime, 1.); 17 | } 18 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/customLibrary/customLibrary.H: -------------------------------------------------------------------------------- 1 | #include "fvCFD.H" 2 | 3 | // This method simply implements the calculation of the distance of each 4 | // cell centre from x0; it accepts the volScalarField r as a reference to avoid 5 | // passing large amounts of information by value, as this is expensive. 6 | // It returns the maximum value found. 7 | scalar computeR(const fvMesh& mesh, volScalarField& r, dimensionedVector x0); 8 | 9 | // This computes the velocity field. The reference to the pressure is obtained 10 | // through the mesh object, using the name of the p field only. This assmes a 11 | // default value which may be redefined, if necessary. 12 | void computeU(const fvMesh& mesh, volVectorField& U, word pName = "p"); 13 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/customLibrary/customLibrary.H: -------------------------------------------------------------------------------- 1 | #include "fvCFD.H" 2 | 3 | // This method simply implements the calculation of the distance of each 4 | // cell centre from x0; it accepts the scalarField r as a reference to avoid 5 | // passing large amounts of information by value, as this is expensive. 6 | // It returns the maximum value found. 7 | scalar computeR(const fvMesh& mesh, scalarField& r, dimensionedVector x0); 8 | 9 | // This computes the velocity field. The reference to the pressure is obtained 10 | // through the mesh object, using the name of the p field only. This assmes a 11 | // default value which may be redefined, if necessary. 12 | void computeU(const fvMesh& mesh, volVectorField& U, word pName = "p"); 13 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/customLibrary/customLibrary.H: -------------------------------------------------------------------------------- 1 | #include "fvCFD.H" 2 | 3 | // This method simply implements the calculation of the distance of each 4 | // cell centre from x0; it accepts the volScalarField r as a reference to avoid 5 | // passing large amounts of information by value, as this is expensive. 6 | // It returns the maximum value found. 7 | scalar computeR(const fvMesh& mesh, volScalarField& r, dimensionedVector x0); 8 | 9 | // This computes the velocity field. The reference to the pressure is obtained 10 | // through the mesh object, using the name of the p field only. This assmes a 11 | // default value which may be redefined, if necessary. 12 | void computeU(const fvMesh& mesh, volVectorField& U, word pName = "p"); 13 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/customLibrary/customLibrary.H: -------------------------------------------------------------------------------- 1 | #include "fvCFD.H" 2 | 3 | // This method simply implements the calculation of the distance of each 4 | // cell centre from x0; it accepts the volScalarField r as a reference to avoid 5 | // passing large amounts of information by value, as this is expensive. 6 | // It returns the maximum value found. 7 | scalar computeR(const fvMesh& mesh, volScalarField& r, dimensionedVector x0); 8 | 9 | // This computes the velocity field. The reference to the pressure is obtained 10 | // through the mesh object, using the name of the p field only. This assmes a 11 | // default value which may be redefined, if necessary. 12 | void computeU(const fvMesh& mesh, volVectorField& U, word pName = "p"); 13 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/derivedClass.H: -------------------------------------------------------------------------------- 1 | #include "fvCFD.H" 2 | 3 | // use a standard C++ stringstream object 4 | #include 5 | 6 | // This class is derived from the IOdictionary, declared in 7 | // $FOAM_SRC/OpenFOAM/db/IOobjects/IOdictionary . 8 | // We derive all the methods by setting maximum access level as public, thus allowing 9 | // all the inherited methods to be accessed in the same way as they were for 10 | // the base class. 11 | class myDict : public IOdictionary 12 | { 13 | public: 14 | // Main constructor which accepts an IOobject (a file) 15 | myDict(const IOobject& ioObj); 16 | ~myDict(); 17 | 18 | // custom method which prints the tokens (variables) defined in the file 19 | void printTokensInTheDict() const; 20 | }; 21 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/derivedClass.H: -------------------------------------------------------------------------------- 1 | #include "fvCFD.H" 2 | 3 | // use a standard C++ stringstream object 4 | #include 5 | 6 | // This class is derived from the IOdictionary, declared in 7 | // $FOAM_SRC/OpenFOAM/db/IOobjects/IOdictionary . 8 | // We derive all the methods by setting maximum access level as public, thus allowing 9 | // all the inherited methods to be accessed in the same way as they were for 10 | // the base class. 11 | class myDict : public IOdictionary 12 | { 13 | public: 14 | // Main constructor which accepts an IOobject (a file) 15 | myDict(const IOobject& ioObj); 16 | ~myDict(); 17 | 18 | // custom method which prints the tokens (variables) defined in the file 19 | void printTokensInTheDict() const; 20 | }; 21 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/derivedClass.H: -------------------------------------------------------------------------------- 1 | #include "fvCFD.H" 2 | 3 | // use a standard C++ stringstream object 4 | #include 5 | 6 | // This class is derived from the IOdictionary, declared in 7 | // $FOAM_SRC/OpenFOAM/db/IOobjects/IOdictionary . 8 | // We derive all the methods by setting maximum access level as public, thus allowing 9 | // all the inherited methods to be accessed in the same way as they were for 10 | // the base class. 11 | class myDict : public IOdictionary 12 | { 13 | public: 14 | // Main constructor which accepts an IOobject (a file) 15 | myDict(const IOobject& ioObj); 16 | ~myDict(); 17 | 18 | // custom method which prints the tokens (variables) defined in the file 19 | void printTokensInTheDict() const; 20 | }; 21 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/derivedClass.H: -------------------------------------------------------------------------------- 1 | #include "fvCFD.H" 2 | 3 | // use a standard C++ stringstream object 4 | #include 5 | 6 | // This class is derived from the IOdictionary, declared in 7 | // $FOAM_SRC/OpenFOAM/db/IOobjects/IOdictionary . 8 | // We derive all the methods by setting maximum access level as public, thus allowing 9 | // all the inherited methods to be accessed in the same way as they were for 10 | // the base class. 11 | class myDict : public IOdictionary 12 | { 13 | public: 14 | // Main constructor which accepts an IOobject (a file) 15 | myDict(const IOobject& ioObj); 16 | ~myDict(); 17 | 18 | // custom method which prints the tokens (variables) defined in the file 19 | void printTokensInTheDict() const; 20 | }; 21 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/createFields.H: -------------------------------------------------------------------------------- 1 | Info << nl << "Reading transportProperties\n" << endl; 2 | 3 | // reading transportProperties dictionary file from constant/ directory. 4 | IOdictionary transportProperties 5 | ( 6 | IOobject 7 | ( 8 | "transportProperties", 9 | runTime.constant(), 10 | mesh, 11 | IOobject::MUST_READ_IF_MODIFIED, 12 | IOobject::NO_WRITE 13 | ) 14 | ); 15 | 16 | // reading the wave speed "C" value from transportProperties dictionary 17 | dimensionedScalar C 18 | ( 19 | "C", 20 | dimensionSet(0,1,-1,0,0), 21 | transportProperties.lookup("C") 22 | ); 23 | 24 | Info << nl << "Reading field h" << endl; 25 | 26 | // reading the amplitude field "h" values. 27 | volScalarField h 28 | ( 29 | IOobject 30 | ( 31 | "h", 32 | runTime.timeName(), 33 | mesh, 34 | IOobject::MUST_READ, 35 | IOobject::AUTO_WRITE 36 | ), 37 | mesh 38 | ); 39 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/createFields.H: -------------------------------------------------------------------------------- 1 | Info << nl << "Reading transportProperties\n" << endl; 2 | 3 | // reading transportProperties dictionary file from constant/ directory. 4 | IOdictionary transportProperties 5 | ( 6 | IOobject 7 | ( 8 | "transportProperties", 9 | runTime.constant(), 10 | mesh, 11 | IOobject::MUST_READ_IF_MODIFIED, 12 | IOobject::NO_WRITE 13 | ) 14 | ); 15 | 16 | // reading the wave speed "C" value from transportProperties dictionary 17 | dimensionedScalar C 18 | ( 19 | "C", 20 | dimensionSet(0,1,-1,0,0), 21 | transportProperties.lookup("C") 22 | ); 23 | 24 | Info << nl << "Reading field h" << endl; 25 | 26 | // reading the amplitude field "h" values. 27 | volScalarField h 28 | ( 29 | IOobject 30 | ( 31 | "h", 32 | runTime.timeName(), 33 | mesh, 34 | IOobject::MUST_READ, 35 | IOobject::AUTO_WRITE 36 | ), 37 | mesh 38 | ); 39 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/createFields.H: -------------------------------------------------------------------------------- 1 | Info << "Reading transportProperties\n" << endl; 2 | 3 | IOdictionary transportProperties 4 | ( 5 | IOobject 6 | ( 7 | "transportProperties", 8 | runTime.constant(), 9 | mesh, 10 | IOobject::MUST_READ_IF_MODIFIED, 11 | IOobject::NO_WRITE 12 | ) 13 | ); 14 | 15 | dimensionedScalar nu 16 | ( 17 | "nu", 18 | dimViscosity, 19 | transportProperties.lookup("nu") 20 | ); 21 | 22 | Info<< "Reading field p\n" << endl; 23 | volScalarField p 24 | ( 25 | IOobject 26 | ( 27 | "p", 28 | runTime.timeName(), 29 | mesh, 30 | IOobject::MUST_READ, 31 | IOobject::AUTO_WRITE 32 | ), 33 | mesh 34 | ); 35 | 36 | Info<< "Reading field U\n" << endl; 37 | volVectorField U 38 | ( 39 | IOobject 40 | ( 41 | "U", 42 | runTime.timeName(), 43 | mesh, 44 | IOobject::MUST_READ, 45 | IOobject::AUTO_WRITE 46 | ), 47 | mesh 48 | ); 49 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- 1 | Info << "Reading transportProperties\n" << endl; 2 | 3 | IOdictionary transportProperties 4 | ( 5 | IOobject 6 | ( 7 | "transportProperties", 8 | runTime.constant(), 9 | mesh, 10 | IOobject::MUST_READ_IF_MODIFIED, 11 | IOobject::NO_WRITE 12 | ) 13 | ); 14 | 15 | dimensionedScalar nu 16 | ( 17 | "nu", 18 | dimViscosity, 19 | transportProperties.lookup("nu") 20 | ); 21 | 22 | Info<< "Reading field p\n" << endl; 23 | volScalarField p 24 | ( 25 | IOobject 26 | ( 27 | "p", 28 | runTime.timeName(), 29 | mesh, 30 | IOobject::MUST_READ, 31 | IOobject::AUTO_WRITE 32 | ), 33 | mesh 34 | ); 35 | 36 | Info<< "Reading field U\n" << endl; 37 | volVectorField U 38 | ( 39 | IOobject 40 | ( 41 | "U", 42 | runTime.timeName(), 43 | mesh, 44 | IOobject::MUST_READ, 45 | IOobject::AUTO_WRITE 46 | ), 47 | mesh 48 | ); 49 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/createFields.H: -------------------------------------------------------------------------------- 1 | Info << "Reading transportProperties\n" << endl; 2 | 3 | IOdictionary transportProperties 4 | ( 5 | IOobject 6 | ( 7 | "transportProperties", 8 | runTime.constant(), 9 | mesh, 10 | IOobject::MUST_READ_IF_MODIFIED, 11 | IOobject::NO_WRITE 12 | ) 13 | ); 14 | 15 | dimensionedScalar nu 16 | ( 17 | "nu", 18 | dimViscosity, 19 | transportProperties.lookup("nu") 20 | ); 21 | 22 | Info<< "Reading field p\n" << endl; 23 | volScalarField p 24 | ( 25 | IOobject 26 | ( 27 | "p", 28 | runTime.timeName(), 29 | mesh, 30 | IOobject::MUST_READ, 31 | IOobject::AUTO_WRITE 32 | ), 33 | mesh 34 | ); 35 | 36 | Info<< "Reading field U\n" << endl; 37 | volVectorField U 38 | ( 39 | IOobject 40 | ( 41 | "U", 42 | runTime.timeName(), 43 | mesh, 44 | IOobject::MUST_READ, 45 | IOobject::AUTO_WRITE 46 | ), 47 | mesh 48 | ); 49 | -------------------------------------------------------------------------------- /OFtutorial14_SIMPLE_algorithm/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: v2006 | 5 | | \\ / A nd | Website: www.openfoam.com | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: v2012 | 5 | | \\ / A nd | Website: www.openfoam.com | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object turbulenceProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | simulationType laminar; 19 | 20 | // ************************************************************************* // 21 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- 1 | Info << "Reading transportProperties\n" << endl; 2 | 3 | IOdictionary transportProperties 4 | ( 5 | IOobject 6 | ( 7 | "transportProperties", 8 | runTime.constant(), 9 | mesh, 10 | IOobject::MUST_READ_IF_MODIFIED, 11 | IOobject::NO_WRITE 12 | ) 13 | ); 14 | 15 | dimensionedScalar nu 16 | ( 17 | "nu", 18 | dimViscosity, 19 | transportProperties.lookup("nu") 20 | ); 21 | 22 | Info<< "Reading field p\n" << endl; 23 | volScalarField p 24 | ( 25 | IOobject 26 | ( 27 | "p", 28 | runTime.timeName(), 29 | mesh, 30 | IOobject::MUST_READ, 31 | IOobject::AUTO_WRITE 32 | ), 33 | mesh 34 | ); 35 | 36 | Info<< "Reading field U\n" << endl; 37 | volVectorField U 38 | ( 39 | IOobject 40 | ( 41 | "U", 42 | runTime.timeName(), 43 | mesh, 44 | IOobject::MUST_READ, 45 | IOobject::AUTO_WRITE 46 | ), 47 | mesh 48 | ); 49 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/createFields.H: -------------------------------------------------------------------------------- 1 | Info << "Reading transportProperties\n" << endl; 2 | 3 | IOdictionary transportProperties 4 | ( 5 | IOobject 6 | ( 7 | "transportProperties", 8 | runTime.constant(), 9 | mesh, 10 | IOobject::MUST_READ_IF_MODIFIED, 11 | IOobject::NO_WRITE 12 | ) 13 | ); 14 | 15 | dimensionedScalar nu 16 | ( 17 | "nu", 18 | dimViscosity, 19 | transportProperties.lookup("nu") 20 | ); 21 | 22 | Info<< "Reading field p\n" << endl; 23 | volScalarField p 24 | ( 25 | IOobject 26 | ( 27 | "p", 28 | runTime.timeName(), 29 | mesh, 30 | IOobject::MUST_READ, 31 | IOobject::AUTO_WRITE 32 | ), 33 | mesh 34 | ); 35 | 36 | Info<< "Reading field U\n" << endl; 37 | volVectorField U 38 | ( 39 | IOobject 40 | ( 41 | "U", 42 | runTime.timeName(), 43 | mesh, 44 | IOobject::MUST_READ, 45 | IOobject::AUTO_WRITE 46 | ), 47 | mesh 48 | ); 49 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/createFields.H: -------------------------------------------------------------------------------- 1 | Info << "Reading transportProperties\n" << endl; 2 | 3 | IOdictionary transportProperties 4 | ( 5 | IOobject 6 | ( 7 | "transportProperties", 8 | runTime.constant(), 9 | mesh, 10 | IOobject::MUST_READ_IF_MODIFIED, 11 | IOobject::NO_WRITE 12 | ) 13 | ); 14 | 15 | dimensionedScalar nu 16 | ( 17 | "nu", 18 | dimViscosity, 19 | transportProperties.lookup("nu") 20 | ); 21 | 22 | Info<< "Reading field p\n" << endl; 23 | volScalarField p 24 | ( 25 | IOobject 26 | ( 27 | "p", 28 | runTime.timeName(), 29 | mesh, 30 | IOobject::MUST_READ, 31 | IOobject::AUTO_WRITE 32 | ), 33 | mesh 34 | ); 35 | 36 | Info<< "Reading field U\n" << endl; 37 | volVectorField U 38 | ( 39 | IOobject 40 | ( 41 | "U", 42 | runTime.timeName(), 43 | mesh, 44 | IOobject::MUST_READ, 45 | IOobject::AUTO_WRITE 46 | ), 47 | mesh 48 | ); 49 | -------------------------------------------------------------------------------- /OFtutorial15_discretisation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | DT DT [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- 1 | Info << "Reading transportProperties\n" << endl; 2 | 3 | IOdictionary transportProperties 4 | ( 5 | IOobject 6 | ( 7 | "transportProperties", 8 | runTime.constant(), 9 | mesh, 10 | IOobject::MUST_READ_IF_MODIFIED, 11 | IOobject::NO_WRITE 12 | ) 13 | ); 14 | 15 | dimensionedScalar nu 16 | ( 17 | "nu", 18 | dimViscosity, 19 | transportProperties.lookup("nu") 20 | ); 21 | 22 | Info<< "Reading field p\n" << endl; 23 | volScalarField p 24 | ( 25 | IOobject 26 | ( 27 | "p", 28 | runTime.timeName(), 29 | mesh, 30 | IOobject::MUST_READ, 31 | IOobject::AUTO_WRITE 32 | ), 33 | mesh 34 | ); 35 | 36 | Info<< "Reading field U\n" << endl; 37 | volVectorField U 38 | ( 39 | IOobject 40 | ( 41 | "U", 42 | runTime.timeName(), 43 | mesh, 44 | IOobject::MUST_READ, 45 | IOobject::AUTO_WRITE 46 | ), 47 | mesh 48 | ); 49 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/createFields.H: -------------------------------------------------------------------------------- 1 | Info << "Reading transportProperties\n" << endl; 2 | 3 | IOdictionary transportProperties 4 | ( 5 | IOobject 6 | ( 7 | "transportProperties", 8 | runTime.constant(), 9 | mesh, 10 | IOobject::MUST_READ_IF_MODIFIED, 11 | IOobject::NO_WRITE 12 | ) 13 | ); 14 | 15 | dimensionedScalar nu 16 | ( 17 | "nu", 18 | dimViscosity, 19 | transportProperties.lookup("nu") 20 | ); 21 | 22 | Info<< "Reading field p\n" << endl; 23 | volScalarField p 24 | ( 25 | IOobject 26 | ( 27 | "p", 28 | runTime.timeName(), 29 | mesh, 30 | IOobject::MUST_READ, 31 | IOobject::AUTO_WRITE 32 | ), 33 | mesh 34 | ); 35 | 36 | Info<< "Reading field U\n" << endl; 37 | volVectorField U 38 | ( 39 | IOobject 40 | ( 41 | "U", 42 | runTime.timeName(), 43 | mesh, 44 | IOobject::MUST_READ, 45 | IOobject::AUTO_WRITE 46 | ), 47 | mesh 48 | ); 49 | -------------------------------------------------------------------------------- /OFtutorial00_helloWorld/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial01_inputOutput/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial10_transportEquation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | gamma gamma [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial07_customLibraries/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial11_modifyingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial14_SIMPLE_algorithm/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: v2006 | 5 | | \\ / A nd | Website: www.openfoam.com | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial03_understandingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial04_basicFieldOperations/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial05_basicParallelComputing/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial15_discretisation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | DT DT [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial0_helloWorld/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial1_inputOutput/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial02_commandLineArgumentsAndOptions/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial16_particleTracking/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: v2012 | 5 | | \\ / A nd | Website: www.openfoam.com | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | transportModel Newtonian; 19 | 20 | nu 1e-05; 21 | 22 | // ************************************************************************* // 23 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial6_customLibraries/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial9_transportEquation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | gamma gamma [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial00_helloWorld/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial01_inputOutput/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial10_transportEquation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | gamma gamma [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial00_helloWorld/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial01_inputOutput/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial10_transportEquation/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | gamma gamma [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial2_understandingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial3_basicFieldOperations/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial4_basicParallelComputing/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial07_customLibraries/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial11_modifyingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial07_customLibraries/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial11_modifyingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial03_understandingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial04_basicFieldOperations/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial05_basicParallelComputing/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial03_understandingTheMesh/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial04_basicFieldOperations/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial05_basicParallelComputing/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | transportModel Newtonian; 19 | nu [0 2 -1 0 0 0 0] 1e-6; 20 | 21 | 22 | // ************************************************************************* // 23 | -------------------------------------------------------------------------------- /OFtutorial13_waveEquationSolver/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | // wave speed definition 19 | C [0 1 -1 0 0 0 0] 0.05; 20 | 21 | 22 | // ************************************************************************* // 23 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial02_commandLineArgumentsAndOptions/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial02_commandLineArgumentsAndOptions/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | 21 | // ************************************************************************* // 22 | -------------------------------------------------------------------------------- /OFtutorial06_customClasses/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | someValue 10; 21 | someVector (1 0 0); 22 | 23 | // ************************************************************************* // 24 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object mirrorMeshDict; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | planeType pointAndNormal; 18 | planeTolerance 1e-6; 19 | 20 | pointAndNormalDict 21 | { 22 | basePoint (0 0 0); 23 | normalVector (0 1 0); 24 | } 25 | // ************************************************************************* // 26 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object transportProperties; 14 | } 15 | 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | #include "../system/runConditions" 19 | 20 | transportModel Newtonian; 21 | 22 | nu nu [0 2 -1 0 0 0 0] $visc; 23 | 24 | // ************************************************************************* // 25 | -------------------------------------------------------------------------------- /OFtutorial12_momentumSource/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | turbulence off; 23 | printCoeffs on; 24 | } 25 | 26 | // ************************************************************************* // 27 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | transportModel Newtonian; 19 | nu [0 2 -1 0 0 0 0] 1e-6; 20 | 21 | 22 | // ************************************************************************* // 23 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | transportModel Newtonian; 19 | nu [0 2 -1 0 0 0 0] 1e-6; 20 | 21 | 22 | // ************************************************************************* // 23 | -------------------------------------------------------------------------------- /OFtutorial08_customBC/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | 23 | turbulence on; 24 | 25 | printCoeffs on; 26 | } 27 | 28 | // ************************************************************************* // 29 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial5_customClasses/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | someValue 10; 21 | someVector (1 0 0); 22 | 23 | // ************************************************************************* // 24 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial13_waveEquationSolver/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | // wave speed definition 19 | C [0 1 -1 0 0 0 0] 0.05; 20 | 21 | 22 | // ************************************************************************* // 23 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object mirrorMeshDict; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | planeType pointAndNormal; 18 | planeTolerance 1e-6; 19 | 20 | pointAndNormalDict 21 | { 22 | basePoint (0 0 0); 23 | normalVector (0 1 0); 24 | } 25 | // ************************************************************************* // 26 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial06_customClasses/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | someValue 10; 21 | someVector (1 0 0); 22 | 23 | // ************************************************************************* // 24 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial06_customClasses/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 3.0.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | location "constant"; 14 | object transportProperties; 15 | } 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | nu [0 2 -1 0 0 0 0] 0.01; 19 | 20 | someValue 10; 21 | someVector (1 0 0); 22 | 23 | // ************************************************************************* // 24 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object mirrorMeshDict; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | planeType pointAndNormal; 18 | planeTolerance 1e-6; 19 | 20 | pointAndNormalDict 21 | { 22 | basePoint (0 0 0); 23 | normalVector (0 1 0); 24 | } 25 | // ************************************************************************* // 26 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object mirrorMeshDict; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | planeType pointAndNormal; 18 | planeTolerance 1e-6; 19 | 20 | pointAndNormalDict 21 | { 22 | basePoint (0 0 0); 23 | normalVector (0 1 0); 24 | } 25 | // ************************************************************************* // 26 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object mirrorMeshDict; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | planeType pointAndNormal; 18 | planeTolerance 1e-6; 19 | 20 | pointAndNormalDict 21 | { 22 | basePoint (0 0 0); 23 | normalVector (0 1 0); 24 | } 25 | // ************************************************************************* // 26 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object transportProperties; 14 | } 15 | 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | #include "../system/runConditions" 19 | 20 | transportModel Newtonian; 21 | 22 | nu nu [0 2 -1 0 0 0 0] $visc; 23 | 24 | // ************************************************************************* // 25 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object transportProperties; 14 | } 15 | 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | #include "../system/runConditions" 19 | 20 | transportModel Newtonian; 21 | 22 | nu nu [0 2 -1 0 0 0 0] $visc; 23 | 24 | // ************************************************************************* // 25 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial7_customBC/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | 23 | turbulence on; 24 | 25 | printCoeffs on; 26 | } 27 | 28 | // ************************************************************************* // 29 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object transportProperties; 14 | } 15 | 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | #include "../system/runConditions" 19 | 20 | transportModel Newtonian; 21 | 22 | nu nu [0 2 -1 0 0 0 0] $visc; 23 | 24 | // ************************************************************************* // 25 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial12_momentumSource/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | turbulence off; 23 | printCoeffs on; 24 | } 25 | 26 | // ************************************************************************* // 27 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object transportProperties; 14 | } 15 | 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | #include "../system/runConditions" 19 | 20 | transportModel Newtonian; 21 | 22 | nu nu [0 2 -1 0 0 0 0] $visc; 23 | 24 | // ************************************************************************* // 25 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial12_momentumSource/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | turbulence off; 23 | printCoeffs on; 24 | } 25 | 26 | // ************************************************************************* // 27 | -------------------------------------------------------------------------------- /OFtutorial09_runtimePostprocessingUtility/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | 23 | turbulence on; 24 | 25 | printCoeffs on; 26 | } 27 | 28 | // ************************************************************************* // 29 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial08_customBC/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | 23 | turbulence on; 24 | 25 | printCoeffs on; 26 | } 27 | 28 | // ************************************************************************* // 29 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial08_customBC/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | 23 | turbulence on; 24 | 25 | printCoeffs on; 26 | } 27 | 28 | // ************************************************************************* // 29 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object mirrorMeshDict; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | planeType pointAndNormal; 18 | planeTolerance 1e-6; 19 | 20 | pointAndNormalDict 21 | { 22 | basePoint (0 0 0); 23 | normalVector (0 1 0); 24 | } 25 | // ************************************************************************* // 26 | -------------------------------------------------------------------------------- /OldReleases/OF5and6/OFtutorial09_runtimePostprocessingUtility/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object mirrorMeshDict; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | planeType pointAndNormal; 18 | planeTolerance 1e-6; 19 | 20 | pointAndNormalDict 21 | { 22 | basePoint (0 0 0); 23 | normalVector (0 1 0); 24 | } 25 | // ************************************************************************* // 26 | -------------------------------------------------------------------------------- /OldReleases/OF7and8/OFtutorial09_runtimePostprocessingUtility/testCase/system/mirrorMeshDict: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object mirrorMeshDict; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | planeType pointAndNormal; 18 | planeTolerance 1e-6; 19 | 20 | pointAndNormalDict 21 | { 22 | basePoint (0 0 0); 23 | normalVector (0 1 0); 24 | } 25 | // ************************************************************************* // 26 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/constant/transportProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------*\ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.1 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object transportProperties; 14 | } 15 | 16 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 17 | 18 | #include "../system/runConditions" 19 | 20 | transportModel Newtonian; 21 | 22 | nu nu [0 2 -1 0 0 0 0] $visc; 23 | 24 | // ************************************************************************* // 25 | -------------------------------------------------------------------------------- /OldReleases/OF301/OFtutorial8_runtimePostprocessingUtility/testCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- 1 | /*--------------------------------*- C++ -*----------------------------------* \ 2 | | ========= | | 3 | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | 4 | | \\ / O peration | Version: 2.2.0 | 5 | | \\ / A nd | Web: www.OpenFOAM.org | 6 | | \\/ M anipulation | | 7 | \*---------------------------------------------------------------------------*/ 8 | FoamFile 9 | { 10 | version 2.0; 11 | format ascii; 12 | class dictionary; 13 | object turbulenceProperties; 14 | } 15 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 16 | 17 | simulationType RAS; 18 | 19 | RAS 20 | { 21 | RASModel kOmegaSST; 22 | 23 | turbulence on; 24 | 25 | printCoeffs on; 26 | } 27 | 28 | // ************************************************************************* // 29 | --------------------------------------------------------------------------------