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

Commit

Permalink
changed to barycentric velocity in encounter output
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Dec 5, 2022
1 parent 73b72c8 commit ae92326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symba/symba_util.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1356,7 +1356,7 @@ module subroutine symba_util_take_encounter_snapshot(self, param, t)
allocate(snapshot%pl%vh(NDIM,npl_snap))
do i = 1, NDIM
snapshot%pl%rh(i,:) = pack(pl%rh(i,1:npl), pl%lmask(1:npl))
snapshot%pl%vh(i,:) = pack(pl%vh(i,1:npl), pl%lmask(1:npl))
snapshot%pl%vh(i,:) = pack(pl%vb(i,1:npl), pl%lmask(1:npl))
end do
if (param%lclose) then
allocate(snapshot%pl%radius(npl_snap))
Expand Down

0 comments on commit ae92326

Please sign in to comment.