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

Commit

Permalink
Added back the interfaces for the tide subroutines
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Nov 4, 2022
1 parent 346f4a5 commit a0eb0cc
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/modules/swiftest_classes.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1110,19 +1110,19 @@ module subroutine setup_tp(self, n, param)
end subroutine setup_tp

! TODO: Implement the tides model
! module subroutine tides_kick_getacch_pl(self, system)
! implicit none
! class(swiftest_pl), intent(inout) :: self !! Swiftest massive body object
! class(swiftest_nbody_system), intent(inout) :: system !! Swiftest nbody system object
! end subroutine tides_kick_getacch_pl

! module subroutine tides_step_spin_system(self, param, t, dt)
! implicit none
! class(swiftest_nbody_system), intent(inout) :: self !! Swiftest nbody system object
! class(swiftest_parameters), intent(in) :: param !! Current run configuration parameters
! real(DP), intent(in) :: t !! Simulation time
! real(DP), intent(in) :: dt !! Current stepsize
! end subroutine tides_step_spin_system
module subroutine tides_kick_getacch_pl(self, system)
implicit none
class(swiftest_pl), intent(inout) :: self !! Swiftest massive body object
class(swiftest_nbody_system), intent(inout) :: system !! Swiftest nbody system object
end subroutine tides_kick_getacch_pl

module subroutine tides_step_spin_system(self, param, t, dt)
implicit none
class(swiftest_nbody_system), intent(inout) :: self !! Swiftest nbody system object
class(swiftest_parameters), intent(in) :: param !! Current run configuration parameters
real(DP), intent(in) :: t !! Simulation time
real(DP), intent(in) :: dt !! Current stepsize
end subroutine tides_step_spin_system

module subroutine user_kick_getacch_body(self, system, param, t, lbeg)
implicit none
Expand Down

0 comments on commit a0eb0cc

Please sign in to comment.