refineMesh: Rationalised and standardised the coordinate axes naming to e1, e2 and e3

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.
This commit is contained in:
Henry Weller
2021-06-15 16:08:55 +01:00
parent be9fb841a1
commit 926ba22b74
25 changed files with 175 additions and 175 deletions

View File

@ -21,17 +21,17 @@ coordinateSystem global;
globalCoeffs
{
tan1 (1 0 0);
tan2 (0 1 0);
e1 (1 0 0);
e2 (0 1 0);
}
patchLocalCoeffs
{
patch outside;
tan1 (1 0 0);
e1 (1 0 0);
}
directions ( tan1 );
directions (e1);
useHexTopology no;

View File

@ -21,17 +21,17 @@ coordinateSystem global;
globalCoeffs
{
tan1 (1 0 0);
tan2 (0 1 0);
e1 (1 0 0);
e2 (0 1 0);
}
patchLocalCoeffs
{
patch outside;
tan1 (1 0 0);
e1 (1 0 0);
}
directions (tan1 tan2);
directions (e1 e2);
useHexTopology no;

View File

@ -21,17 +21,17 @@ coordinateSystem global;
globalCoeffs
{
tan1 (1 0 0);
tan2 (0 1 0);
e1 (1 0 0);
e2 (0 1 0);
}
patchLocalCoeffs
{
patch outside;
tan1 (1 0 0);
e1 (1 0 0);
}
directions ( tan1 tan2 );
directions (e1 e2);
useHexTopology no;

View File

@ -21,17 +21,17 @@ coordinateSystem global;
globalCoeffs
{
tan1 (1 0 0);
tan2 (0 1 0);
e1 (1 0 0);
e2 (0 1 0);
}
patchLocalCoeffs
{
patch outside;
tan1 (1 0 0);
e1 (1 0 0);
}
directions ( tan1 tan2 );
directions (e1 e2);
useHexTopology no;

View File

@ -21,17 +21,17 @@ coordinateSystem global;
globalCoeffs
{
tan1 ( 1 0 0 );
tan2 ( 0 1 0 );
e1 (1 0 0);
e2 (0 1 0);
}
patchLocalCoeffs
{
patch outside;
tan1 ( 1 0 0 );
e1 (1 0 0);
}
directions ( tan1 tan2 );
directions (e1 e2);
useHexTopology no;

View File

@ -21,13 +21,13 @@ coordinateSystem global;
globalCoeffs
{
tan1 (1 0 0);
tan2 (0 1 0);
e1 (1 0 0);
e2 (0 1 0);
}
directions
(
tan1
e1
);
useHexTopology true;

View File

@ -21,13 +21,13 @@ coordinateSystem global;
globalCoeffs
{
tan1 (1 0 0);
tan2 (0 1 0);
e1 (1 0 0);
e2 (0 1 0);
}
directions
(
tan2
e2
);
useHexTopology true;