Skip to content

Commit

Permalink
fix docstrings in radial_derivative_even
Browse files Browse the repository at this point in the history
  • Loading branch information
tgastine committed Sep 11, 2024
1 parent a926977 commit 7845f78
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/radial_derivatives_even.f90
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ subroutine get_ddr_even(f,df,ddf,n_f_max,n_f_start,n_f_stop, &
& n_r_max,n_cheb_max,dr_fac,work1,work2, &
& chebt_odd, chebt_even)
!
! Returns first rarial derivative df and second radial
! Returns first radial derivative df and second radial
! derivative ddf of the input function f.
! Array f(n_f_max,*) may contain several functions numbered by
! the first index. The subroutine calculates the derivaties of
! the first index. The subroutine calculates the derivatives of
! the functions f(n_f_start,*) to f(n_f_stop) by transforming
! to a Chebychev representation using n_r_max radial grid points.
! The cheb transforms have to be initialized by calling
Expand Down Expand Up @@ -73,10 +73,9 @@ subroutine get_drNS_even(f,df,n_f_max,n_f_start,n_f_stop, &
& n_r_max,n_cheb_max,dr_fac,work1, &
& chebt_odd, chebt_even)
!
! Returns first rarial derivative df and second radial
! derivative ddf of the input function f.
! Returns first rarial derivative df.
! Array f(n_f_max,*) may contain several functions numbered by
! the first index. The subroutine calculates the derivaties of
! the first index. The subroutine calculates the derivative of
! the functions f(n_f_start,*) to f(n_f_stop) by transforming
! to a Chebychev representation using n_r_max radial grid points.
! The cheb transforms have to be initialized by calling
Expand Down Expand Up @@ -116,10 +115,10 @@ subroutine get_ddrNS_even(f,df,ddf,n_f_max,n_f_start,n_f_stop, &
& n_r_max,n_cheb_max,dr_fac,work1, &
& chebt_odd, chebt_even)
!
! Returns first rarial derivative df and second radial
! Returns first radial derivative df and second radial
! derivative ddf of the input function f.
! Array f(n_f_max,*) may contain several functions numbered by
! the first index. The subroutine calculates the derivaties of
! the first index. The subroutine calculates the derivatives of
! the functions f(n_f_start,*) to f(n_f_stop) by transforming
! to a Chebychev representation using n_r_max radial grid points.
! The cheb transforms have to be initialized by calling
Expand Down

0 comments on commit 7845f78

Please sign in to comment.