Mushy Layer
1.0
|
This document describes how to implement the initial conditions and boundary conditions.
The python script in /plotting/boundaryConditionsFigure.py
is designed to create a visualisation of the boundary conditions specified in an inputs file, which you may find useful.
There are two options for setting the initial data in a simulation.
Firstly, you may specify a previous data file from which the simulation will restart, via the input option main.restart_file
, e.g.
Note that the restart file must be a checkpoint file (as opposed to a plot file), and must have the same data structure as your simulation (i.e. the same number of potential levels of refinement).
The second option is to declare the initial conditions analytically within the code. This is all controlled by the function AMRLevelMushyLayer::initialData()
, which can be found in /srcSubcycle/AMRLevelMushyLayerInit.cpp
. For some types of problems (declared by parameters.problem_type
) there are specific initial conditions defined. For the standard problem type, parameters.problem_type=0
corresponding to mushy layer simulations, the initial data is defined in AMRLevelMushyLayer::initialDataMushyLayer()
where there are lots of possible variations but typically we just set the enthalpy and bulk concentration to their boundary values on the bottom boundary (i.e. the vertical direction, lower face). This is designed for simulations where ice is grown from a cold upper boundary, and hence the bottom boundary corresponds to the warm ocean.
You may overwrite the default initial conditions using the main.initData
input option. Currently there are just two options:
main.initData=0
: default, set H and C to their values at the bottom boundary (within AMRLevelMushyLayer::initialDataDefault()
) main.initData=1
: create a porous mushy hole in the center of the domain, for one of the benchmark problems (within AMRLevelMushyLayer::initialDataPorousHole()
)
Here is an example of how you would add a new initial condition that establishes a linear enthalpy gradient and constant bulk concentration across the domain:
AMRLevelMushyLayer::initialDataLinearGradient()
, e.g.AMRLevelMushyLayer.h
, i.e. AMRLevelMushyLayerInit.cpp
,Boundary conditions are defined in two ways. Firstly we define the type of boundary condition to apply to each side, then we define the value to use (where needed) at each side. For scalars, the simple options are:
0. Dirichlet
For velocity, there are lots of options, some of the most important being
0. Solid wall
See BCUtil/PhysBCUtil.h for a full list of possible options.
We set boundary conditions on the 'high' side of the domain in each dimension, then the 'low' side of the domain in each dimension e.g.
bc.scalarHi=1 0
scalar BCs are neumann on the right boundary, dirichlet on the top
bc.scalarLo=1 2
scalar BCs are neumann on the left boundary, inflow/outflow at the bottom
bc.velHi=6 0
bc.velLo=6 2
We must now specify the values of the various thermodynamic fields on each boundary. In older versions of the code, the only way to do this was to specify the enthalpy and bulk salinity, e.g.
From which the temperature, porosity, liquid salinity and solid salinity are computed using the phase diagram.
However, this is not always particularly convenient as it doesn't give precise control over the temperature at a boundary. If you instead want to fix other fields, this can be done directly e.g.
would set the temperature at the top boundary to be 0.5. Other relevant thermodynamic variables can similarly be controlled e.g.
A notable extra boundary condition available is designed to enforce the following condition:
where \theta
is the dimensionless temperature. The correct implementation of this BC can be confirmed using the test problem in /test/diffusiveGrowth/
.
To use this BC, first set the temperature to use BC type 9
on the appropriate face(s). E.g. to use this BC on the top face,
Then define the values of a, b, F, {ref} via:
Note that we have also defined values for these variables in the x-direction, but these are irrelevant and not used.
Time dependent BCs are possible. At the moment the only option implemented is a sinusoidally varying temperature. An example of this can be found in /examples/sinusoialcooling/
like
These BCs are implemented in the function PhysBCUtil::updateTimeDependentBCs()
, where should serve as a model for adding your own other time dependent BCs.
In 3D, you must specify three values as there are three dimensions. The vertical dimension becomes the final item in the list, i.e.
The latest version of the code will let you define BC types using text rather than numbers, which can make the inputs file read a little easier. This is handled by the function MushyLayerParams::parseBCs()
. Currently supported options are:
Scalars:
Velocity:
Example usage:
which is equivalent to
Note that in one particular line, you must use either all integers or all text to define the BCs.