skeel.inc 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. c*************************************************************************
  2. c SKEEL.INC
  3. c*************************************************************************
  4. C Include file for the Skeel subroutines
  5. c
  6. c Author: Hal Levison
  7. c Date: 9/23/96
  8. c Last revision:
  9. c... scale factor for hill's sphere to take shorter time step
  10. real*8 RHSCALE
  11. c parameter (RHSCALE=3.5)
  12. parameter (RHSCALE=6.5)
  13. c.. ratio of the number of time steps in the adjoining shells
  14. integer NTENC
  15. parameter (NTENC=3)
  16. c... Ratio of shell radii squared
  17. real*8 RSHELL
  18. parameter (RSHELL = 0.48075d0) ! RSHELL ~ NTENC^(-2/3)
  19. c parameter (RSHELL = 0.57735d0) ! RSHELL ~ NTENC^(-1/2)
  20. c... This is for the peri stuff. We consider a 2-body orbit good if the
  21. c... closest peri passage is within FACQDT*dt
  22. real*8 FACQDT
  23. parameter (FACQDT = 2.0d0)
  24. c... Flag that communicates that the peri fit was not good
  25. c... We check that this is .gt. 0. So this must be less than 0.
  26. real*8 QFLG
  27. parameter (QFLG = -1.0d0)