Skip to content

Commit 58ab34b

Browse files
committed
Fix column 72 error
1 parent ba5daba commit 58ab34b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/1d/advanc.f

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ subroutine advanc (level,nvar,dtlevnew,vtime,naux)
2626
c
2727
c ::::::::::::::; ADVANC :::::::::::::::::::::::::::::::::::::::::::
2828
c integrate all grids at the input 'level' by one step of its delta(t)
29-
c this includes: setting the ghost cells
29+
c this includes: setting the ghost cells
3030
c advancing the solution on the grid
3131
c adjusting fluxes for flux conservation step later
3232
c :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@@ -78,7 +78,7 @@ subroutine advanc (level,nvar,dtlevnew,vtime,naux)
7878
call cpu_time(cpu_finishBound)
7979
timeBound = timeBound + clock_finishBound - clock_startBound
8080
timeBoundCPU=timeBoundCPU+cpu_finishBound-cpu_startBound
81-
81+
8282
c
8383
c save coarse level values if there is a finer level for wave fixup
8484

@@ -91,7 +91,7 @@ subroutine advanc (level,nvar,dtlevnew,vtime,naux)
9191
dtlevnew = rinfinity
9292
cfl_level = 0.d0 !# to keep track of max cfl seen on each level
9393

94-
c
94+
c
9595
call system_clock(clock_startStepgrid,clock_rate)
9696
call cpu_time(cpu_startStepgrid)
9797

@@ -115,7 +115,7 @@ subroutine advanc (level,nvar,dtlevnew,vtime,naux)
115115

116116
!$OMP CRITICAL (newdt)
117117
dtlevnew = dmin1(dtlevnew,dtnew)
118-
!$OMP END CRITICAL (newdt)
118+
!$OMP END CRITICAL (newdt)
119119

120120
end do
121121
!$OMP END PARALLEL DO
@@ -126,8 +126,8 @@ subroutine advanc (level,nvar,dtlevnew,vtime,naux)
126126
tvoll(level) = tvoll(level) + clock_finish - clock_start
127127
tvollCPU(level) = tvollCPU(level) + cpu_finish - cpu_start
128128
timeStepgrid = timeStepgrid +clock_finish-clock_startStepgrid
129-
timeStepgridCPU=timeStepgridCPU+cpu_finish-cpu_startStepgrid
130-
129+
timeStepgridCPU=timeStepgridCPU+cpu_finish-cpu_startStepgrid
130+
131131
cflmax = dmax1(cflmax, cfl_level)
132132

133133
c
@@ -214,8 +214,9 @@ subroutine par_advanc (mptr,mitot,nvar,naux,dtnew)
214214

215215

216216
locaux = node(storeaux,mptr)
217-
call b4step1(nghost, nx, nvar, alloc(locnew), rnode(cornxlo,mptr),
218-
& hx, time, dt, naux, alloc(locaux))
217+
call b4step1(nghost, nx, nvar, alloc(locnew),
218+
& rnode(cornxlo,mptr), hx, time, dt, naux,
219+
& alloc(locaux))
219220
c
220221
if (node(ffluxptr,mptr) .ne. 0) then
221222

0 commit comments

Comments
 (0)