Skip to content

Commit

Permalink
v7.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wortiz committed Sep 19, 2024
1 parent b946107 commit 0d0835a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/std.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
#else
#define GOMA_MAJOR_VERSION 7
#define GOMA_MINOR_VERSION 8
#define GOMA_PATCH_VERSION 1
#define GOMA_PATCH_VERSION 2
#define GOMA_VERSION \
STRINGCON(GOMA_MAJOR_VERSION) "." STRINGCON(GOMA_MINOR_VERSION) "." STRINGCON(GOMA_PATCH_VERSION)
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/mm_fill_turbulent.c
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ int assemble_spalart_allmaras(dbl time_value, /* current time */
} /* End of loop over velocity components */

/* Sensistivity w.r.t. mesh */
for (b = 0; b < pd->Num_Dim; b++) {
for (b = pd->Num_Dim; b < pd->Num_Dim; b++) {
var = MESH_DISPLACEMENT1 + b;
if (pdv[var]) {
pvar = upd->vp[pg->imtrx][var];
Expand Down

0 comments on commit 0d0835a

Please sign in to comment.