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
6
subroutine
putevaluv
(ik,evaluvp)
7
use
modmain
8
implicit none
9
! arguments
10
integer
,
intent(in)
:: ik
11
real
(8),
intent(in)
:: evaluvp(nstsv)
12
! local variables
13
integer
recl
14
! find the record length
15
inquire
(iolength=recl)
vkl
(:,ik),nstsv,evaluvp
16
!$OMP CRITICAL(u320)
17
open
(320,file=
'EVALUV.OUT'
,form=
'UNFORMATTED'
,access=
'DIRECT'
,recl=recl)
18
write
(320,rec=ik)
vkl
(:,ik),nstsv,evaluvp
19
close
(320)
20
!$OMP END CRITICAL(u320)
21
end subroutine
22
modmain
Definition
modmain.f90:6
modmain::vkl
real(8), dimension(:,:), allocatable vkl
Definition
modmain.f90:471
putevaluv
subroutine putevaluv(ik, evaluvp)
Definition
putevaluv.f90:7
putevaluv.f90
Generated by
1.9.8