Skip to content

Commit

Permalink
Line limit tweak in Fortran
Browse files Browse the repository at this point in the history
  • Loading branch information
clairekope committed Mar 23, 2023
1 parent 1d7f952 commit 50ee320
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/enzo/star_maker2.F
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ subroutine star_maker2(nx, ny, nz,
divvel2 = div * div / (dx * dx)
curlvel2 = 2 / (dx*dx) * (dvx*dvx + dvy*dvy + dvz*dvz
& - dvy*dvz - dvx*dvz - dvy*dvx)
alpha = betaprime * (divvel2+curlvel2) / (GravConst*d(i,j,k))
alpha = betaprime * (divvel2+curlvel2)
& / (GravConst*d(i,j,k))
if (alpha .ge. 1) goto 10
endif
c
Expand Down

0 comments on commit 50ee320

Please sign in to comment.