SciFEM-Project_CoffeeMugSim.../fluid-openfoam/0/U
dino.celebic 4866b23e34 fix fluid
2026-01-27 18:30:30 +01:00

40 lines
632 B
Text

FoamFile
{
version 2.0;
format ascii;
class volVectorField;
object U;
}
dimensions [ 0 1 -1 0 0 0 0 ]; // 0 m^1 s^-1 0 0 0 0
internalField uniform ( 2 0 0 ); // x, y, z direction
boundaryField
{
interface
{
type noSlip;
}
inlet
{
type fixedValue;
value $internalField;
}
outlet
{
type zeroGradient;
}
top
{
type slip;
}
bottom
{
type slip;
}
slip-bottom
{
type noSlip;
}
}