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

Commit

Permalink
Reduced radial minimization tolerance to try to get a higher success …
Browse files Browse the repository at this point in the history
…rate
  • Loading branch information
daminton committed May 28, 2021
1 parent 7711ceb commit 92b28dc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/symba/symba_frag_pos.f90
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ subroutine set_fragment_radial_velocities(lerr)
! Arguments
logical, intent(out) :: lerr
! Internals
real(DP), parameter :: TOL = 1e-9_DP
real(DP), parameter :: TOL = 1e-6_DP
integer(I4B) :: i
real(DP), dimension(:), allocatable :: v_r_initial, v_r_sigma
real(DP), dimension(:,:), allocatable :: v_r
Expand Down Expand Up @@ -754,7 +754,6 @@ function radial_objective_function(v_r_mag_input) result(fval)
!! Minimizing this brings us closer to our objective
! Internals
integer(I4B) :: i
real(DP), dimension(NDIM) :: L
real(DP), dimension(:,:), allocatable :: v_shift

allocate(v_shift, mold=vb_frag)
Expand Down

0 comments on commit 92b28dc

Please sign in to comment.