The Elk Code
 
Loading...
Searching...
No Matches
putevaluv.f90
Go to the documentation of this file.
1
2! Copyright (C) 2019 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
6subroutine putevaluv(ik,evaluvp)
7use modmain
8implicit none
9! arguments
10integer, intent(in) :: ik
11real(8), intent(in) :: evaluvp(nstsv)
12! local variables
13integer recl
14! find the record length
15inquire(iolength=recl) vkl(:,ik),nstsv,evaluvp
16!$OMP CRITICAL(u320)
17open(320,file='EVALUV.OUT',form='UNFORMATTED',access='DIRECT',recl=recl)
18write(320,rec=ik) vkl(:,ik),nstsv,evaluvp
19close(320)
20!$OMP END CRITICAL(u320)
21end subroutine
22
real(8), dimension(:,:), allocatable vkl
Definition modmain.f90:471
subroutine putevaluv(ik, evaluvp)
Definition putevaluv.f90:7