next up previous contents
Next: Example scripts Up: User manual Previous: New commands

Error estimation, refinement and interpolation

  For the refinement of the finite element mesh certain elements have to be selected and split into smaller elements as described in [Bey95] and [Scho97] . The selection is based on an estimated error, which is imported and stored in the data structure of the elements by the 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>

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


next up previous contents
Next: Example scripts Up: User manual Previous: New commands
Werner Scholz
10/30/1998