TUT: Lagrangian - added example showing moving injector

This commit is contained in:
Andrew Heather
2021-12-14 10:55:45 +00:00
committed by Andrew Heather
parent c754c1ccbf
commit f64e2864f7
19 changed files with 885 additions and 0 deletions

View File

@ -0,0 +1,31 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2106 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 293.0;
boundaryField
{
walls
{
type zeroGradient;
}
}
// ************************************************************************* //