Skip to content

Commit

Permalink
Fix Issue #163
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfer committed Apr 13, 2022
1 parent 33cb963 commit 72d9a45
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/web/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ pandoc_html(release-notes-3.2.4 "--toc" "--toc-depth=2")
pandoc_html(release-notes-3.2.5 "--toc" "--toc-depth=2")
pandoc_html(release-notes-3.2.6 "--toc" "--toc-depth=2")
pandoc_html(release-notes-3.2.7 "--toc" "--toc-depth=2")
pandoc_html(release-notes-3.2.8 "--toc" "--toc-depth=2")
pandoc_html(release-notes-3.3 "--toc" "--toc-depth=2" "--number-sections" "-c css/slideshow.css")
pandoc_html(release-notes-3.3.1 "--toc" "--toc-depth=2" "--number-sections" "-c css/slideshow.css")
pandoc_html(release-notes-3.3.2 "--toc" "--toc-depth=2" "--number-sections" "-c css/slideshow.css")
Expand Down
1 change: 1 addition & 0 deletions docs/web/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ EXTRA_DIST=CMakeLists.txt \
./release-notes-3.2.5.md \
./release-notes-3.2.6.md \
./release-notes-3.2.7.md \
./release-notes-3.2.8.md \
./release-notes-3.3.md \
./release-notes-3.3.1.md \
./release-notes-3.3.2.md \
Expand Down
3 changes: 1 addition & 2 deletions docs/web/release-notes-3.0.11.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ secPrefixTemplate: "$$i$$"
eqnPrefixTemplate: "($$i$$)"
---


# Issues fixed

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

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

Expand Down
2 changes: 1 addition & 1 deletion mfront/src/PlasticInelasticFlow.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ namespace mfront::bbrick {
c += sp.generateImplicitEquationDerivatives(
bd, "strain", "p" + id, dseq_ds + "/(" + snf + ")",
this->sc->isNormalDeviatoric());
c += "if(seq<" + sp.getEquivalentStressLowerBound(bd) + "){\n";
c += "if(" + seq + "<" + sp.getEquivalentStressLowerBound(bd) + "){\n";
c += "if(" + dR_ddp + ">0){\n";
c += dfp_ddp + " = -1*std::max(real(1.e-12),(" + dR_ddp + ")/(" + snf +
"));\n";
Expand Down

0 comments on commit 72d9a45

Please sign in to comment.