mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: trim trailing space
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
#!/bin/bash
|
||||
#. /home/mattijs/OpenFOAM/OpenFOAM-plus.feature-localWorld/etc/bashrc
|
||||
. $WM_PROJECT_DIR/etc/bashrc
|
||||
#cd /home/mattijs/OpenFOAM/OpenFOAM-plus.feature-localWorld/applications/test/multiWorld/chtMultiRegionSimpleFoam
|
||||
chtMultiRegionSimpleFoam -case ./fluid -world fluid 2>&1 | tee run_fluid.log
|
||||
#!/bin/sh
|
||||
cd "${0%/*}" || exit # Run from this directory
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
chtMultiRegionSimpleFoam -case fluid -world fluid 2>&1 | tee run_fluid.log
|
||||
read dummy
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
#!/bin/bash
|
||||
. $WM_PROJECT_DIR/etc/bashrc
|
||||
#. /home/mattijs/OpenFOAM/OpenFOAM-plus.feature-localWorld/etc/bashrc
|
||||
#cd /home/mattijs/OpenFOAM/OpenFOAM-plus.feature-localWorld/applications/test/multiWorld/chtMultiRegionSimpleFoam
|
||||
chtMultiRegionSimpleFoam -case ./solid -world solid 2>&1 | tee run_solid.log
|
||||
#!/bin/sh
|
||||
cd "${0%/*}" || exit # Run from this directory
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
chtMultiRegionSimpleFoam -case solid -world solid 2>&1 | tee run_solid.log
|
||||
read dummy
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
@ -32,13 +32,14 @@ Description
|
||||
area-weighted average.
|
||||
|
||||
Example usage:
|
||||
|
||||
\verbatim
|
||||
{
|
||||
field T; // default is same as fvPatchField
|
||||
setAverage false;
|
||||
average 1.0; // only if setAverage=true
|
||||
interpolationScheme cellPoint; // default is cell
|
||||
}
|
||||
\endverbatim
|
||||
|
||||
\table
|
||||
Property | Description | Required | Default
|
||||
@ -64,7 +65,7 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declarations
|
||||
// Forward Declarations
|
||||
class mappedPatchBase;
|
||||
template<class> class interpolation;
|
||||
class mapDistribute;
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2011 |
|
||||
| \\ / O peration | Version: v2012 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
@ -53,7 +53,7 @@ functions
|
||||
fieldMinMax
|
||||
{
|
||||
type fieldMinMax;
|
||||
functionObjectLibs (fieldFunctionObjects);
|
||||
libs (fieldFunctionObjects);
|
||||
fields ( U p T);
|
||||
mode magnitude;
|
||||
writeControl timeStep;
|
||||
|
||||
Reference in New Issue
Block a user