mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: atm wall functions: use auto and bool types wherever possible TUT: atmosphericModels: changes for style consistency
26 lines
441 B
C++
26 lines
441 B
C++
// -*- C++ -*-
|
|
|
|
type sets;
|
|
libs (sampling);
|
|
interpolationScheme cellPoint;
|
|
setFormat raw;
|
|
|
|
writeControl writeTime;
|
|
|
|
fields (U);
|
|
|
|
sets
|
|
(
|
|
lineZ1
|
|
{
|
|
type midPoint;
|
|
axis z;
|
|
start (0 0 0);
|
|
end (0 0 6001);
|
|
nPoints 200;
|
|
}
|
|
);
|
|
|
|
|
|
// *********************************************************************** //
|