Skip to content

Commit

Permalink
Fix wrong type in MMS/gbs
Browse files Browse the repository at this point in the history
  • Loading branch information
ZedThree committed Oct 24, 2024
1 parent 42dc6ee commit 47cff9e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/MMS/GBS/gbs.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ private:
const Field3D D(const Field3D& f, BoutReal d); // Diffusion operator
const Field3D H(const Field3D& f, BoutReal h); // Hyper-diffusion
// Powers of the mesh spacing for H operator
Field2D dx4, dy4;
BoutReal dz4;
Field2D dx4;
Field2D dy4;
Field2D dz4;

// Laplacian solver
std::unique_ptr<Laplacian> phiSolver{nullptr};
Expand Down

0 comments on commit 47cff9e

Please sign in to comment.