Skip to content

FE requirements

Finite element requirements are a simple way to communicate the needs and expectations of a finite element.

FE requirements are used to pass information from assemblers to finite elements.

Construction and usage

Usually the construction is as follows:

1
2
3
4
5
FErequirements req = FErequirements()
                           .insertGlobalSolution(FESolutions::displacement, d)
                           .insertParameter(FEParameter::loadfactor, lambda)
                           .addAffordance(MatrixAffordances::stiffness);
MatrixType A = sparseFlatAssembler.getReducedMatrix(req);

All the methods return a reference to FErequirements, so they can be chained together.

As in line 2, the finite element solution can also be inserted. The solution is passed with the enum type FESolutions::displacement vector d. This stores a reference to the vector.

Additionally, if some parameters are to be passed, use the method insertParameter (line 3), where, similar to the global solutions, an enum type of FEParameter::loadfactor is passed to indicate the meaning of the parameter, followed by its value.

Finally, the method addAffordance is used to indicate the request required from the finite element. Thus, there exist scalar, vector, matrix and general affordance collections.

Currently, the following are defined:

  enum class ScalarAffordances {
    noAffordance,
    mechanicalPotentialEnergy,
    microMagneticPotentialEnergy
  };

  enum class VectorAffordances {
    noAffordance,
    forces,
    microMagneticForces
  };

  enum class MatrixAffordances {
    noAffordance,
    stiffness,
    materialstiffness,
    geometricstiffness,
    stiffnessdiffBucklingVector,
    microMagneticHessian,
    mass
  };

  enum class FEParameter {
    noParameter,
    loadfactor,
    time
  };

  enum class FESolutions {
    noSolution,
    displacement,
    velocity,
    director,
    magnetizationAndVectorPotential
  };

Inside the finite element, the information can then be conveniently extracted:

1
2
3
4
const auto& d      = req.getGlobalSolution(FESolutions::displacement);
const auto& lambda = req.getParameter(FEParameter::loadfactor);
if(req.hasAffordance(stiffness))
  ...
Thus, the local finite element can be developed.

Affordance

It is good style to indicate that you cannot fulfill an affordance by throwing an appropriate exception!

FE result requirements

In addition to the above-mentioned finite element requirements, there are also result requirements. They accept the same parameter types as the FErequirements and add one more, the ResultType. These are used in the calculateAt method of finite elements. They are used to communicate the results required from the finite elements.

Its construction is shown below:

1
2
3
4
ResultRequirements resultRequirements = Ikarus::ResultRequirements()
        .insertGlobalSolution(FESolutions::displacement, d)
        .insertParameter(FEParameter::loadfactor, lambda)
        .addResultRequest(ResultType::cauchyStress,,ResultType::director);

The current supported results are:

  enum class ResultType {
    noType,
    magnetization,
    gradientNormOfMagnetization,
    vectorPotential,
    divergenceOfVectorPotential,
    BField,
    HField,
    cauchyStress,
    director
  };

The interface for result requirements is similar to the finite element requirements. They do, however, support querying specific results to be calculated.

if( req.isResultRequested( ResultType::cauchyStress)) {
  ...
}

if( req.isResultRequested( ResultType::BField)) {
  ...
}

if( req.isResultRequested( ResultType::director)) {
  ...
}