References:
Savill, A. M. (1993).
Some recent progress in the turbulence modelling of by-pass transition.
Near-wall turbulent flows, 829-848.
Savill, A. M. (1996).
One-point closures applied to transition.
In Turbulence and transition modelling (pp. 233-268).
Springer Netherlands.
Based on case contributed by Florian Schwertfirm, Kreuzinger und Manhart Turbulenz GmbH.
31 lines
937 B
C++
31 lines
937 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Web: www.OpenFOAM.org
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Writes graph data for specified fields along a line, specified by start
|
|
and end points.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
start (0.04075 0.05 0);
|
|
end (3.04 0.05 0);
|
|
fields (k);
|
|
|
|
// Sampling and I/O settings
|
|
#includeEtc "caseDicts/postProcessing/graphs/sampleDict.cfg"
|
|
|
|
// Override settings here, e.g.
|
|
setConfig
|
|
{
|
|
axis x;
|
|
}
|
|
|
|
// Must be last entry
|
|
#includeEtc "caseDicts/postProcessing/graphs/graph.cfg"
|
|
|
|
// ************************************************************************* //
|