Skip to content

Commit

Permalink
Add boundary nudging by BvS
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Jansson committed Apr 7, 2020
1 parent 185f8a1 commit 6e208f5
Show file tree
Hide file tree
Showing 3 changed files with 386 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/daleslib.f90
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ subroutine initialize(path,mpi_comm,date,time)
!use modtilt, only : inittilt
!use modparticles, only : initparticles
use modnudge, only : initnudge
use modnudgeboundary, only : initnudgeboundary
!use modprojection, only : initprojection
use modchem, only : initchem
use modcanopy, only : initcanopy
Expand Down Expand Up @@ -166,6 +167,7 @@ subroutine initialize(path,mpi_comm,date,time)
call initlsmstat
!call initparticles
call initnudge
call initnudgeboundary
call initbulkmicrostat
call initbudget
!call initstressbudget
Expand Down Expand Up @@ -459,6 +461,7 @@ subroutine step
!use modtilt, only : tiltedgravity, tiltedboundary
!use modparticles, only : particles
use modnudge, only : nudge
use modnudgeboundary, only : nudgeboundary
!use modprojection, only : projection
use modchem, only : twostep
use modcanopy, only : canopy
Expand Down Expand Up @@ -517,6 +520,7 @@ subroutine step
! 3.4 EXECUTE ADD ONS
!------------------------------------------------------
call nudge
call nudgeboundary
! call dospecs
! call tiltedgravity

Expand Down Expand Up @@ -657,6 +661,7 @@ subroutine finalize
!use modtilt, only : exittilt
!use modparticles, only : exitparticles
use modnudge, only : exitnudge
use modnudgeboundary, only : exitnudgeboundary
use modcanopy, only : exitcanopy

implicit none
Expand All @@ -669,6 +674,7 @@ subroutine finalize
call exitlsmstat
!call exitparticles
call exitnudge
call exitnudgeboundary
call exitsampling
call exitquadrant
call exitsamptend
Expand Down
Loading

0 comments on commit 6e208f5

Please sign in to comment.