-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
e9e516a
commit 813b876
Showing
7 changed files
with
182 additions
and
16 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | Website: https://openfoam.org | ||
\\ / A nd | Version: 9 | ||
\\/ M anipulation | | ||
\*---------------------------------------------------------------------------*/ | ||
FoamFile | ||
{ | ||
format ascii; | ||
class volScalarField; | ||
location "0"; | ||
object alpha; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [0 0 0 0 0 0 0]; | ||
|
||
internalField uniform 0; | ||
|
||
boundaryField | ||
{ | ||
//- Set patchGroups for constraint patches | ||
#includeEtc "caseDicts/setConstraintTypes" | ||
|
||
back | ||
{ | ||
type empty; | ||
} | ||
front | ||
{ | ||
type empty; | ||
} | ||
left | ||
{ | ||
type zeroGradient; | ||
} | ||
bottom | ||
{ | ||
type zeroGradient; | ||
} | ||
right | ||
{ | ||
type zeroGradient; | ||
} | ||
top | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
cylinder1 | ||
{ | ||
type zeroGradient; | ||
} | ||
cylinder2 | ||
{ | ||
type zeroGradient; | ||
} | ||
cylinder3 | ||
{ | ||
type zeroGradient; | ||
} | ||
cylinder4 | ||
{ | ||
type zeroGradient; | ||
} | ||
cylinder5 | ||
{ | ||
type zeroGradient; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
| ========= | | | ||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | ||
| \\ / O peration | Version: | | ||
| \\ / A nd | Web: www.OpenFOAM.org | | ||
| \\/ M anipulation | | | ||
\*---------------------------------------------------------------------------*/ | ||
FoamFile | ||
{ | ||
version 2.0; | ||
format ascii; | ||
class dictionary; | ||
location "system"; | ||
object setFieldsDict; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
defaultFieldValues | ||
( | ||
volScalarFieldValue alpha 0 | ||
); | ||
|
||
regions | ||
( | ||
boxToCell | ||
{ | ||
box (-1 -1 -1) (1 1 1); | ||
fieldValues | ||
( | ||
volScalarFieldValue alpha 1 | ||
); | ||
} | ||
|
||
// sphereToCell | ||
// { | ||
// centre (0 0 0); | ||
// radius 2.5; | ||
// fieldValues | ||
// ( | ||
// volScalarFieldValue alpha.phase1 0 | ||
// ); | ||
// } | ||
); | ||
|
||
|
||
// ************************************************************************* // |