├── LICENSE ├── README.org ├── benchmarks ├── README.org └── motorbike │ ├── 0.org │ ├── U │ ├── include │ │ ├── fixedInlet │ │ ├── frontBackUpperPatches │ │ └── initialConditions │ ├── k │ ├── nut │ ├── omega │ └── p │ ├── Clean │ ├── Mesh │ ├── README.org │ ├── Setup │ ├── Solve │ ├── constant │ ├── RASProperties │ ├── transportProperties │ └── turbulenceProperties │ └── system │ ├── blockMeshDict-mesh.in │ ├── controlDict │ ├── cuttingPlane │ ├── decomposeParDict-mesh.in │ ├── decomposeParDict-solve.in │ ├── forceCoeffs │ ├── fvSchemes │ ├── fvSolution │ ├── meshQualityDict │ ├── readFields │ ├── snappyHexMeshDict │ ├── streamLines │ ├── surfaceFeatureExtractDict │ └── wallBoundedStreamLines ├── libhbm ├── Makefile ├── README.org └── libhbm.cpp ├── patches ├── OpenFOAM_IntelCompiler2017.patch └── README.org ├── smoothersKNL ├── GaussSeidelKNL │ ├── GaussSeidelSmootherKNL.C │ └── GaussSeidelSmootherKNL.H ├── Make │ ├── files │ └── options ├── README.org └── symGaussSeidelKNL │ ├── symGaussSeidelSmootherKNL.C │ └── symGaussSeidelSmootherKNL.H └── wip ├── decomposition ├── README.org ├── boundingDecomp │ ├── boundingDecomp.C │ └── boundingDecomp.H └── heterogeneousDecomp │ ├── heterogeneousDecomp.C │ └── heterogeneousDecomp.H ├── expression_templates ├── README.org └── kOmegaSST │ ├── Expression.H │ ├── kOmegaSST.C │ └── kOmegaSST.H ├── hybrid └── openmp-for-OpenFOAM-2.3.patch ├── motorbike82M_benchmark ├── README.org ├── lesFiles │ ├── Allrun │ ├── LESProperties │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution.GAMG │ ├── fvSolution.PCGGAMG │ ├── nuSgs │ └── turbulenceProperties └── motorbike │ ├── 0.org │ ├── U │ ├── include │ │ ├── fixedInlet │ │ ├── frontBackUpperPatches │ │ └── initialConditions │ ├── k │ ├── nuTilda │ ├── nut │ └── p │ ├── README.org │ ├── constant │ ├── RASProperties │ ├── polyMesh │ │ ├── blockMeshDict │ │ ├── blockMeshDict.8pSmall │ │ ├── boundary │ │ ├── faces.gz │ │ ├── neighbour.gz │ │ ├── owner.gz │ │ └── points.gz │ ├── transportProperties │ └── triSurface │ │ ├── README │ │ └── motorBike.obj.gz │ └── system │ ├── controlDict │ ├── cuttingPlane │ ├── decomposeParDict-hierarchical │ ├── decomposeParDict-scotch_ml.tpl │ ├── forceCoeffs │ ├── fvSchemes │ ├── fvSolution │ ├── fvSolution.GAMG │ ├── fvSolution.PCGGAMG │ ├── readFields │ ├── snappyHexMeshDict │ └── streamLines └── vectorization_improvements └── vectorization_updates.patch /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/README.org -------------------------------------------------------------------------------- /benchmarks/README.org: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/motorbike/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/0.org/U -------------------------------------------------------------------------------- /benchmarks/motorbike/0.org/include/fixedInlet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/0.org/include/fixedInlet -------------------------------------------------------------------------------- /benchmarks/motorbike/0.org/include/frontBackUpperPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/0.org/include/frontBackUpperPatches -------------------------------------------------------------------------------- /benchmarks/motorbike/0.org/include/initialConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/0.org/include/initialConditions -------------------------------------------------------------------------------- /benchmarks/motorbike/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/0.org/k -------------------------------------------------------------------------------- /benchmarks/motorbike/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/0.org/nut -------------------------------------------------------------------------------- /benchmarks/motorbike/0.org/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/0.org/omega -------------------------------------------------------------------------------- /benchmarks/motorbike/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/0.org/p -------------------------------------------------------------------------------- /benchmarks/motorbike/Clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/Clean -------------------------------------------------------------------------------- /benchmarks/motorbike/Mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/Mesh -------------------------------------------------------------------------------- /benchmarks/motorbike/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/README.org -------------------------------------------------------------------------------- /benchmarks/motorbike/Setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/Setup -------------------------------------------------------------------------------- /benchmarks/motorbike/Solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/Solve -------------------------------------------------------------------------------- /benchmarks/motorbike/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/constant/RASProperties -------------------------------------------------------------------------------- /benchmarks/motorbike/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/constant/transportProperties -------------------------------------------------------------------------------- /benchmarks/motorbike/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/constant/turbulenceProperties -------------------------------------------------------------------------------- /benchmarks/motorbike/system/blockMeshDict-mesh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/blockMeshDict-mesh.in -------------------------------------------------------------------------------- /benchmarks/motorbike/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/controlDict -------------------------------------------------------------------------------- /benchmarks/motorbike/system/cuttingPlane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/cuttingPlane -------------------------------------------------------------------------------- /benchmarks/motorbike/system/decomposeParDict-mesh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/decomposeParDict-mesh.in -------------------------------------------------------------------------------- /benchmarks/motorbike/system/decomposeParDict-solve.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/decomposeParDict-solve.in -------------------------------------------------------------------------------- /benchmarks/motorbike/system/forceCoeffs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/forceCoeffs -------------------------------------------------------------------------------- /benchmarks/motorbike/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/fvSchemes -------------------------------------------------------------------------------- /benchmarks/motorbike/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/fvSolution -------------------------------------------------------------------------------- /benchmarks/motorbike/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/meshQualityDict -------------------------------------------------------------------------------- /benchmarks/motorbike/system/readFields: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/readFields -------------------------------------------------------------------------------- /benchmarks/motorbike/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/snappyHexMeshDict -------------------------------------------------------------------------------- /benchmarks/motorbike/system/streamLines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/streamLines -------------------------------------------------------------------------------- /benchmarks/motorbike/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /benchmarks/motorbike/system/wallBoundedStreamLines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/benchmarks/motorbike/system/wallBoundedStreamLines -------------------------------------------------------------------------------- /libhbm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/libhbm/Makefile -------------------------------------------------------------------------------- /libhbm/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/libhbm/README.org -------------------------------------------------------------------------------- /libhbm/libhbm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/libhbm/libhbm.cpp -------------------------------------------------------------------------------- /patches/OpenFOAM_IntelCompiler2017.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/patches/OpenFOAM_IntelCompiler2017.patch -------------------------------------------------------------------------------- /patches/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/patches/README.org -------------------------------------------------------------------------------- /smoothersKNL/GaussSeidelKNL/GaussSeidelSmootherKNL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/smoothersKNL/GaussSeidelKNL/GaussSeidelSmootherKNL.C -------------------------------------------------------------------------------- /smoothersKNL/GaussSeidelKNL/GaussSeidelSmootherKNL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/smoothersKNL/GaussSeidelKNL/GaussSeidelSmootherKNL.H -------------------------------------------------------------------------------- /smoothersKNL/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/smoothersKNL/Make/files -------------------------------------------------------------------------------- /smoothersKNL/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/smoothersKNL/Make/options -------------------------------------------------------------------------------- /smoothersKNL/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/smoothersKNL/README.org -------------------------------------------------------------------------------- /smoothersKNL/symGaussSeidelKNL/symGaussSeidelSmootherKNL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/smoothersKNL/symGaussSeidelKNL/symGaussSeidelSmootherKNL.C -------------------------------------------------------------------------------- /smoothersKNL/symGaussSeidelKNL/symGaussSeidelSmootherKNL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/smoothersKNL/symGaussSeidelKNL/symGaussSeidelSmootherKNL.H -------------------------------------------------------------------------------- /wip/decomposition/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/decomposition/README.org -------------------------------------------------------------------------------- /wip/decomposition/boundingDecomp/boundingDecomp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/decomposition/boundingDecomp/boundingDecomp.C -------------------------------------------------------------------------------- /wip/decomposition/boundingDecomp/boundingDecomp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/decomposition/boundingDecomp/boundingDecomp.H -------------------------------------------------------------------------------- /wip/decomposition/heterogeneousDecomp/heterogeneousDecomp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/decomposition/heterogeneousDecomp/heterogeneousDecomp.C -------------------------------------------------------------------------------- /wip/decomposition/heterogeneousDecomp/heterogeneousDecomp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/decomposition/heterogeneousDecomp/heterogeneousDecomp.H -------------------------------------------------------------------------------- /wip/expression_templates/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/expression_templates/README.org -------------------------------------------------------------------------------- /wip/expression_templates/kOmegaSST/Expression.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/expression_templates/kOmegaSST/Expression.H -------------------------------------------------------------------------------- /wip/expression_templates/kOmegaSST/kOmegaSST.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/expression_templates/kOmegaSST/kOmegaSST.C -------------------------------------------------------------------------------- /wip/expression_templates/kOmegaSST/kOmegaSST.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/expression_templates/kOmegaSST/kOmegaSST.H -------------------------------------------------------------------------------- /wip/hybrid/openmp-for-OpenFOAM-2.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/hybrid/openmp-for-OpenFOAM-2.3.patch -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/README.org -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/lesFiles/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/lesFiles/Allrun -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/lesFiles/LESProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/lesFiles/LESProperties -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/lesFiles/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/lesFiles/controlDict -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/lesFiles/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/lesFiles/fvSchemes -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/lesFiles/fvSolution.GAMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/lesFiles/fvSolution.GAMG -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/lesFiles/fvSolution.PCGGAMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/lesFiles/fvSolution.PCGGAMG -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/lesFiles/nuSgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/lesFiles/nuSgs -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/lesFiles/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/lesFiles/turbulenceProperties -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/0.org/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/0.org/U -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/0.org/include/fixedInlet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/0.org/include/fixedInlet -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/0.org/include/frontBackUpperPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/0.org/include/frontBackUpperPatches -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/0.org/include/initialConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/0.org/include/initialConditions -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/0.org/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/0.org/k -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/0.org/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/0.org/nuTilda -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/0.org/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/0.org/nut -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/0.org/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/0.org/p -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/README.org -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/RASProperties -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/polyMesh/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/polyMesh/blockMeshDict -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/polyMesh/blockMeshDict.8pSmall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/polyMesh/blockMeshDict.8pSmall -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/polyMesh/boundary -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/polyMesh/faces.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/polyMesh/faces.gz -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/polyMesh/neighbour.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/polyMesh/neighbour.gz -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/polyMesh/owner.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/polyMesh/owner.gz -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/polyMesh/points.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/polyMesh/points.gz -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/transportProperties -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/triSurface/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/triSurface/README -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/constant/triSurface/motorBike.obj.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/constant/triSurface/motorBike.obj.gz -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/controlDict -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/cuttingPlane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/cuttingPlane -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/decomposeParDict-hierarchical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/decomposeParDict-hierarchical -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/decomposeParDict-scotch_ml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/decomposeParDict-scotch_ml.tpl -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/forceCoeffs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/forceCoeffs -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/fvSchemes -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/fvSolution -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/fvSolution.GAMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/fvSolution.GAMG -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/fvSolution.PCGGAMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/fvSolution.PCGGAMG -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/readFields: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/readFields -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/snappyHexMeshDict -------------------------------------------------------------------------------- /wip/motorbike82M_benchmark/motorbike/system/streamLines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/motorbike82M_benchmark/motorbike/system/streamLines -------------------------------------------------------------------------------- /wip/vectorization_improvements/vectorization_updates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFOAM/OpenFOAM-Intel/HEAD/wip/vectorization_improvements/vectorization_updates.patch --------------------------------------------------------------------------------