\documentclass{article} % Use the Cactus ThornGuide style file % (Automatically used from Cactus distribution, if you have a % thorn without the Cactus Flesh download this from the Cactus % homepage at www.cactuscode.org) \usepackage{../../../../doc/latex/cactus} \begin{document} \title{Boundary Conditions} \author{Miguel Alcubierre \\ Gabrielle Allen \\ Gerd Lanfermann \\ David Rideout} \date{$ $Date$ $} \maketitle % Do not delete next line % START CACTUS THORNGUIDE \begin{abstract} Provides a generic interface to boundary conditions, and provides a set of standard boundary conditions for one, two, and three dimensional grid variables. \end{abstract} \section{Introduction} This thorn provides a generic method for registering routines to perform boundary conditions, and selecting variables to have these boundary conditions applied to them. In addition, it provides abstraction which allows all considerations of symmetry to be separated from those of physical boundary conditions. The general idea is that codes which use boundary conditions, be they physical or symmetry conditions, need not know anything about the thorns which provide them. This thorn also contains some standard boundary conditions, most of which can be used with any spatial dimension and data type. \subsection{Local and non-local boundary conditions} Boundary conditions can be \emph{local}, meaning that the boundary point can be updated based on data in its immediate vicinity, or \emph{non-local}, meaning that the new value on the boundary depends on data from a remote region of the computational domain (for a parallel simulation this data could for example be physically located on several different processors). An example of the latter is a ``rotating'' symmetry condition, which arises e.g.~when one uses a quadrant to simulate a physical domain which possesses a rotational symmetry. \subsection{Symmetry and physical boundary conditions} \emph{Symmetry} boundary conditions are those that arise by viewing the computational domain as a subregion of some larger domain which possesses symmetries. These symmetries allow a simulation of the subregion to act as an effective simulation of the larger encompassing domain, because the latter can be inferred from the former via the symmetry. For example, one can often simulate a rotating star by `slicing' the space in half through the equatorial plane, simulating only one half, and placing a reflection boundary condition at this plane. The symmetry can be regarded as a property of the underlying computational grid upon which the simulation takes place. It is often possible to describe the symmetry of a physical problem in terms of multiple `simpler' symmetries. Going back to the rotating star example, we can note that there is also a rotational symmetry about the axis of the star. Thus it is sufficient to simulate only the upper half of a $\phi=\mbox{const}$ plane of the star, since rotational symmetry will recover half of the star from the single plane, and the reflection symmetry can recover the other half of the star. To do this we use two symmetry boundary conditions, one for the rotational symmetry and one for the reflection symmetry. At the edges and corner grid points there will be two symmetry boundary conditions active, which illustrates a general point about symmetry boundary conditions, namely that there can be any number of them active at any given grid point. In addition symmetry boundary conditions are often non-local, for example a periodic boundary condition which applies in simulating plasma in a tokamak. \emph{Physical} boundary conditions are motivated by the physics of the quantity that the grid variable represents, such as one which allows outgoing waves of a scalar field to propagate off the grid, but does not allow ingoing waves or reflections. Usually the same physical boundary condition is applied to all external boundaries of the computational domain, however this is not always the case. Currently thorn \texttt{Boundary} allows a separate boundary condition to be applied to each face of the domain, however this is only implemented at the moment using the older deprecated interface. Face specific calls will be available using the current interface shortly. It is also possible that one will want to use different physical boundary conditions at different regions of a face, and support for this can be added if necessary. Usually physical boundary conditions are local. A non-local physical boundary condition may arise e.g.~from a need to solve an elliptic equation at the boundary. As opposed to symmetry boundary conditions, it only makes sense to have a single physical boundary condition active at a given grid point.\footnote{It is possible that one may wish to modify the value of the field at the boundary, after a physical boundary condition has already been applied. For example, one may wish to add a small amount of noise at the boundary to test code stability. This added `term' is not a physical boundary condition in itself, however, and this cannot be registered as such. To implement such a scheme one would treat the noise in a manner similar to symmetry boundary conditions, scheduling a routine during \texttt{BoundaryConditions} (see below), after \texttt{Boundary\_ApplyPhysicalBCs}, which gets the list of selected variables and adds noise to their boundaries as desired.} To summarize, a `physics' thorn, such as a spacetime evolution thorn, knows only about physical boundary conditions. Symmetry boundary conditions are aspects of the grid and are managed by other thorns. \section{The generic boundary interface} The implementation \texttt{Boundary} provides a number of aliased functions%\footnote{See appendix \ref{apx:fn_aliasing} for some notes %on using aliased functions.} , which allow application thorns to register routines which provide a particular physical boundary condition, and also to select variables or groups of variables to have boundary conditions applied to whenever the \texttt{ApplyBCs} schedule group is scheduled (see section \ref{Boundary/sec:schedule_groups}). In addition, an aliased function is provided which returns a list of grid variables selected for a boundary condition (see appendix \ref{Boundary/apx:symmetry}). \subsection{Boundary condition registration} \label{Boundary/sec:bc_registration} To register a routine to provide some physical boundary condition, use \begin{verbatim} Boundary_RegisterPhysicalBC(CCTK_POINTER cctkGH, phys_bc_fn_ptr function_pointer, CCTK_STRING bc_name) \end{verbatim} where \begin{tabbing} long argument name\= description\=\kill \texttt{cctkGH} \> pointer to the grid hierarchy\\ \texttt{function\_pointer} \> pointer to the function providing the boundary condition\\ \texttt{bc\_name} \> name of boundary condition \end{tabbing} The function pointer takes arguments \begin{verbatim} (CCTK_POINTER cctkGH, CCTK_INT num_vars, CCTK_INT *var_indices, CCTK_INT *faces, CCTK_INT *widths, CCTK_INT *table_handles) \end{verbatim} (this defines the type \texttt{phys\_bc\_fn\_ptr}, above) where \begin{tabbing} long argument name\= description\=\kill \texttt{cctkGH} \> pointer to the grid hierarchy\\ \texttt{num\_vars} \> number of entries passed in the following three arrays\\ \texttt{var\_indices} \> array of \texttt{num\_vars} variable indices selected for this boundary condition\\ \texttt{faces} \> array of \texttt{num\_vars} faces specifications (see section \ref{Boundary/sec:faces})\\ \texttt{widths} \> array of \texttt{num\_vars} boundary widths (see below)\\ \texttt{table\_handles} \> array of \texttt{num\_vars} table handles%, which hold extra arguments for each application of the boundary condition to a grid variable \end{tabbing} The table handles hold extra arguments for each application of the boundary condition. The four arrays are sorted first on table handle, and then on variable index. This way variables which have precisely the same boundary condition are grouped together, and within this grouping variables are sorted by index, so that variable groups are stored together. In many cases this sorting will allow a more efficient implementation of the boundary condition. (At the moment it is not clear how face information should be considered in the sorting, so it is not.) A null pointer can be passed for \texttt{function\_pointer}, in which case no routine is executed when \texttt{Boundary\_ApplyPhysicalBCs} is called (see section \ref{Boundary/sec:schedule_groups}). \subsection{Boundary condition selection} To select a grid variable to have a boundary condition applied to it, use one of the following aliased functions: \begin{verbatim} Boundary_SelectVarForBC(CCTK_POINTER cctkGH, CCTK_INT faces, CCTK_INT boundary_width, CCTK_INT table_handle, CCTK_STRING var_name, CCTK_STRING bc_name) Boundary_SelectVarForBCI(CCTK_POINTER cctkGH, CCTK_INT faces, CCTK_INT boundary_width, CCTK_INT table_handle, CCTK_INT var_index, CCTK_STRING bc_name) Boundary_SelectGroupForBC(CCTK_POINTER cctkGH, CCTK_INT faces, CCTK_INT boundary_width, CCTK_INT table_handle, CCTK_STRING group_name, CCTK_STRING bc_name) Boundary_SelectGroupForBCI(CCTK_POINTER cctkGH, CCTK_INT faces, CCTK_INT boundary_width, CCTK_INT table_handle, CCTK_INT group_index, CCTK_STRING bc_name) \end{verbatim} where \begin{tabbing} long argument name\= description\=\kill \texttt{cctkGH} \> pointer to the grid hierarchy\\ \texttt{faces} \> set of faces to which to apply the boundary condition\\ \texttt{boundary\_width} \> width (in grid points) of the boundaries\\ \texttt{table\_handle} \> handle for table which holds extra arguments for the boundary condition\\ \texttt{var\_name} \> name of the grid variable\\ \texttt{bc\_name} \> name of the boundary condition\\ \texttt{var\_index} \> index of grid variable\\ \texttt{group\_name} \> name of group of grid variables\\ \texttt{group\_index} \> index of group of grid variables \end{tabbing} Each of these functions returns 0 for success, or a negative error code if something went wrong. \verb|Boundary_SelectVarForBC()| and \verb|Boundary_SelectVarForBCI()| select a single grid variable for a boundary condition, using either the variable name or index respectively. \verb|Boundary_SelectGroupForBC()| and \verb|Boundary_SelectGroupForBCI()| select an entire variable group, using either its name or index. Each of these functions takes a faces specification, a boundary width, and a table handle as additional arguments. The faces specification is a single integer which identifies a set of faces to which to apply the boundary condition. See section \ref{Boundary/sec:faces} for details. The boundary width is the thickness, in grid points, of the boundaries. The table handle identifies a table which holds extra arguments for the particular boundary condition that is requested. For example, if a negative value is passed for the boundary width, then the boundary condition will look in this table for a $2d$-element integer array, which holds the width of each face of the boundary (for a $d$ dimensional grid variable). (The first element of the array holds the width of the `-x' face, the second the `+x' face, the third the `-y' face, etc.) In some cases the table handle is required, so the boundary condition, when it is called within the \texttt{BoundaryConditions} schedule group (see section \ref{Boundary/sec:schedule_groups}), will return an error code. However, in most cases it is optional. If one uses an invalid table handle here (such as -1), commonly used default values will be assumed for all arguments (besides the explicit faces specification and boundary widths). Note that you, the user, will be creating the table, so you may choose whatever options (such as case sensitivity) you like. The case of the keys for which the boundary conditions implemented in this thorn search are as given in the documentation, which is currently all capitals. To be safe you may choose to create case-insensitive tables, however case sensitive tables are slightly faster. The name of the boundary condition must match that with which the boundary condition providing function was registered. These names are case insensitive. See section \ref{Boundary/sec:provided_bcs} for a list of boundary conditions provided by thorn \texttt{Boundary}. \subsection{Schedule groups} \label{Boundary/sec:schedule_groups} Implementation \texttt{Boundary} creates two schedule groups \begin{verbatim} ApplyBCs \end{verbatim} and \begin{verbatim} BoundaryConditions in ApplyBCs BEFORE Boundary_ClearSelection \end{verbatim} and schedules two functions \texttt{Boundary\_ApplyPhysicalBCs} in \texttt{BoundaryConditions} and \texttt{Boundary\_ClearSelection} in \texttt{ApplyBCs}. \texttt{Boundary\_ApplyPhysicalBCs} goes through the list of all selected grid variables, and calls the registered function corresponding to the requested boundary condition on each. \texttt{Boundary\_ClearSelection} clears the list of selected grid variables. A thorn which wishes to have boundary conditions applied simply schedules \texttt{ApplyBCs} at the appropriate point. Please schedule it as e.g.~\verb|_ApplyBCs|, to make each instance of it unique. \texttt{Boundary\_ClearSelection} ensures that each boundary condition gets executed exactly once for each selected grid variable. \subsection{Faces} \label{Boundary/sec:faces} The computational domain is assumed to be in the shape of a $n$-dimensional `rectangle', which has $2n$ $n-1$ dimensional faces. (Usually $n$ is three.) Each of these $2n$ faces is assigned a specific bit in a word, so that arbitrary subsets can be compactly expressed as a bitwise-or of these individual bits. Macros defining this mapping of subsets to bits will be provided. For the moment there is only \texttt{CCTK\_ALL\_FACES}, which corresponds to the set of all faces of the domain. If you need face specific calls immediately, please use the old interface for now. The mapping of bits to faces will likely be the same as that used for the (optional) \texttt{BOUNDARY\_WIDTH} array. Precisely, the rule is as follows. For a $d$ dimensional grid variable, label the elements or bits by integers $i$ from $0$ to $2d-1$. Element or bit $i$ gets mapped to face $(-)^{i+1}e_{\lfloor i\rfloor}$, where ${}_{\lfloor \rfloor}$ designates the `floor' function (greatest integer less than its argument), and $e_j$ represents the `$j$-direction' on the grid. \section{Provided boundary conditions} \label{Boundary/sec:provided_bcs} Thorn \texttt{Boundary} also provides seven standard boundary conditions, which can be applied to one, two, or three dimensional grid variables. The boundary conditions available are \begin{itemize} \item Scalar \item Flat \item Radiation \item Copy \item Robin \item Static \item None \end{itemize} Registration for each of these can be switched off by setting any of the following parameters to ``no'' (each defaults to ``yes'') \begin{itemize} \item \texttt{register\_scalar} \item \texttt{register\_flat} \item \texttt{register\_radiation} \item \texttt{register\_copy} \item \texttt{register\_robin} \item \texttt{register\_static} \item \texttt{register\_none} \end{itemize} This is useful if you have your own implementation of one of these boundary conditions, which you would like to use instead. \subsection{General Comments} %All the boundary conditions here optionally take a stencil %size as an argument. The stencil size is used to determine how many %points at the boundary should be updated with a boundary condition. %For example, a stencil size of two in each direction means that the %points at the boundary, as well as the points one in from the boundary %will be set by the boundary condition. These boundary points are part %of the total number of grid points that you have specified in the %beginning of the run. The stencil size is expressed by an array of %$n$ integers for an $n$-dimensional grid variable. In the future this %will be increased to $2n$ integers, so that one can have a different %stencil size on the `plus' and `minus' faces. Note that the number of boundary zones, as expressed in the \texttt{boundary\_width} argument or the \texttt{BOUNDARY\_WIDTH} array, is taken from the total number of grid points presented by Cactus through \texttt{cctk\_lsh}, etc. %In this sense they do not %somehow `lie outside the grid', as `external ghostzones'. For the moment, these boundary routines may not work properly on grid arrays. Please contact\\ \texttt{cactusmaint@cactuscode.org} if you run into trouble. \subsubsection{Old interface} The old, direct function call interface to these boundary conditions is still available, and is documented here, though it is deprecated and will be removed at some point in the future. It is provided for a number of reasons, the most significant of which is to provide compatibility with existing codes. Another reason why you might choose to use the old interface is if you have difficulty doing your iterations with the Cactus scheduler, and thus have trouble scheduling the \texttt{ApplyBCs} schedule group everywhere you need boundary conditions applied. A third reason may be that you need face specific calls immediately. You should not run into any special difficulty mixing the old and new interface, just be aware of the order in which boundary conditions, and code that depends upon them, are executed. Note that if you choose to use the old interface for some boundary conditions, then the symmetry conditions will not know to apply themselves to those grid variables for which you use the old interface. To get around this difficulty, simply select these grid variables for the ``None'' boundary condition, and be sure that \texttt{ApplyBCs} is scheduled in an appropriate place. All routines can be called by \begin{itemize} \item{\em variable name}: ({\tt : }) Suffix: {\tt VN}; apply the boundary condition to the variable with the specified name. \item{\em group name}: ({\tt :}) Suffix: {\tt GN}; apply the boundary condition to all variables in the group. \item{\em variable index}: Suffix: {\tt VI}; apply the boundary condition to the variable with the specified variable index. \item{\em group index}: Suffix: {\tt GI} apply the boundary condition to all variables in the group with the specified group index. \end{itemize} For the boundary conditions in individual coordinate directions, use\\ \begin{tabular}{ll} {\tt dir=-1} & to apply at $x=x_{min}$ \\ {\tt dir= 1} & to apply at $x=x_{max}$ \\ {\tt dir=-2} & to apply at $y=y_{min}$ \\ {\tt dir= 2} & to apply at $y=y_{max}$ \\ {\tt dir=-3} & to apply at $z=z_{min}$ \\ {\tt dir= 3} & to apply at $z=z_{max}$ \\ \end{tabular} Prototypes for each of the functions described for the old interface are included in the header file \texttt{Boundary.h}. Please add \begin{verbatim} uses include header: Boundary.h \end{verbatim} to your thorn's \texttt{interface.ccl} to use this header file in your C/C++ source files. \section{Scalar Boundary Condition} A scalar boundary condition means that the value of the given field or fields at the boundary is set to a given scalar value, for example zero. The scalar boundary condition is registered under the name ``Scalar''. \subsection{Additional arguments} A table passed to the scalar boundary condition may contain the following additional arguments:\\[1mm] \begin{tabular}{|l|l|l|l|} \hline \textbf{key} & \textbf{variable type} & \textbf{description} & \textbf{default value}\\ \hline SCALAR & CCTK\_REAL & the scalar value & 0.0\\ BOUNDARY\_WIDTH & CCTK\_INT array & stencil width for each face & n/a\\ \hline \end{tabular} \subsection{Old interface} \subsubsection*{Calling from C:} {\bf All Coordinate Directions:} \begin{verbatim} int ierr = BndScalarVN(cGH *cctkGH, int *stencil_size, CCTK_REAL var0, char *variable_name) int ierr = BndScalarGN(cGH *cctkGH, int *stencil_size, CCTK_REAL var0, char *group_name) int ierr = BndScalarVI(cGH *cctkGH, int *stencil_size, CCTK_REAL var0, int group_index) int ierr = BndScalarGI(cGH *cctkGH, int *stencil_size, CCTK_REAL var0, int variable_index) \end{verbatim} \noindent {\bf Individual Coordinate Directions:} \begin{verbatim} int ierr = BndScalarDirVN(cGH *cctkGH, int stencil, int dir, CCTK_REAL var0, char *variable_name) int ierr = BndScalarDirGN(cGH *cctkGH, int stencil, int dir, CCTK_REAL var0, char *group_name) int ierr = BndScalarDirVI(cGH *cctkGH, int stencil, int dir, CCTK_REAL var0, int group_index) int ierr = BndScalarDirGI(cGH *cctkGH, int stencil, int dir, CCTK_REAL var0, int variable_index) \end{verbatim} \subsubsection*{Calling from Fortran:} {\bf All Coordinate Directions:} \begin{verbatim} call BndScalarVN(ierr, cctkGH, stencil_size, var0, variable_name) call BndScalarGN(ierr, cctkGH, stencil_size, var0, group_name) call BndScalarVI(ierr, cctkGH, stencil_size, var0, variable_index) call BndScalarGI(ierr, cctkGH, stencil_size, var0, group_index) \end{verbatim} \noindent {\bf Individual Coordinate Directions:} \begin{verbatim} call BndScalarDirVN(ierr, cctkGH, stencil, dir, var0, variable_name) call BndScalarDirGN(ierr, cctkGH, stencil, dir, var0, group_name) call BndScalarDirVI(ierr, cctkGH, stencil, dir, var0, variable_index) call BndScalarDirGI(ierr, cctkGH, stencil, dir, var0, group_index) \end{verbatim} where {\tt \begin{tabbing} character*(*) \= variable\_name\=\kill integer \> ierr \\ CCTK\_POINTER \> cctkGH\\ integer \> dir\\ integer \> stencil\\ integer \> stencil\_size(dim)\\ CCTK\_REAL \> var0 \\ character*(*) \> variable\_name\\ character*(*) \> group\_name\\ integer \> variable\_index\\ integer \> group\_index \end{tabbing} } \subsubsection*{Arguments} \begin{tabbing} long argument nam\= description\=\kill \texttt{ierr} \> Return value, negative value indicates the boundary condition was not successfully applied\\ {\tt cctkGH} \> Grid hierarchy pointer\\ {\tt var0} \> Scalar value to apply (For a complex grid function, this is the real part, \\ \> the imaginary part is set to zero.)\\ {\tt dir} \> Coordinate direction in which to apply boundary condition\\ {\tt stencil\_size} \> Array with dimension of the grid function, containing the stencil width\\ {\tt variable\_name} \> Name of the variable\\ {\tt group\_name} \> Name of the group\\ {\tt variable\_index} \> Variable index\\ {\tt group\_index} \> Group index \end{tabbing} \section{Flat Boundary Condition} A flat boundary condition means that the value of the given field or fields at the boundary is copied from the value one grid point in, in any direction. For example, for a stencil width of one, the boundary value of phi {\tt phi(nx,j,k)}, on the positive x-boundary will be copied from {\tt phi(nx-1,j,k)}. The flat boundary condition is registered under the name ``Flat''. \subsection{Additional arguments} A table passed to the flat boundary condition may contain the following additional arguments:\\[1mm] \begin{tabular}{|l|l|l|l|} \hline \textbf{key} & \textbf{variable type} & \textbf{description} & \textbf{default value}\\ \hline BOUNDARY\_WIDTH & CCTK\_INT array & stencil width for each face & n/a\\ \hline \end{tabular} \subsection{Old interface} \subsubsection*{Calling from C:} {\bf All Coordinate Directions:} \begin{verbatim} int ierr = BndFlatVN(cGH *cctkGH, int *stencil_size, char *variable_name) int ierr = BndFlatGN(cGH *cctkGH, int *stencil_size, char *group_name) int ierr = BndFlatVI(cGH *cctkGH, int *stencil_size, int variable_index) int ierr = BndFlatGI(cGH *cctkGH, int *stencil_size, int group_index) \end{verbatim} \noindent {\bf Individual Coordinate Directions:} \begin{verbatim} int ierr = BndFlatDirVN(cGH *cctkGH, int stencil, int dir, char *variable_name) int ierr = BndFlatDirGN(cGH *cctkGH, int stencil, int dir, char *group_name) int ierr = BndFlatDirVI(cGH *cctkGH, int stencil, int dir, int variable_index) int ierr = BndFlatDirGI(cGH *cctkGH, int stencil, int dir, int group_index) \end{verbatim} \subsubsection*{Calling from Fortran:} {\bf All Coordinate Directions:} \begin{verbatim} call BndFlatVN(ierr, cctkGH, stencil_array, variable_name) call BndFlatGN(ierr, cctkGH, stencil_array, group_name) call BndFlatVI(ierr, cctkGH, stencil_array, variable_index) call BndFlatGI(ierr, cctkGH, stencil_array, group_index) \end{verbatim} \noindent {\bf Individual Coordinate Directions:} \begin{verbatim} call BndFlatDirVN(ierr, cctkGH, stencil, dir, variable_name) call BndFlatDirGN(ierr, cctkGH, stencil, dir, group_name) call BndFlatDirVI(ierr, cctkGH, stencil, dir, variable_index) call BndFlatDirGI(ierr, cctkGH, stencil, dir, group_index) \end{verbatim} where {\tt \begin{tabbing} character*(*) \= variable\_name\=\kill integer \> ierr \\ CCTK\_POINTER \> cctkGH\\ integer \> dir\\ integer \> stencil\\ integer \> stencil\_array(dim)\\ character*(*) \> variable\_name\\ character*(*) \> group\_name\\ integer \> variable\_index\\ integer \> group\_index \end{tabbing} } \subsubsection*{Arguments} \begin{tabbing} long argument nam\= description\=\kill {\tt ierr} \> Return value, negative value indicates the boundary condition was not successfully applied\\ {\tt cctkGH} \> Grid hierarchy pointer\\ {\tt dir} \> Coordinate direction in which to apply boundary condition\\ {\tt stencil\_size} \> Array with dimension of the grid function, containing the stencil width\\ {\tt variable\_name} \> Name of the variable\\ {\tt group\_name} \> Name of the group\\ {\tt variable\_index} \> Variable index\\ {\tt group\_index} \> Group index\\ \end{tabbing} \section{Radiation Boundary Condition} This is a two level scheme. Grid functions are given for the current time level (to which the BC is applied) as well as grid functions from a past timelevel which are needed for constructing the boundary condition. The grid function of the past time level needs to have the same geometry. Currently radiative boundary conditions can only be applied with a stencil width of one in each direction. The radiative boundary condition that is implemented is \begin{equation} \label{Boundary/eq:eqrad} f = f_0 + \frac{u(r-vt)}{r}+\frac{h(r+vt)}{r} \end{equation} That is, outgoing radial waves with a $1/r$ fall off, and the correct asymptotic value $f_0$ are assumed, including the possibility of incoming waves (these incoming waves should be modeled somehow). Condition~\ref{Boundary/eq:eqrad} above leads to the differential equation: \begin{equation} \frac{x^i}{r}\frac{\partial f}{\partial t} + v \frac{\partial f}{\partial x^i} +\frac{v x^i}{r^2} (f-f_0) = H \frac{v x^i}{r^2} \end{equation} where $x^i$ is the normal direction to the given boundaries, and $H = 2 dh(s)/ds$. At a given boundary only the derivatives in the normal direction are considered. Notice that $u(r-vt)$ has disappeared, but we still do not know the value of $H$. To get $H$ we do the following: The expression is evaluated one point in from the boundary and solved for $H$ there. Now we need a way of extrapolating $H$ to the boundary. For this, assume that $H$ falls off as a power law: \begin{equation} H = \frac{k}{r^n} \qquad \mbox{which gives} \qquad d_i H = - n \frac{H}{r} \end{equation} The value of $n$ is defined by the parameter {\tt radpower}. If this parameter is negative, $H$ is forced to be zero (this corresponds to pure outgoing waves and is the default). The observed behavior is the following: Using $H=0$ is very stable, but has a very bad initial transient. Taking $n$ to be 0 or positive improves the initial behavior considerably, but introduces a drift that can kill an evolution at very late times. Empirically, the best value found so far is $n=2$, for which the initial behavior is very nice, and the late time drift is quite small. Another problem with this condition is that it does not use the physical characteristic speed, but rather it assumes a wave speed of $v$, so the boundaries should be out in the region where the characteristic speed is constant. Notice that this speed does not have to be 1. The radiation boundary condition is registered under the name ``Radiation''. \subsection{Additional arguments} A table passed to the radiative boundary condition may contain the following additional arguments:\\[1mm] \begin{tabular}{|l|l|l|l|} \hline \textbf{key} & \textbf{variable type} & \textbf{description} & \textbf{default value}\\ \hline LIMIT & CCTK\_REAL & $f_0$ & 0.0\\ PREVIOUS\_TIME\_LEVEL & CCTK\_INT or CCTK\_STRING & GV which holds the & Cactus previous time level\\ && previous time level&\\ SPEED & CCTK\_REAL & wave speed $v$& 1.0\\ BOUNDARY\_WIDTH & CCTK\_INT array & stencil width for each face & n/a\\ \hline \end{tabular} \\[1mm] The default behavior is to use the Cactus previous time level, as defined in the \texttt{interface.ccl} file, for the grid variable requested for the radiative boundary condition. The ``PREVIOUS\_TIME\_LEVEL'' key is provided for backward compatibility only, and will be deprecated in the future. The corresponding value may be either a \texttt{CCTK\_INT}, which will be interpreted as the index of a grid variable holding the previous time level, or a \texttt{CCTK\_STRING}, interpreted as holding the name. Note that this will not work when selecting an entire variable group (with more than one member) with one call to \texttt{Boundary\_SelectGroupForBC*}, as each member will have a separate previous time level, and thus require a separate table. Please make your life easier by using Cactus time levels\ldots \subsection{Old interface} \subsubsection*{Calling from C:} {\bf All Coordinate Directions:} \begin{verbatim} int ierr = BndRadiativeVN(cGH *cctkGH, int *stencil_size, CCTK_REAL limit, CCTK_REAL speed, char *variable_name, char *variable_name_past) int ierr = BndRadiativeGN(cGH *cctkGH, int *stencil_size, CCTK_REAL limit, CCTK_REAL speed, char *group_name, char *group_name_past) int ierr = BndRadiativeVI(cGH *cctkGH, int *stencil_size, CCTK_REAL limit, CCTK_REAL speed, int variable_index, int variable_index_past) int ierr = BndRadiativeGI(cGH *cctkGH, int *stencil_size, CCTK_REAL limit, CCTK_REAL speed, int group_index, int group_index_past) \end{verbatim} \noindent {\bf Individual Coordinate Directions:} \begin{verbatim} int ierr = BndRadiativeDirVN(cGH *cctkGH, int stencil, int dir, CCTK_REAL limit, CCTK_REAL speed, char *variable_name, char *variable_name_past) int ierr = BndRadiativeDirGN(cGH *cctkGH, int *stencil, int dir, CCTK_REAL limit, CCTK_REAL speed, char *group_name, char *group_name_past) int ierr = BndRadiativeDirVI(cGH *cctkGH, int *stencil, int dir, CCTK_REAL limit, CCTK_REAL speed, int variable_index, int variable_index_past) int ierr = BndRadiativeDirGI(cGH *cctkGH, int *stencil, int dir, CCTK_REAL limit, CCTK_REAL speed, int group_index, int group_index_past) \end{verbatim} \subsubsection*{Calling from Fortran:} {\bf All Coordinate Directions:} \begin{verbatim} call BndRadiativeVN(ierr, cctkGH, stencil_size, speed, limit, variable_name, variable_name_past) call BndRadiativeGN(ierr, cctkGH, stencil_size, speed, limit, group_name, group_name_past) call BndRadiativeVI(ierr, cctkGH, stencil_size, speed, limit, variable_index, variable_index_past) call BndRadiativeGI(ierr, cctkGH, stencil_size, speed, limit, group_index, group_index_past) \end{verbatim} \noindent {\bf Individual Coordinate Directions:} \begin{verbatim} call BndRadiativeDirVN(ierr, cctkGH, stencil, dir, speed, limit, variable_name, variable_name_past) call BndRadiativeDirGN(ierr, cctkGH, stencil, dir, speed, limit, group_name, group_name_past) call BndRadiativeDirVI(ierr, cctkGH, stencil, dir, speed, limit, variable_index, variable_index_past) call BndRadiativeDirGI(ierr, cctkGH, stencil, dir, speed, limit, group_index, group_index_past) \end{verbatim} where {\tt \begin{tabbing} character*(*) \= variable\_name\=\kill integer \> ierr \\ CCTK\_POINTER \> cctkGH\\ integer \> dir\\ integer \> stencil\\ integer \> stencil\_array(dim)\\ character*(*) \> variable\_name\\ character*(*) \> group\_name\\ integer \> variable\_index\\ integer \> group\_index\\ CCTK\_REAL\>speed\\ CCTK\_REAL\>limit\\ \end{tabbing} } \subsubsection*{Arguments} \begin{tabbing} r long argument name \= description\=\kill {\tt ierr} \> return value, operation failed when return value {\em negative}\\ {\tt cctkGH} \> grid hierarchy pointer\\ {\tt stencil\_size(dim)} \> array of size {\tt dim} (dimension of the grid function).\\ \> To how many points from the outer boundary to apply the boundary condition. \\ {\tt speed} \> wave speed used for boundary condition ($v$)\\ {\tt limit} \> asymptotic value of function at infinity ($f_0$)\\ {\tt variable\_name} \> the name of the grid function to which the boundary condition will be applied\\ {\tt variable\_name\_past} \> The name of the grid function containing the values on the past time level,\\ \> needed to calculate the boundary condition.\\ {\tt group\_name} \> the name of the group to which the boundary condition will be applied\\ {\tt group\_name\_past} \> is the name of the group containing the grid functions on the past time level,\\ \> needed to calculate the boundary condition.\\ {\tt variable\_index} \> the index of the grid function to which the boundary condition will be applied\\ {\tt variable\_index\_past} \> the index of the grid function containing the values on the past time level,\\ \> needed to calculate the boundary condition.\\ {\tt group\_index} \> the index of the group to which the boundary condition will be applied\\ {\tt group\_index\_past} \> the index of the group containing the values on the past time level,\\ \> needed to calculate the boundary condition.\\ \end{tabbing} \section{Copy Boundary Condition} This is a two level scheme. Copy the boundary values from a different grid function, for example the previous timelevel. The two grid functions (or groups of grid functions) must have the same geometry. The copy boundary condition is registered under the name ``Copy''. \subsection{Additional arguments} The ``COPY\_FROM'' argument for the copy boundary condition is required, so a valid table handle is required as well. The keys read are \\[1mm] \begin{tabular}{|l|l|l|l|} \hline \textbf{key} & \textbf{variable type} & \textbf{description} & \textbf{default value}\\ \hline COPY\_FROM & CCTK\_INT or CCTK\_STRING & GV to copy from & \emph{no default}\\ BOUNDARY\_WIDTH & CCTK\_INT array & stencil width for each face & n/a\\ \hline \end{tabular} \\[1mm] (The \texttt{BOUNDARY\_WIDTH} table entry is only necessary if the \texttt{boundary\_width} parameter is negative.) \subsection{Old interface} \subsubsection*{Calling from C:} \begin{verbatim} int ierr = BndCopyVN(cGH *cctkGH, int *stencil_size, char *variable_name_to, char *variable_name_from) int ierr = BndCopyGN(cGH *cctkGH, int *stencil_size, char *group_name_to, char *group_name_from) int ierr = BndCopyVI(cGH *cctkGH, int *stencil_size, int variable_index_to, int variable_index_from) int ierr = BndCopyGI(cGH *cctkGH, int *stencil_size, int group_index_to, int group_index_from) \end{verbatim} \subsubsection*{Calling from Fortran:} \begin{verbatim} call BndCopyVN(ierr, cctkGH, stencil_size, variable_name_to, variable_name_from) call BndCopyVN(ierr, cctkGH, stencil_size, group_name_to, group_name_from) call BndCopyVN(ierr, cctkGH, stencil_size, variable_index_to, variable_index_from) call BndCopyVN(ierr, cctkGH, stencil_size, group_index_to, group_index_from) \end{verbatim} where \begin{tabbing} {\tt character*(*) variable\_name\_from} \= description\=\kill {\tt integer ierr} \> return value, operation failed when return value {\em negative}\\ {\tt CCTK\_POINTER cctkGH} \> grid hierarchy pointer\\ {\tt integer stencil\_size(dim)} \> array of size {\tt dim} (dimension of the grid function). To how many points \\ \> from the outer boundary to apply the boundary condition. \\ {\tt character*(*) variable\_name\_to} \> the name of the grid function to which the boundary condition\\ \> will be applied by copying to.\\ {\tt character*(*) variable\_name\_from} \> the name of the grid function containing the values to copy from.\\ {\tt character*(*) group\_name\_to} \> the name of the group to which the boundary condition\\ \> will be applied by copying to.\\ {\tt character*(*) group\_name\_from} \> the name of the group containing the the values to copy from.\\ {\tt integer variable\_index\_to} \> the index of the grid function to which the boundary condition\\ \> will be applied by copying to.\\ {\tt integer variable\_index\_from} \> the index of the grid function containing the the values to copy from.\\ {\tt integer group\_index\_to} \> the index of the group to which the boundary condition\\ \> will be applied by copying to.\\ {\tt integer group\_index\_from} \> the index of the group containing the the values to copy from. \end{tabbing} \section{Robin Boundary Condition} This boundary condition has not yet been implemented in individual coordinate directions. The Robin boundary condition is: \begin{equation} f(r) = f_0 + \frac{k}{r^n} \end{equation} with $k$ a constant, $n$ the decay rate and $f_0$ the value at infinity. This implies: \begin{equation} \frac{\partial f}{\partial r} = - n \frac{k}{r^{n+1}} \end{equation} or \begin{equation} \frac{\partial f}{\partial r} = - n \frac{(f-f_0)}{r} \end{equation} Considering now a given Cartesian direction $x$ we get: \begin{equation} \frac{\partial f}{\partial x} = \frac{\partial f}{\partial r} \frac{\partial r}{\partial x} = \frac{x}{r}\frac{\partial f}{\partial r} \end{equation} which implies \begin{equation} \frac{\partial f}{\partial x} = - n (f-f_0)\frac{x}{r^2} \end{equation} The equations are then finite differenced around the grid point $i+1/2$: \begin{equation} f_{i+1} - f_i = - n \Delta x \left( \frac{1}{2}(f_{i+1}+f_i) - f_0\right) \frac{x_{i+1/2}}{r^2_{i+1/2}} \end{equation} or \begin{equation} f_{i+1}-f_i = -n \Delta x ( (f_{i+1}+f_i)-2 f_0)\frac{x_{i+1}+x_i}{(r_{i+1}+r_i)^2} \end{equation} And this is then solved either for $f_i$ or $f_{i+1}$ depending on which side are we looking at. The Robin boundary condition is registered under the name ``Robin''. \subsection{Additional arguments} A table passed to the Robin boundary condition may contain the following additional arguments:\\[1mm] \begin{tabular}{|l|l|l|l|} \hline \textbf{key} & \textbf{variable type} & \textbf{description} & \textbf{default value}\\ \hline FINF & CCTK\_REAL & $f_0$ & 0\\ DECAY\_POWER & CCTK\_INT & $n$ & 1\\ BOUNDARY\_WIDTH & CCTK\_INT array & stencil width for each face & n/a\\ \hline \end{tabular} \subsection{Old interface} \subsubsection*{Calling from C:} {\bf All Coordinate Directions:} \begin{verbatim} int ierr = BndRobinVN(cGH *cctkGH, int *stencil_size, CCTK_REAL finf, int npow, char *variable_name) int ierr = BndScalarGN(cGH *cctkGH, int *stencil_size, CCTK_REAL finf, int npow, char *group_name) int ierr = BndScalarVI(cGH *cctkGH, int *stencil_size, CCTK_REAL finf, int npow, int group_index) int ierr = BndScalarGI(cGH *cctkGH, int *stencil_size, CCTK_REAL finf, int npow, int variable_index) \end{verbatim} \subsubsection*{Calling from Fortran:} {\bf All Coordinate Directions:} \begin{verbatim} call BndRobinVN(ierr, cctkGH, stencil_size, finf, npow, variable_name) call BndRobinGN(ierr, cctkGH, stencil_size, finf, npow, group_name) call BndRobinVI(ierr, cctkGH, stencil_size, finf, npow, variable_index) call BndRobinGI(ierr, cctkGH, stencil_size, finf, npow, group_index) \end{verbatim} where {\tt \begin{tabbing} character*(*) \= variable\_name\=\kill integer \> ierr \\ CCTK\_POINTER \> cctkGH\\ integer \> stencil\_size(dim)\\ CCTK\_REAL \> finf \\ integer \> npow \\ character*(*) \> variable\_name\\ character*(*) \> group\_name\\ integer \> variable\_index\\ integer \> group\_index\\ \end{tabbing} } \subsubsection*{Arguments} \begin{tabbing} {\tt variable\_index} \= description\=\kill {\tt ierr} \> Return value, negative value indicates the boundary condition was not successfully applied\\ {\tt cctkGH} \> Grid hierarchy pointer\\ {\tt finf} \> Scalar value at infinity\\ {\tt npow} \> Decay rate ($n$ in discussion above)\\ {\tt stencil\_size} \> Array with dimension of the grid function, containing the stencil width to apply the boundary at\\ {\tt variable\_name} \> Name of the variable\\ {\tt group\_name} \> Name of the group\\ {\tt variable\_index} \> Variable index\\ {\tt group\_index} \> Group index \end{tabbing} \section{Static Boundary Condition} The static boundary condition ensures that the boundary values do not evolve in time, by copying their values from previous timelevels. The static boundary condition is registered under the name ``Static''. \subsection{Additional arguments} A table passed to the static boundary condition may contain the following additional arguments:\\[1mm] \begin{tabular}{|l|l|l|l|} \hline \textbf{key} & \textbf{variable type} & \textbf{description} & \textbf{default value}\\ \hline BOUNDARY\_WIDTH & CCTK\_INT array & stencil width for each face & n/a\\ \hline \end{tabular} \subsection{Old interface} \subsubsection*{Calling from C:} {\bf All Coordinate Directions:} \begin{verbatim} int ierr = BndStaticVN(cGH *cctkGH, int *stencil_size, char *variable_name) int ierr = BndStaticGN(cGH *cctkGH, int *stencil_size, char *group_name) int ierr = BndStaticVI(cGH *cctkGH, int *stencil_size, int variable_index) int ierr = BndStaticGI(cGH *cctkGH, int *stencil_size, int group_index) \end{verbatim} \noindent {\bf Individual Coordinate Directions:} \begin{verbatim} int ierr = BndStaticDirVN(cGH *cctkGH, int stencil, int dir, char *variable_name) int ierr = BndStaticDirGN(cGH *cctkGH, int stencil, int dir, char *group_name) int ierr = BndStaticDirVI(cGH *cctkGH, int stencil, int dir, int variable_index) int ierr = BndStaticDirGI(cGH *cctkGH, int stencil, int dir, int group_index) \end{verbatim} \subsubsection*{Calling from Fortran:} {\bf All Coordinate Directions:} \begin{verbatim} call BndStaticVN(ierr, cctkGH, stencil_array, variable_name) call BndStaticGN(ierr, cctkGH, stencil_array, group_name) call BndStaticVI(ierr, cctkGH, stencil_array, variable_index) call BndStaticGI(ierr, cctkGH, stencil_array, group_index) \end{verbatim} \noindent {\bf Individual Coordinate Directions:} \begin{verbatim} call BndStaticDirVN(ierr, cctkGH, stencil, dir, variable_name) call BndStaticDirGN(ierr, cctkGH, stencil, dir, group_name) call BndStaticDirVI(ierr, cctkGH, stencil, dir, variable_index) call BndStaticDirGI(ierr, cctkGH, stencil, dir, group_index) \end{verbatim} where {\tt \begin{tabbing} character*(*) \= variable\_name\=\kill integer \> ierr \\ CCTK\_POINTER \> cctkGH\\ integer \> dir\\ integer \> stencil\\ integer \> stencil\_array(dim)\\ character*(*) \> variable\_name\\ character*(*) \> group\_name\\ integer \> variable\_index\\ integer \> group\_index\\ \end{tabbing} } \subsubsection*{Arguments} \begin{tabbing} {\tt variable\_index} \= description \=\kill {\tt ierr} \> Return value, negative value indicates the boundary condition was not successfully applied\\ {\tt cctkGH} \> Grid hierarchy pointer\\ {\tt dir} \> Coordinate direction in which to apply boundary condition\\ {\tt stencil\_size} \> Array with dimension of the grid function, containing the stencil width to apply the boundary at\\ {\tt variable\_name} \> Name of the variable\\ {\tt group\_name} \> Name of the group\\ {\tt variable\_index} \> Variable index\\ {\tt group\_index} \> Group index\\ \end{tabbing} \section{None Boundary Condition} The ``None'' boundary condition does just that, nothing. It is provided to inform the boundary implementation of grid variables which should have symmetry boundary conditions applied to them, but do not have their physical boundary conditions applied using a properly registered function. \subsection{Additional arguments} The none boundary condition will ignore all arguments passed to it. (Notably, when registering variables/groups for this boundary condition, the \verb|boundary_width| and \verb|table_handle| arguments are unused, and may be passed as dummy values.) \subsection{Old interface} There is no old interface to this boundary condition. \section{Appendix: Symmetry and non-local boundary conditions} \label{Boundary/apx:symmetry} An additional aliased function is provided to allow one to retrieve a list of grid variables which are selected for any particular boundary condition, or the entire list of selected grid variables (regardless of selected boundary condition). This is needed to write a thorn which provides a symmetry boundary condition, or a non-local boundary condition, as either of these need to schedule a routine in the \texttt{BoundaryConditions} schedule group to execute their condition on the list of selected variables\footnote{The consistency of the symmetry conditions scheduled in \texttt{BoundaryConditions} will be treated in an upcoming ``Symmetry'' implementation}. (A symmetry boundary condition will need the entire list of selected variables, while the non-local physical condition will only need the list of variables which request that particular boundary condition.) \begin{verbatim} int Boundary_SelectedGVs(CCTK_POINTER cctkGH, CCTK_INT array_size, CCTK_POINTER var_indices, CCTK_POINTER faces, CCTK_POINTER boundary_widths, CCTK_POINTER table_handles, CCTK_STRING bc_name) \end{verbatim} \begin{tabbing} \texttt{table\_handlesss} \= description \=\kill \texttt{cctkGH} \> pointer to the grid hierarchy\\ \texttt{array\_size} \> size of arrays pointed to by the next three arguments\\ \texttt{var\_indices} \> array of integers into which the selected variables' grid variable indices will be placed\\ \texttt{faces} \> array of integers into which the faces specification for each selected grid variable will be placed\\ \texttt{boundary\_widths} \> array of integers which holds the \texttt{boundary\_width} parameter for each selected GV\\ \texttt{table\_handles} \> array of integers into which the table handle for each selected grid variable will be placed\\ \texttt{bc\_name} \> name of boundary condition \end{tabbing} This function places a list of up to \texttt{array\_size} grid variable indices, sorted as described in section \ref{Boundary/sec:bc_registration}, into the array \texttt{var\_indices}. The corresponding (up to \texttt{array\_size}) faces specifications, boundary widths, and table handles are placed into the arrays \texttt{faces}, \texttt{boundary\_widths}, and \texttt{table\_handles}, respectively. (If the list contains $n<$\texttt{array\_size} elements, then only $n$ elements are placed into the arrays \texttt{var\_indices}, \texttt{faces}, \texttt{boundary\_widths}, and \texttt{table\_handles}.) To retrieve a list of all selected grid variables (for all boundary conditions), pass a null pointer for \texttt{bc\_name}. The return value is the number elements of the requested list, so \texttt{Boundary\_SelectedGVs} can be called first with \texttt{var\_indices} equal to zero to determine how much memory to allocate for the arrays \texttt{var\_indices}, \texttt{faces}, \texttt{boundary\_widths}, and \texttt{table\_handles}. A non-local boundary condition must register a null pointer as its providing function in\\ \texttt{Boundary\_RegisterPhysicalBC}, so that its name exists in the database of available boundary conditions, yet no extra routine is called when \texttt{Boundary\_ApplyPhysicalBCs} is executed. % Do not delete next line % END CACTUS THORNGUIDE \end{document} % LocalWords: ApplyBCs cctkGH bc num ApplyPhysicalBCs BoundaryConditions cctk % LocalWords: ClearSelection VN GN dir ierr nam nx timelevel vt dh ds radpower % LocalWords: GV ccl SelectGroupForBC FINF finf npow timelevels SelectedGVs % LocalWords: RegisterPhysicalBC Alcubierre Gerd Lanfermann const