FEM SolverElmer SolverSettings

From FreeCAD Documentation
Revision as of 21:31, 14 August 2022 by Uwestoehr (talk | contribs) (→‎Solver: add more info)
Other languages:

This page describes the possible solver settings for Elmer.

General

Elmer is a multiphysics solver. Therefore you can use several main equations to solve problems. The different equations are listed here.

There are solver settings, available for all equations. These are described here. Settings only available for a particular equation are described in the pages of the corresponding equation.

Elmer offers two main solving systems, linear system and nonlinear system. The nonlinear system is used for the Flow equation and Heat equation.

Editing Settings

The solver settings can be found in the property editor after clicking on an equation in the tree view. You can edit them there directly like any other property.

Solver

Timestepping

For transient simulations the time steps need to be defined. This is done by the following settings:

  • DataBDFOrder:
  • DataTimestep Intervals: An array of calculations per time interval.The solver will perform one time interval after another. For example if the solver should calculate the first 10 seconds in steps of 0.1 second, then 50 seconds in steps of 1 second and then stop, you need to set the timestep intervals [100, 50] and the timestep size intervals [0.1, 1.0].
  • DataTimestep Sizes: An array of timestep sizes. The time unit is second. The array corresponds to the DataTimestep Intervals.

Type

  • DataSimulation type: If the simulation is Steady state, Transient or just Scanning. Transient means the development over time is calculated. See section Timestepping for the necessary settings.
  • DataSteady State Max Iterations:The maximal number of steady-state solver runs.
  • DataSteady State Min Iterations: The minimal number of steady-state solver runs.

Equation

Base

All equations have these properties:

  • DataLabel: name of the equation in the tree view.
  • DataPriority: number determining the priority of this equation to the other equations in the analysis. The equation with the highest number in the analysis will be output as first to the Elmer input file (file case.sif). If two equations have the same priority number, the one that is first in the tree view will be output first.
  • DataStabilize: If set to true, the solver will use stabilized finite element method when solving the heat equation with a convection term. If set to false the Residual Free Bubble (RFB) stabilization is used instead. If convection dominates, stabilization must be used in order to successfully solve the equation.

Linear System

This system has the following properties:

  • DataBiCGstabl Degree: polynomial degree for the iterative solver method BiCGStabl . This has only an effect if DataLinear Solver Type is Iterative and DataLinear Iterative Method is BiCGStabl. Starting with the default of 2 is recommended.
  • DataIdrs Parameter: Parameter for the iterative solver method Idrs . This has only an effect if DataLinear Solver Type is Iterative and DataLinear Iterative Method is Idrs. Starting with the default of 2 is recommended. Setting the parameter to 3 might increase the solving speed a bit. For flow analyses the Idrs method is up to 30 % faster than the default BiCGStab method.
  • DataLinear Direct Method: method used for direct solving. This has only an effect if DataLinear Solver Type is Direct.
    The possible methods are Banded, MUMPS and Umpfpack. Note that MUMPS usually needs to be installed before you can use it.
    Note: when you use more than one CPU core for the solver (introduced in version 1.0) only MUMPS can be used.
  • DataLinear Iterations: maximal number of iterations for an iterative solver run. This has only an effect if DataLinear Solver Type is Iterative.
  • DataLinear Iterative Method: method used for iterative solving This has only an effect if DataLinear Solver Type is Iterative.
  • DataLinear Preconditioning: method used for the preconditioning. For info about preconditioning, see this presentation (page 8) from Elmer.
  • DataLinear Solver Type: if the solving is done Direct or Iterative.
  • DataLinear System Solver Disabled: Disables the linear solver. Only use this for special cases.
    It can be used to disable temporarily an equation since its solving is then not performed. There are, however cases there the solver is send to an infinite loop instead.
  • DataLinear Tolerance: the tolerance for the solver to stop. If the error is smaller than the tolerance, the solver run will be is finished. Otherwise the full number of DataLinear Iterations will be performed.
    In the Elmer solver log you see how the error is minimized while the solver is running. (Look in the log at the end off every solver iteration for the value behind Relative Change). In case it does not go down below a certain value but reaches a value above the current tolerance that is acceptable for you, you can increase the tolerance.

Nonlinear System

This system is iterative and has the following properties:

  • DataNonlinear Iterations: maximal number of iterations.
  • DataNonlinear Newton After Iterations:
  • DataNonlinear Newton After Tolerance:
  • DataNonlinear Tolerance: the tolerance for the solver to stop. If the error is smaller than the tolerance, the solver run will be is finished. Otherwise the full number of DataNonlinear Iterations will be performed.
    In the Elmer output you see in how the error is minimized while the solver is running. In case it does not go down below a certain value that is acceptable but above the current tolerance, you can increase the tolerance.
  • DataRelaxation Factor: This is THE most important setting in case the solver does not converge:

Relaxation Factor

If the solver iteration results oscillate numerically, the solver results cannot converge to a final, stable value. To avoid that, the calculated variable of the i-th iteration/solver run is not taken as input for the next iteration, but , a value that is "damped" with the result from the previous iteration. The relaxation factor is thereby defined as

So for the default of 1.0, no damping is used. The smaller , the greater the damping and the the longer the convergence time. Therefore if the solver does not converge, start changing the relaxation factor to 0.9, then to 0.8 and so on. Values below 0.3 are unusual and if you need this, you should have a closer look to the math of your analysis.
For cases, where you get a proper convergence you can set above 1.0 to speed the convergence up.

Steady State

This part of the settings has only one property:

  • DataSteady State Tolerance: The specific steady state or coupled system convergence tolerance. All the equation solvers must meet their own tolerances for the variable they calculate, before the whole system is deemed converged. The tolerance criterion is:

whereas is the steady state tolerance and is the calculated variable in the i-th iteration/solver run.