Skip to content

Commit

Permalink
declare vort array in common block and declare work1 and work2 of size 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ping-Hsuan committed Aug 30, 2024
1 parent 44430e5 commit d9f2e06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/time.f
Original file line number Diff line number Diff line change
Expand Up @@ -259,15 +259,15 @@ subroutine post
include 'AVG'

parameter (lt=lx1*ly1*lz1*lelt)
common /scrrstep/ t1(lt),t2(lt),t3(lt),work(lt)
common /scrrstep/ t1(lt),t2(lt),t3(lt),vort(lt)
common /scrbdfext/ rhs(0:lb,2),rhstmp(0:lb),
$ utmp1(0:lb),utmp2(0:lb)
common /nekmpi/ nidd,npp,nekcomm,nekgroup,nekreal

save icalld
data icalld /0/

real vort(lt),work1(lt),work2(lt)
real work1(1),work2(1)

call rom_userchk

Expand Down

0 comments on commit d9f2e06

Please sign in to comment.