Skip to content

Commit

Permalink
Bug fix in Holzapfel tangent component (#190)
Browse files Browse the repository at this point in the history
* Bug fix in Holzapfel tangent component

* Modify testing to show output

This way, can observe convergence behavior of tests
  • Loading branch information
aabrown100-git authored Feb 21, 2024
1 parent 0590d9a commit b99e12e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
git lfs pull
cd tests
conda run -n svfsiplus pytest -v --durations=0
conda run -n svfsiplus pytest -rPv --durations=0
- name: Generate code coverage
if: startsWith(matrix.os, 'ubuntu-22.04')
run: |
Expand Down
2 changes: 1 addition & 1 deletion Code/Source/svFSI/mat_models_carray.h
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ void get_pk2cc(const ComMod& com_mod, const CepMod& cep_mod, const dmnType& lDmn
for (int j = 0; j < N; j++) {
for (int k = 0; k < N; k++) {
for (int l = 0; l < N; l++) {
CCb[i][j][k][l] += g1 * Hss_prod[i][j][k][l];
CCb[i][j][k][l] += g2 * Hss_prod[i][j][k][l];
}
}
}
Expand Down

0 comments on commit b99e12e

Please sign in to comment.