mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: applyBoundaryLayer: use actual names
This commit is contained in:
@ -110,7 +110,7 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
if (args.optionFound("writenut"))
|
if (args.optionFound("writenut"))
|
||||||
{
|
{
|
||||||
Info<< "Writing nut" << endl;
|
Info<< "Writing " << nut.name() << nl << endl;
|
||||||
nut.write();
|
nut.write();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -127,7 +127,7 @@ int main(int argc, char *argv[])
|
|||||||
k = sqr(nut/(ck0*min(y, ybl)));
|
k = sqr(nut/(ck0*min(y, ybl)));
|
||||||
k.correctBoundaryConditions();
|
k.correctBoundaryConditions();
|
||||||
|
|
||||||
Info<< "Writing k\n" << endl;
|
Info<< "Writing " << k.name() << nl << endl;
|
||||||
k.write();
|
k.write();
|
||||||
|
|
||||||
|
|
||||||
@ -138,7 +138,7 @@ int main(int argc, char *argv[])
|
|||||||
epsilon = ce0*k*sqrt(k)/min(y, ybl);
|
epsilon = ce0*k*sqrt(k)/min(y, ybl);
|
||||||
epsilon.correctBoundaryConditions();
|
epsilon.correctBoundaryConditions();
|
||||||
|
|
||||||
Info<< "Writing epsilon\n" << endl;
|
Info<< "Writing " << epsilon.name() << nl << endl;
|
||||||
epsilon.write();
|
epsilon.write();
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user