Skip to content
Snippets Groups Projects
Commit 8e82e7b8 authored by mattijs's avatar mattijs
Browse files

ENH: heatTransfer: allow free patch to be moved. See #1026.

parent 89342b6f
No related merge requests found
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.1";
object cellDisplacement;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 0 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
free
{
patchType overset;
type cellMotion;
value uniform (0 0 0);
}
walls
{
type cellMotion;
value uniform (0 0 0);
}
hole
{
type cellMotion;
value uniform (0 0 0);
}
frontAndBack
{
type empty;
}
left1
{
type cellMotion;
value uniform (0 0 0);
}
right1
{
type cellMotion;
value uniform (0 0 0);
}
}
// ************************************************************************* //
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment