Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
evbauer committed Jun 16, 2023
1 parent 22f2afd commit 6642f4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion star/private/hydro_vars.f90
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ subroutine set_hydro_vars( &

end if

if (.not. skip_brunt) then
if (.not. skip_brunt) then ! skip_brunt during solver iterations
if (dbg) write(*,*) 'call do_brunt_N2'
call do_brunt_N2(s, nzlo, nzhi, ierr)
if (failed('do_brunt_N2')) return
Expand Down
2 changes: 1 addition & 1 deletion star/private/solver_support.f90
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ subroutine set_vars_for_solver(s, nvar, nzlo, nzhi, dt, ierr)
skip_grads = .true., &
skip_rotation = .true., &
skip_m_grav_and_grav = .true., &
skip_brunt = .false., & ! .true., & ! EXPERIMENTAL: tesing not skipping brunt updates during solver iterations
skip_brunt = .true., &
skip_mixing_info = .true., &
skip_set_cz_bdy_mass = .true., &
skip_other_cgrav = .true.
Expand Down

0 comments on commit 6642f4d

Please sign in to comment.