mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge remote branch 'OpenCFD/master' into olesenm
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -32,10 +32,10 @@ License
|
||||
|
||||
// set values for what is close to zero and what is considered to
|
||||
// be positive (and not just rounding noise)
|
||||
//! @cond localScope
|
||||
//! \cond localScope
|
||||
const Foam::scalar zeroish = Foam::SMALL;
|
||||
const Foam::scalar positive = Foam::SMALL * 1E3;
|
||||
//! @endcond
|
||||
//! \endcond
|
||||
|
||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -33,7 +33,7 @@ Description
|
||||
Default is to write space separated components.
|
||||
|
||||
Example:
|
||||
@verbatim
|
||||
\verbatim
|
||||
// Construct writer of xmgr type
|
||||
autoPtr<writer<scalar> > scalarFormatter(writer<scalar>::New("xmgr"));
|
||||
|
||||
@ -50,7 +50,7 @@ Description
|
||||
"U.component(0)", // name of values
|
||||
vals // values
|
||||
);
|
||||
@endverbatim
|
||||
\endverbatim
|
||||
|
||||
SourceFiles
|
||||
writer.C
|
||||
|
||||
@ -56,6 +56,7 @@ namespace Foam
|
||||
|
||||
|
||||
//- Private class for finding nearest
|
||||
// Comprising:
|
||||
// - global index
|
||||
// - sqr(distance)
|
||||
typedef Tuple2<scalar, label> nearInfo;
|
||||
|
||||
@ -29,17 +29,17 @@ Description
|
||||
|
||||
The geometry is written via the MeshedSurfaceProxy, the fields
|
||||
are written in a trivial ASCII format with ID and VALUE as
|
||||
so-called user data. These @c .usr files can be read into proSTAR
|
||||
so-called user data. These \c .usr files can be read into proSTAR
|
||||
with these types of commands. For element data:
|
||||
@verbatim
|
||||
\verbatim
|
||||
getuser FILENAME.usr cell scalar free
|
||||
getuser FILENAME.usr cell vector free
|
||||
@endverbatim
|
||||
\endverbatim
|
||||
and for vertex data:
|
||||
@verbatim
|
||||
\verbatim
|
||||
getuser FILENAME.usr vertex scalar free
|
||||
getuser FILENAME.usr vertex vector free
|
||||
@endverbatim
|
||||
\endverbatim
|
||||
|
||||
Note
|
||||
Only scalar and vector fields are supported directly.
|
||||
|
||||
Reference in New Issue
Block a user