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

Commit

Permalink
Increased stretching factor for hit and run fragment cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Feb 21, 2023
1 parent abc674a commit 49c9a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fraggle/fraggle_generate.f90
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ module subroutine fraggle_generate_pos_vec(collider, nbody_system, param, lfailu

! Stretch out the hit and run cloud along the flight trajectory
if (lhitandrun) then
fragments%rc(:,i) = fragments%rc(:,i) * (1.0_DP + fragment_cloud_radius(j) * mass_rscale(i) * impactors%bounce_unit(:))
fragments%rc(:,i) = fragments%rc(:,i) * (1.0_DP + 2 * fragment_cloud_radius(j) * mass_rscale(i) * impactors%bounce_unit(:))
end if

fragments%rc(:,i) = fragments%rc(:,i) + fragment_cloud_center(:,j)
Expand Down

0 comments on commit 49c9a72

Please sign in to comment.