Modifying the boundary conditions

After refining the mesh the boundary conditions have to be moved from the old (= unrefined) mesh to the new (= refined) mesh. This includes both single point constraints (SPC's) and multiple point constraints (MPC's). The general approach is the following: the boundary conditions on the old mesh are kept and new equations are generated linking all surface nodes of the old mesh (i.e. the part which has been remeshed) to those of the new mesh. Subsurface nodes are not relevant, since boundary conditions are usually only applied to surface nodes.

So for each surface node in the old mesh three equations (in 3D) are generated linking the displacement of this node to nodes of the new mesh. The coefficients of the equations are obtained by a standard interpolation procedure. For a node “a” in the old mesh linked to nodes 30, 58, 123 and 4009 in the new mesh such an equation looks like:

$\displaystyle u_a = x_1 u_{30} + x_2 u_{58} + x_3 u_{123} + x_4 u_{4009}$ (720)

or

$\displaystyle u_a - x_1 u_{30} - x_2 u_{58} - x_3 u_{123} - x_4 u_{4009} = 0$ (721)

for the displacement component u in x-direction. Notice that the coefficient of the dependent node (first node in the equation; belongs to the old mesh) is 1, the other nodes in the equations can be considered to be independent nodes and belong to the new mesh.

Figure 187: Matrix structure of the connecting equations
\begin{figure}\epsfig{file=modbc1.eps,width=10cm}\end{figure}

Figure 188: Fields describing the matrix structure
\begin{figure}\epsfig{file=modbc2.eps,width=12cm}\end{figure}

These equations can be put in matrix form, with the columns corresponding to the dependent nodes (ordered in ascending order with a total of nnodestet nodes) and the rows corresponding to the global nodes numbers of the surface nodes of the refined mesh, Figure 187. The maximum independent node number occurring is labeled maxrow. Notice that, since the equations are identical for the global x-, y- and z-direction, only one equation per dependent node is stored. The matrix structure is stored with fields which are partially similar to the general way in which the stiffness matrix is stored in CalculiX, i.e. (see also Figure 188):

Figure 189: Example for the fields defining the connecting equations
\begin{figure}\epsfig{file=modbc3.eps,width=12cm}\end{figure}

Figure 189 describes these fields for a simple example involving the following connecting equations:

$\displaystyle u_{22}+a u_6 + b u_{31}=0$ (722)

$\displaystyle u_{134}+c u_{31} + d u_{59} + e u_{78} =0$ (723)

$\displaystyle u_{202}+f u_3 + g u_6 =0$ (724)

The fields above are needed because the terms in the connecting equations have to be reordered for each SPC or MPC on the unrefined mesh. Indeed, assume that the displacement in x for node 22 above was set to zero in the unrefined mesh by a SPC of the form $ u_{22}=0$. Then $ u_{22}$ occurs as dependent degree of freedom in the SPC and the MPC above. This is not allowed in CalculiX: a node can occur at most once as dependent dof. Therefore, the MPC has to be reordered, e.g. in the form

$\displaystyle a u_6+u_{22}+ b u_{31}=0$ (725)

making node 6 of the refined mesh the dependent dof. This reordering has to be done for each node of the unrefined mesh used in a SPC or MPC. In order not to run out of independent refined mesh nodes which can be used as dependent nodes, the equations are reordered starting from the ones with fewest terms to the ones with most terms. To that end field icol, which contains the number of independent terms in each equations, can be used and ordered. However, in order to keep the information to which column (i.e. unrefined mesh node) the independent count belongs, the field ixcol is created. Notice that this field, when ordered, keeps the same ordering as field icol.

Before ordering ixcol it is modified in such a way that all entries corresponding to unrefined mesh nodes which do not belong to SPC's or MPC's are set to zero (since they do not have to be reorderd). Let us assume that in the example in Figure 189 there is a SPC defined in node 22 and 134, then ixcol is rewritten as $ ixcol=[9 14 0]$, which yields after reordering $ ixcol=[0 9 14]$. Then, the columns are treated from low to high in ixcol. The first nonzero entry is 9, which corresponds to column 1. For this column the largest coefficient (in absolute value) is identified and the corresponding term used as dependent dof. Let us assume that $ \vert b\vert>\vert a\vert$, then the original equation

$\displaystyle u_{22}+a u_6 + b u_{31}=0$ (726)

is reordered as

$\displaystyle b u_{31}+u_{22}+a u_6 =0,$ (727)

and node 31 cannot be used as dependent term in any other equation. Therefore, all row entries in row 31 have to be deactivated. This is done by reverting the sign all “31” entries in field irow, by use of fields irowt, jqt and loc. Subsequently, entry “9” in field ixcol is set to zero, since the corresponding column has been rearranged. Now only entry 14 is left, which corresponds to column 2 in field au. For the determination of the maximum coefficients only positive entries in field irow are taken into account, therefore, only coefficients d and e are compared. If $ \vert d\vert > \vert e\vert$ then the original equation

$\displaystyle u_{134}+c u_{31} + d u_{59} + e u_{78} =0$ (728)

is reordered as

$\displaystyle d u_{59} + u_{134}+c u_{31} + e u_{78} =0$ (729)

and row 59 is deactivated for further equation rearrangement by switching its sign in field irow.

Notice that all coefficients in matrix au are nonpositive since the shape function values for a linear or quadratic triangle are nonnegative (used in the interpolation procedure). Therefore, all rearranged equations are characterized by a nonpositive coefficient of the dependent terms.

The procedure may not be fool proof (especially if a lot of SPC's or MPC's contrain the unrefined mesh). If, due to the rearrangement of other equations no independent node in an equation not treated yet remains, an error message is issued and the program stops.

The procedure just described is repeated for each step, since the SPC's and MPC's can change from step to step. Before starting the procedure, however, the equations from the last step are reordered in their original form (i.e. with a leading coefficient of 1).