imperror
command.
The estimator has the task to decide which elements have to be refined.
Currently five estimators are available.
The user can choose one of them by setting the variable estimator
to the
appropriate name. The tolerance has a different meaning for each estimator.
Its default values for the refinement (0.5) and coarsening (0.1) tolerance can be changed using the variables refinetol
and coarsentol
.
If estimate
is invoked without any arguments the values stored in the
variables refinetol
and coarsentol
will be handed over to the estimator. Else the values given as a arguments will override the variables. estimate
invokes the estimator specified by estimator
, which will
mark all elements necessary. If an irregular element would be selected, its father is marked for regular refinement, because Bey's refinement algorithm prohibits the refinement of an irregular element.
Function : EstimateCommand
Purpose : Estimate error and mark elements
Input : int argc - number of arguments (incl. its own name)
char **argv - array of arguments
Output : BOOL - FALSE for any error
Remark : Syntax : estimate <refinetol> <coarsentol>
All leaf (i.e. unrefined) elements will be marked for regular refinement.
The command mark all
provides a more convenient way to refine the whole
mesh.
All elements whose error is greater (smaller) than refinetol
(coarsentol
) will be marked for refinement (coarsening).
If the error of an element of the finest triangulation complies with
, it is marked for regular refinement. If it complies with
, it is
marked for coarsening.
Those elements for which (
), where
is the error of the current element and N the total number of
finite elements, is true, are marked for regular refinement (coarsening).
First the difference between the two magnetization vectors at the ends of each edge of the current element is calculated. The length of each of these six difference vectors is computed and finally summed up. If the result is greater (smaller) than refinetol
(coarsentol
) the element is marked for refinement.
After execution of estimate
the desired elements are marked for
refinement and coarsening. If too few or too many elements are marked or another estimator is chosen, estimate
can be called again, which will first clear all marks and evaluate the elements' errors again.
The refinement itself can be effected by the command refine
. It will insert all necessary elements and vertices. However, these newly inserted vertices contain no valid magnetization vector yet. It can be computed with interpolate
(implemented in mga.c
). This command interpolates linearly between the magnetization vectors at the ends of the edge which is bisected by the inserted vertex and stores the result in the new vertex. Finally, the length of the magnetization vector is changed to 1 if it is greater than 10-20. Otherwise it remains unchanged, which leaves it in a rather unphysical state. The magnetization vector can be very short under two circumstances. Either the magnetization vectors that are used for the interpolation are of almost equal length and point in opposite directions or they are very short themselves.
In the first case the new vertex lies between two different domains in a domain
wall. This could either be a Bloch wall (magnetization vector rotates in the plane of the wall) or a Néel wall. Since the interpolated vector is very short there is no ``domain wall'', rather an area with vanishing magnetization. The second case should not occur since the length of all magnetization vectors computed by vecu
have unit length.
Function : InterpolateCommand
Purpose : Interpolate solution for new vertices
Input : int argc - number of arguments (incl. its own name)
char **argv - array of arguments
Output : BOOL - FALSE for any error
Remark : Syntax : interpolate