the previous naming tan1, tan2, normal was non-intuitive and very confusing. It was not practical to maintain backward compatibility but all tutorials and example refineMeshDict files have been updated to provide examples of the change.
41 lines
883 B
C++
41 lines
883 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object refineMeshDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
set box;
|
|
|
|
coordinateSystem global;
|
|
|
|
globalCoeffs
|
|
{
|
|
e1 (1 0 0);
|
|
e2 (0 1 0);
|
|
}
|
|
|
|
directions
|
|
(
|
|
e1
|
|
);
|
|
|
|
useHexTopology true;
|
|
|
|
geometricCut false;
|
|
|
|
writeMesh false;
|
|
|
|
|
|
// ************************************************************************* //
|