mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Consistency: Changed exponent FORTRAN style 'E' to C style 'e'
This commit is contained in:
@ -55,7 +55,7 @@ using namespace Foam;
|
||||
|
||||
// Tolerance (as fraction of the bounding box). Needs to be fairly lax since
|
||||
// usually meshes get written with limited precision (6 digits)
|
||||
static const scalar defaultMergeTol = 1E-7;
|
||||
static const scalar defaultMergeTol = 1e-7;
|
||||
|
||||
|
||||
static void renumber
|
||||
@ -290,7 +290,7 @@ int main(int argc, char *argv[])
|
||||
"mergeTol",
|
||||
"scalar",
|
||||
"specify the merge distance relative to the bounding box size "
|
||||
"(default 1E-7)"
|
||||
"(default 1e-7)"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
|
||||
@ -60,7 +60,7 @@ Description
|
||||
|
||||
// Tolerance (as fraction of the bounding box). Needs to be fairly lax since
|
||||
// usually meshes get written with limited precision (6 digits)
|
||||
static const scalar defaultMergeTol = 1E-6;
|
||||
static const scalar defaultMergeTol = 1e-6;
|
||||
|
||||
|
||||
//// Read mesh if available. Otherwise create empty mesh with same non-proc
|
||||
@ -721,7 +721,7 @@ int main(int argc, char *argv[])
|
||||
"mergeTol",
|
||||
"scalar",
|
||||
"specify the merge distance relative to the bounding box size "
|
||||
"(default 1E-6)"
|
||||
"(default 1e-6)"
|
||||
);
|
||||
# include "setRootCase.H"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user