Skip to content

Commit 47cff9e

Browse files
committed
Fix wrong type in MMS/gbs
1 parent 42dc6ee commit 47cff9e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/MMS/GBS/gbs.hxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,9 @@ private:
8888
const Field3D D(const Field3D& f, BoutReal d); // Diffusion operator
8989
const Field3D H(const Field3D& f, BoutReal h); // Hyper-diffusion
9090
// Powers of the mesh spacing for H operator
91-
Field2D dx4, dy4;
92-
BoutReal dz4;
91+
Field2D dx4;
92+
Field2D dy4;
93+
Field2D dz4;
9394

9495
// Laplacian solver
9596
std::unique_ptr<Laplacian> phiSolver{nullptr};

0 commit comments

Comments
 (0)