copied from preCICE tutorials

This commit is contained in:
jakob.schratter 2026-01-26 16:14:46 +01:00
commit 3f1b1a6d0f
68 changed files with 156449 additions and 0 deletions

54
fluid-openfoam/0/p Normal file
View file

@ -0,0 +1,54 @@
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p;
}
dimensions [ 1 -1 -2 0 0 0 0 ];
internalField uniform 103500;
boundaryField
{
interface
{
type calculated;
value $internalField;
}
inlet
{
type calculated;
value $internalField;
}
outlet
{
type calculated;
value $internalField;
}
outerWall
{
type calculated;
value $internalField;
}
top
{
type calculated;
value $internalField;
}
bottom
{
type calculated;
value $internalField;
}
slip-bottom
{
type calculated;
value $internalField;
}
defaultFaces
{
type empty;
}
}