Skip to content

Commit

Permalink
Merge pull request #8 from acuoci/ps9
Browse files Browse the repository at this point in the history
Added simulations for ps9
  • Loading branch information
edocipriano authored Dec 14, 2022
2 parents ed70db3 + 4ac1e0c commit c51488d
Show file tree
Hide file tree
Showing 52 changed files with 27,327 additions and 0 deletions.
52 changes: 52 additions & 0 deletions practicals/ps9/Goldschmidt/0/U.air
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 9
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format binary;
class volVectorField;
location "0";
object U.air;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 1 -1 0 0 0 0];

internalField uniform (0 0 0);

boundaryField
{
walls
{
type noSlip;
}

top
{
type pressureInletOutletVelocity;
phi phi.air;
inletValue uniform (0 0 0);
value uniform (0 0 0);
}

bottom
{
type interstitialInletVelocity;
inletVelocity uniform (0 0 1.875);
value uniform (0 0 1.875);
phi phi.air;
alpha alpha.air;
}

frontAndBack
{
type symmetry;
}
}


// ************************************************************************* //
46 changes: 46 additions & 0 deletions practicals/ps9/Goldschmidt/0/p
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 | Website: https://openfoam.org
\\ / A nd | Version: 9
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class volScalarField;
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -2 0 0 0 0];

internalField uniform 0;

boundaryField
{
walls
{
type fixedFluxPressure;
value $internalField;
}

bottom
{
type fixedFluxPressure;
value $internalField;
}

top
{
type fixedValue;
value $internalField;
}

frontAndBack
{
type symmetry;
}
}

// ************************************************************************* //
Loading

0 comments on commit c51488d

Please sign in to comment.