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

Commit

Permalink
Fixed array range error
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed May 12, 2021
1 parent 7dc288a commit 68ec11c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symba/symba_frag_pos.f90
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ function symba_frag_pos_fragment_velocity(nfrag, m_frag, x_frag, v_r_unit, Lambd
exit
else
v_r_mag_01(:) = v_r_mag_02(:)
v_r_mag_02(:) = v_r_mag(:)
v_r_mag_02(:) = v_r_mag(1:4)
end if
end do

Expand Down

0 comments on commit 68ec11c

Please sign in to comment.