get_daccel_dt Subroutine

public subroutine get_daccel_dt(this, daccel_dt)

Routine that gets the coordinate time derivative of the 4-acceleration.

Arguments

Type IntentOptional AttributesName
class(self_force), intent(inout) :: this

The routine is called on this self_force object.

real(kind=wp), intent(out), dimension(4):: daccel_dt

On return this 1d array contains the 4 components of the time derivative of the 4-acceleration, .


Contents

Source Code


Source Code

  subroutine get_daccel_dt ( this, daccel_dt )
  !! Routine that gets the coordinate time derivative of the 4-acceleration.

    implicit none

    class(self_force), intent(inout) :: this
    !! The routine is called on this [[self_force]] object.
    real(wp), dimension(4), intent(out) :: daccel_dt
    !! On return this 1d array contains the 4 components of the time derivative
    !! of the 4-acceleration,
    !! \((\dot{a}^t,\dot{a}^r,\dot{a}^{\theta},\dot{a}^{\phi})\).

    daccel_dt = this%da_dt

  end subroutine get_daccel_dt