@@ -77,7 +77,7 @@ subroutine readnamelists
77
77
lrandomize, prandtlturb, fkar, lwritefac, dtfac, tfac, tnextfac, &
78
78
ltrees,ntrees,Qstar,dQdt,lad,lsize,r_s,cd,dec,ud,ltreedump, &
79
79
lpurif,npurif,Qpu,epu, &
80
- lheatpump, nhppoints, Q_dot_hp, w_hp_exhaust
80
+ lheatpump,lfan_hp, nhppoints,Q_dot_hp,QH_dot_hp
81
81
use modsurfdata, only : z0, z0h, wtsurf, wttop, wqtop, wqsurf, wsvsurf, wsvtop, wsvsurfdum, wsvtopdum, ps, thvs, thls, thl_top, qt_top, qts
82
82
use modfields, only : initfields, dpdx, ncname
83
83
use modpois, only : initpois
@@ -170,7 +170,7 @@ subroutine readnamelists
170
170
namelist/ PURIFS/ &
171
171
lpurif, npurif, Qpu, epu
172
172
namelist/ HEATPUMP/ &
173
- lheatpump, nhppoints, Q_dot_hp, w_hp_exhaust
173
+ lheatpump, lfan_hp, nhppoints, Q_dot_hp, QH_dot_hp
174
174
175
175
if (myid == 0 ) then
176
176
if (command_argument_count() >= 1 ) then
@@ -603,9 +603,10 @@ subroutine readnamelists
603
603
call MPI_BCAST(Qpu, 1 , MY_REAL, 0 , comm3d, mpierr)
604
604
call MPI_BCAST(epu, 1 , MY_REAL, 0 , comm3d, mpierr)
605
605
call MPI_BCAST(lheatpump, 1 , MPI_LOGICAL, 0 , comm3d, mpierr)
606
+ call MPI_BCAST(lfan_hp, 1 , MPI_LOGICAL, 0 , comm3d, mpierr)
606
607
call MPI_BCAST(nhppoints, 1 , MPI_INTEGER, 0 , comm3d, mpierr)
607
608
call MPI_BCAST(Q_dot_hp, 1 , MY_REAL, 0 , comm3d, mpierr)
608
- call MPI_BCAST(w_hp_exhaust , 1 , MY_REAL, 0 , comm3d, mpierr)
609
+ call MPI_BCAST(QH_dot_hp , 1 , MY_REAL, 0 , comm3d, mpierr)
609
610
610
611
! ! Allocate and initialize core modules
611
612
! call initglobal
0 commit comments