diff --git a/examples/hasegawa-wakatani/hw.cxx b/examples/hasegawa-wakatani/hw.cxx index 445f447eb7..ea6ef64147 100644 --- a/examples/hasegawa-wakatani/hw.cxx +++ b/examples/hasegawa-wakatani/hw.cxx @@ -499,6 +499,8 @@ class HW : public PhysicsModel { Field3D pPhiVort; Field3D pPhiN; + Field3D tPhiVort; + Field3D tPhiN; int totCount = 0; @@ -553,6 +555,8 @@ class HW : public PhysicsModel { pPhiVort = 0.; pPhiN = 0.; + tPhiVort = 0.; + tPhiN = 0.; @@ -658,8 +662,8 @@ class HW : public PhysicsModel { for(int i=2; icommunicate(n, vort); - ddt(vort) = - Dvort*Delp4(vort); - ddt(n) = - Dn*Delp4(n); + ddt(vort) = - Dvort*Delp4(vort) + tPhiVort; + ddt(n) = - Dn*Delp4(n) + tPhiN; if (pStep>pStepStart)