Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Fixed more encounter level depth index values
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Aug 18, 2021
1 parent 5d85880 commit b63c173
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/symba/symba_step.f90
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module subroutine symba_step_system(self, param, t, dt)
pl%lfirst = .true.
tp%lfirst = .true.
else
self%irec = -1
call helio_step_system(self, param, t, dt)
end if
end select
Expand Down Expand Up @@ -253,8 +254,8 @@ module subroutine symba_step_reset_system(self, param)

if (tp%nbody > 0) then
tp%nplenc(:) = 0
tp%levelg(:) = 0
tp%levelm(:) = 0
tp%levelg(:) = -1
tp%levelm(:) = -1
system%pltpenc_list%nenc = 0
end if

Expand Down

0 comments on commit b63c173

Please sign in to comment.