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
35 lines
511 B
C++
35 lines
511 B
C++
// -*- C++ -*-
|
|
|
|
type sets;
|
|
libs (sampling);
|
|
interpolationScheme cellPoint;
|
|
setFormat raw;
|
|
|
|
writeControl writeTime;
|
|
|
|
fields
|
|
(
|
|
T
|
|
p_rgh
|
|
U
|
|
k
|
|
ObukhovLength
|
|
Ustar
|
|
turbulenceProperties:R
|
|
);
|
|
|
|
sets
|
|
(
|
|
lineZ1
|
|
{
|
|
type midPoint;
|
|
axis z;
|
|
start (0 0 0);
|
|
end (0 0 6001);
|
|
nPoints 200;
|
|
}
|
|
);
|
|
|
|
|
|
// *********************************************************************** //
|