The Elk Code
k_tfsc.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2025 J. K. Dewhurst and S. Sharma.
3 ! This file is distributed under the terms of the GNU General Public License.
4 ! See the file COPYING for license details.
5 
6 subroutine k_tfsc(n,rho,tau,dtdr)
7 implicit none
8 ! arguments
9 integer, intent(in) :: n
10 real(8), intent(in) :: rho(n),tau(n)
11 real(8), intent(out) :: dtdr(n)
12 ! local variables
13 integer i
14 do i=1,n
15  call k_tfsc1(rho(i),tau(i),dtdr(i))
16 end do
17 end subroutine
18 
elemental subroutine k_tfsc1(rho, tau, dtdr)
Definition: k_tfsc1.f90:7
subroutine k_tfsc(n, rho, tau, dtdr)
Definition: k_tfsc.f90:7