R
, L
and U
are now PatchFunction1
type.R
, L
and U
: Uref
and Lref
(default=1).scale
(default=1).chan395DFSEM
and PCF
tutorials with planeChannel
and oneCellThickPlaneChannel
tutorials.
#2098 (closed) #2097 (closed) #2090 #1004 #1744 #2089 (closed)
A set of results obtained from the planeChannel
tutorial (and its plot script available to users) with a different set of settings can be seen below:
Users (my apologies) will have to change the input syntax for R
, L
and U
entries. For example, for reading the input files in constant/boundaryData/inlet/0/
, users were using the following minimal syntax:
inlet
{
type turbulentDFSEMInlet;
delta 1;
mapMethod nearestCell;
value $internalField;
}
For the same effect, one of the syntax examples could be as follows:
inlet
{
type turbulentDFSEMInlet;
delta 1;
U mappedFile;
R mappedFile;
L mappedFile;
mapMethod nearest;
value $internalField;
}
or as follows:
inlet
{
type turbulentDFSEMInlet;
delta 1;
U
{
type mappedFile;
mapMethod nearest;
}
R
{
type mappedFile;
mapMethod nearest;
}
L
{
type mappedFile;
mapMethod nearest;
}
value $internalField;
}
Users can, however, use any of the PatchFunction1
input syntax exemplified in this link and this link.
nCellPerEddy
entry was changed from 5 to 1, which is the default value corresponding to the original journal paper.nCellPerEddy
entry was kept the same as 5.