Skip to content
Snippets Groups Projects
Commit f360dcd9 authored by Marina Dütsch's avatar Marina Dütsch
Browse files

fix domain boundaries for domainfilling runs

Former-commit-id: 36ac3f2d
parent 82284d97
No related branches found
No related tags found
No related merge requests found
......@@ -933,9 +933,9 @@ subroutine init_domainfill
call alloc_domainfill
nx_we(1)=max(int(xpoint1(1)),0)
nx_we(2)=min((int(xpoint2(1))+1),nxmin1)
nx_we(2)=min((ceiling(xpoint2(1))),nxmin1)
ny_sn(1)=max(int(ypoint1(1)),0)
ny_sn(2)=min((int(ypoint2(1))+1),nymin1)
ny_sn(2)=min((ceiling(ypoint2(1))),nymin1)
! For global simulations (both global wind data and global domain-filling),
! set a switch, such that no boundary conditions are used
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment