symba5.inc 864 B

1234567891011121314151617181920212223242526272829
  1. c*************************************************************************
  2. c SYMBA5.INC
  3. c*************************************************************************
  4. C Include file for the SyMBA subroutines
  5. c
  6. c Remarks: copied from symba.inc
  7. c Author: Hal Levison
  8. c Date: 3/20/97
  9. c Last revision:
  10. c... Maximum number of encounters
  11. integer NENMAX
  12. c parameter(NENMAX=NTPMAX*100) ! Must be less than 32767
  13. parameter(NENMAX=32767) ! Must be less than 32767
  14. c... scale factor for hill's sphere to take shorter time step
  15. real*8 RHSCALE
  16. parameter (RHSCALE=6.5)
  17. c... Ratio of shell radii squared
  18. real*8 RSHELL
  19. parameter (RSHELL = 0.48075d0) ! should be someting faster than RSHELL ~ NTENC^(-2/3)
  20. c.. ratio of the number of time steps in the adjoining shells
  21. integer NTENC
  22. parameter (NTENC=4)