Version 3.0.11 has been released on October, 24th 2022.

Issues fixed

Issue #326: Support for Intel’s compiler icx

For more details, see https://github.com/thelfer/tfel/issues/326.

Issue #320: [mfront] HeatFlux can’t be use as a glossary name

For more details, see https://github.com/thelfer/tfel/issues/320.

Issue #309: [mfront] Profiling is broken when using logarithmic strain in the abaqus interface

For more details, see https://github.com/thelfer/tfel/issues/309.

Issue #308: [mfront] Profiling is broken when using logarithmic strain in the europlexus interface

For more details, see https://github.com/thelfer/tfel/issues/308.

Issue #307: [mfront] Profiling is broken when using logarithmic strain in the ansys interface

For more details, see https://github.com/thelfer/tfel/issues/307.

Issue #305: [mfront] Profiling is broken when using logarithmic strain in the castem interface

For more details, see https://github.com/thelfer/tfel/issues/305.

Issue 274: [mfront] Analysers not called while parsing @Integrator and @Predictor in implicit DSLs

For more details, see https://github.com/thelfer/tfel/issues/274.

Issue #251: [mtest] Bad definition of PipeMeshElementType in python bindings

For more details, see https://github.com/thelfer/tfel/issues/251.

Issue #162: [mfront] Minors issues of syntax in StandardElastoViscoPlasticity Brick

For more details, see https://github.com/thelfer/tfel/issues/162.

Issue #159: Failing to generate input examples shall not stop mfront

For more details, see https://github.com/thelfer/tfel/issues/159.

Issue #140: [mtest] lonely separator is not correctly treated

For more details, see https://github.com/thelfer/tfel/issues/140.

Issue #43: [mtest] Prevent declaration of boundary conditions after the call to completeInitialisation

For more details, see https://github.com/thelfer/tfel/issues/43.

Issue #29: [TFELMath] Fix definition of reference in DifferenceRandomAccessIterator

For more details, see https://github.com/thelfer/tfel/issues/21.

Issue #21: [TFELMath] Fix support for negation of tensors based on quantitites

The following code did not compile:

#include <TFEL/Math/qt.hxx>
#include <TFEL/Math/st2tost2.hxx>

int main(){
  using namespace tfel::math;
  const auto s = -st2tost2<1u,qt<Stress,double>>::Id();
  return 0;
}

The trouble was related to the lack of specialisation of the ComputeUnaryOperationResult metafunction for quantities.

For more details, see https://github.com/thelfer/tfel/issues/21.