Merge remote branch 'OpenCFD/master' into olesenm

This commit is contained in:
Mark Olesen
2011-02-14 09:47:49 +01:00
311 changed files with 3789 additions and 10892 deletions

View File

@ -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 * * * * * * * * * * * //

View File

@ -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

View File

@ -56,6 +56,7 @@ namespace Foam
//- Private class for finding nearest
// Comprising:
// - global index
// - sqr(distance)
typedef Tuple2<scalar, label> nearInfo;

View File

@ -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.