Skip to content

Commit

Permalink
Fix Issue #715
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfer committed Feb 5, 2025
1 parent a879bff commit a9a6ff6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/web/IsotropicLinearHardeningPlasticity.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ eqnPrefixTemplate: "($$i$$)"
\newcommand{\dtot}{{{\mathrm{d}}}}
\newcommand{\paren}[1]{{\left(#1\right)}}

This article shows how to implement an orthotropic plastic behaviour
This article shows how to implement an isotropic plastic behaviour
with isotropic linear hardening in `MFront`.

The implementation is available [here](gallery/plasticity/IsotropicLinearHardeningPlasticity.mfront).
Expand Down
7 changes: 7 additions & 0 deletions mfront-query/src/mfront-query.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

#include "TFEL/Raise.hxx"
#include "TFEL/Utilities/StringAlgorithms.hxx"
#include "MFront/MFrontWarningMode.hxx"
#include "MFront/InitDSLs.hxx"
#include "MFront/InitInterfaces.hxx"
#include "MFront/MFrontHeader.hxx"
Expand Down Expand Up @@ -485,6 +486,12 @@ int main(const int argc, const char* const* const argv) {
using namespace mfront;
initDSLs();
initInterfaces();
// disabling warnings report by default as it may pollute the ouput of
// mfront-query warnings report can be enabled by passing
// --report-warnings=true
setWarningMode(false);
//

#if defined _WIN32 || defined _WIN64 || defined __CYGWIN__
const auto bg = [argv, argc] {
for (auto a = argv; a != argv + argc; ++a) {
Expand Down

0 comments on commit a9a6ff6

Please sign in to comment.