New olaflow run processus, includeing paddle boundary condition
This commit is contained in:
parent
1506fd06a1
commit
02c8586672
12 changed files with 2671 additions and 20 deletions
|
@ -1,5 +1,4 @@
|
|||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.7.1 |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
|
@ -48,14 +47,14 @@ boundary
|
|||
(0 4 7 3)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
/*outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(1 5 6 2)
|
||||
);
|
||||
}
|
||||
}*/
|
||||
wall1
|
||||
{
|
||||
type wall;
|
||||
|
@ -70,6 +69,7 @@ boundary
|
|||
faces
|
||||
(
|
||||
(3 2 6 7)
|
||||
(1 5 6 2)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
|
|
@ -24,7 +24,7 @@ startTime 0;
|
|||
|
||||
stopAt endTime;
|
||||
|
||||
endTime 60;
|
||||
endTime 200;
|
||||
|
||||
deltaT 0.1;
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@ FoamFile
|
|||
defaultFieldValues
|
||||
(
|
||||
volScalarFieldValue alpha.water 0
|
||||
volVectorFieldValue U (0 0 0)
|
||||
volScalarFieldValue porosityIndex 0
|
||||
);
|
||||
|
||||
|
@ -32,6 +33,15 @@ regions
|
|||
volScalarFieldValue alpha.water 1
|
||||
);
|
||||
}
|
||||
boxToCell
|
||||
{
|
||||
box (-100 0 0) (-100 1 1);
|
||||
|
||||
fieldValues
|
||||
(
|
||||
volVectorFieldValue U (1 0 0)
|
||||
);
|
||||
}
|
||||
surfaceToCell
|
||||
{
|
||||
file "./constant/triSurface/poro.stl";
|
||||
|
|
Reference in a new issue