Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
44 lines (38 sloc)
1.3 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*--------------------------------*- C++ -*----------------------------------*\ | |
| ========= | | | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | |
| \\ / O peration | Version: 2.3.0 | | |
| \\ / A nd | Web: www.OpenFOAM.org | | |
| \\/ M anipulation | | | |
\*---------------------------------------------------------------------------*/ | |
FoamFile | |
{ | |
version 2.0; | |
format ascii; | |
class volVectorField; | |
object U; | |
} | |
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | |
//For more info on dimensions refer to file entitled "P" | |
dimensions [0 1 -1 0 0 0 0]; | |
//Initial velocity field in 3 directions. | |
internalField uniform (0 0 0); | |
boundaryField | |
{ | |
movingWall | |
{ | |
type fixedValue; | |
//A velocity of 1 m/s in x direction | |
value uniform (1 0 0); | |
} | |
fixedWalls | |
{ | |
type fixedValue; | |
value uniform (0 0 0); | |
} | |
frontAndBack | |
{ | |
type empty; | |
} | |
} | |
// ************************************************************************* // |