Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
relaxed stencil criterion for weno schemes
  • Loading branch information
TakisCFD committed Aug 31, 2019
1 parent 0277cb6 commit 2449ed1
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion CODE/grid_p.f90
Original file line number Diff line number Diff line change
Expand Up @@ -6181,7 +6181,26 @@ SUBROUTINE STENCILS(N,IELEM,IMAXE,XMPIE,XMPIELRANK,ILOCALSTENCIL,TYPESTEN,NUMNEI

END DO
IELEM(N,I)%ADMIS=KX
IF ((EES.EQ.0).OR.(EES.GE.4))THEN
IF ((EES.EQ.0))THEN

if (initcond.eq.101)then

IF (IELEM(N,I)%ADMIS.eq.ielem(n,i)%ifca+1)THEN
IELEM(N,I)%FULL=1
!
end if

else
IF (IELEM(N,I)%ADMIS.Gt.3)THEN
IELEM(N,I)%FULL=1
END IF



end if
END IF

IF ((EES.GE.4))THEN

if (initcond.eq.101)then

Expand Down

0 comments on commit 2449ed1

Please sign in to comment.