Skip to content

Commit

Permalink
Fix derzvp
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrack authored Jan 20, 2022
1 parent d7b5f47 commit 47867c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/derive.f90
Original file line number Diff line number Diff line change
Expand Up @@ -5038,7 +5038,7 @@ subroutine derzvp(tz,uz,rz,sz,cfz6,csz6,cwz6,nx,ny,nz,nzm,npaire)
do j=1,ny
do i=1,nx
tz(i,j,nzm-1)=aciz6*(uz(i,j,nzm)-uz(i,j,nzm-1))&
+bciz6*(uz(nz,j,k)-uz(nzm-2,j,k))
+bciz6*(uz(i,j,nz)-uz(i,j,nzm-2))
tz(i,j,nzm)=aciz6*(uz(i,j,nz)-uz(i,j,nzm))&
+bciz6*(uz(i,j,nzm)-uz(i,j,nzm-1))
enddo
Expand Down

0 comments on commit 47867c5

Please sign in to comment.