Module that contains dcdreader class.
More...
|
subroutine | dcdfile_open (this, filename) |
| Opens file to read from. More...
|
|
subroutine | dcdfile_read_header (this, nframes, istart, nevery, iend, timestep, natoms) |
| Reads header of open DCD file. More...
|
|
subroutine | dcdfile_close (this) |
| Closes DCD file. More...
|
|
subroutine | dcdfile_read_next (this, xyz, box) |
| Reads next frame into memory. More...
|
|
subroutine | dcdfile_skip_next (this, n) |
| Skips reading this frame into memory. More...
|
|
Module that contains dcdreader class.
◆ dcdfile_close()
subroutine dcdfort_reader::dcdfile_close |
( |
class(dcdfile), intent(inout) |
this | ) |
|
|
private |
Closes DCD file.
- Parameters
-
[in,out] | this | dcdreader object |
195 class(dcdfile),
intent(inout) :: this
197 deallocate(this%titles)
◆ dcdfile_open()
subroutine dcdfort_reader::dcdfile_open |
( |
class(dcdfile), intent(inout) |
this, |
|
|
character(len=*), intent(in) |
filename |
|
) |
| |
Opens file to read from.
Also detects if the DCD file is compatible with this library and swaps endinness if necessary.
- Parameters
-
[in,out] | this | dcdreader object |
[in] | filename | name of of DCD file to read from |
61 character(len=*),
parameter :: magic_string =
"CORD" 62 integer(int32),
parameter :: magic_number = 84
63 character(len=*),
intent(in) :: filename
64 class(dcdfile),
intent(inout) :: this
65 integer(kind=int32) :: line1, charmm_version, has_extra_block, four_dimensions
66 character(len=4) :: line2
70 inquire(file=trim(filename), exist=ex, size=this%filesize)
71 if (ex .eqv. .false.)
then 72 call error_stop_program(
"The specified DCD file '"//trim(filename)//
"' does not exist.")
76 open(newunit=this%u, file=trim(filename), form=
"unformatted", access=
"stream", status=
"old")
79 read(this%u,pos=1) line1
83 if (line1 .ne. magic_number .or. line2 .ne. magic_string)
then 87 open(newunit=this%u, file=trim(filename), form=
"unformatted", access=
"stream", status=
"old", convert=
"swap")
89 read(this%u,pos=1) line2
93 if (line1 .ne. magic_number .or. line2 .ne. magic_string)
then 94 call error_stop_program(
"This DCD file format is not supported, or the file header is corrupt.")
100 read(this%u, pos=85) charmm_version
101 if (charmm_version .eq. 0)
then 102 call error_stop_program(
"DCD file indicates it is not CHARMM. Only CHARMM-style DCD files are supported.")
106 read(this%u, pos=49) has_extra_block
107 if (has_extra_block .ne. 1)
then 108 call error_stop_program(
"DCD file indicates it does not have unit cell information. Only DCD files with& 109 & unit cell information are supported.")
113 read(this%u) four_dimensions
114 if (four_dimensions .eq. 1)
then 115 call error_stop_program(
"DCD file indicates it has four dimensions. Only DCD files with three dimensions&
◆ dcdfile_read_header()
subroutine dcdfort_reader::dcdfile_read_header |
( |
class(dcdfile), intent(inout) |
this, |
|
|
integer(kind=int32), intent(out) |
nframes, |
|
|
integer(kind=int32), intent(out) |
istart, |
|
|
integer(kind=int32), intent(out) |
nevery, |
|
|
integer(kind=int32), intent(out) |
iend, |
|
|
real(kind=real32), intent(out) |
timestep, |
|
|
integer(kind=int32), intent(out) |
natoms |
|
) |
| |
|
private |
Reads header of open DCD file.
Should be called after open()
- Parameters
-
[in,out] | this | dcdreader object |
[in] | nframes | rnumber of frames (snapshots) in file |
[out] | istart | first timestep of trajectory file |
[out] | nevery | how often (in timesteps) file was written to |
[out] | iend | last timestep of trajectory file |
[out] | timestep | timestep of simulation |
[out] | natoms | number of atoms in each snapshot |
134 integer(kind=int32),
intent(out) :: nframes, istart, nevery, iend, natoms
135 integer(kind=int32) :: i, ntitle, n, dummy, pos
136 integer(kind=int64) :: nframes2
137 character(len=80) :: title_string
138 real(kind=real32),
intent(out) :: timestep
139 class(dcdfile),
intent(inout) :: this
141 read(this%u, pos=9) nframes, istart, nevery, iend
143 read(this%u, pos=45) timestep
145 read(this%u, pos=97) ntitle
147 write(error_unit,
'(a)') prompt//
"The following titles were found:" 149 allocate(this%titles(ntitle))
151 read(this%u) title_string
154 do while (n .le. 80 .and. title_string(n:n) .ne. c_null_char)
158 this%titles(i) = trim(title_string(1:n-1))
159 write(error_unit,
'(a)') prompt//
" "//this%titles(i)
162 read(this%u) dummy, dummy
163 if (dummy .ne. 4)
then 164 call error_stop_program(
"This DCD file format is not supported, or the file header is corrupt.")
168 read(this%u) natoms, dummy
169 if (dummy .ne. 4)
then 170 call error_stop_program(
"This DCD file format is not supported, or the file header is corrupt.")
173 inquire(unit=this%u, pos=pos)
179 this%framesize = natoms*12 + 80
181 nframes2 = (this%filesize-pos)/this%framesize
182 if ( nframes2 .ne. nframes)
then 183 write(error_unit,
'(a,i0,a,i0,a)') prompt//
"WARNING: Header indicates ", nframes, &
184 &
" frames, but file size indicates ", nframes2,
"." 185 nframes = int(nframes2)
◆ dcdfile_read_next()
subroutine dcdfort_reader::dcdfile_read_next |
( |
class(dcdfile), intent(inout) |
this, |
|
|
real(kind=real32), dimension(:,:), intent(inout), allocatable |
xyz, |
|
|
real(kind=real64), dimension(6), intent(inout) |
box |
|
) |
| |
|
private |
Reads next frame into memory.
- Parameters
-
[in,out] | this | dcdreader object |
[in,out] | xyz | coordinates of all atoms in snapshot. First dimension is atom number, second dimension is x, y, or z !coordinate. |
[in,out] | box | dimensions of snapshot. Array containing 6 elements, ordered as A, B, C, alpha, beta, gamma. A = length of unit cell vector along x-axis; B = length of unit cell vector in xy-plane; C = length of unit cell vector in yz-plane; alpha = cosine of angle between B and C; beta = cosine of angle between A and C; gamma = cosine of angle between A and B; |
217 real(kind=real32),
allocatable,
intent(inout) :: xyz(:,:)
218 real(kind=real64),
intent(inout) :: box(6)
219 integer(kind=int32) :: dummy(6), nbytes, ndims, i
220 class(dcdfile),
intent(inout) :: this
222 nbytes =
size(xyz,1)*4
226 call error_stop_program(
"Number of dimensions of xyz array is incorrect.")
229 read(this%u) dummy(1)
230 if (dummy(1) /= 48)
then 231 call error_stop_program(
"Problem reading in DCD snapshot.")
235 read(this%u) box(1), box(6), box(2), box(5), box(4), box(3)
236 if (box(1) < 0 .or. box(2) < 0 .or. box(3) < 0)
then 237 call error_stop_program(
"Problem reading in DCD snapshot box dimensions.")
241 read(this%u) dummy(1:2), xyz(:,1), dummy(3:4), xyz(:,2), dummy(5:6), xyz(:,3)
243 if (dummy(1) /= 48)
then 244 call error_stop_program(
"Problem reading in DCD snapshot coordinates.")
248 if (dummy(i) /= nbytes)
then 249 call error_stop_program(
"Number of bytes in DCD snapshot is incorrect for size of xyz array passed.")
253 read(this%u) dummy(1)
254 if (dummy(1) .ne. nbytes)
then 255 call error_stop_program(
"Problem reading in DCD snapshot.")
◆ dcdfile_skip_next()
subroutine dcdfort_reader::dcdfile_skip_next |
( |
class(dcdfile), intent(inout) |
this, |
|
|
integer(kind=int32), intent(in), optional |
n |
|
) |
| |
|
private |
Skips reading this frame into memory.
- Parameters
-
[in,out] | this | dcdreader object |
[in] | n | number of frames to skip |
266 integer(kind=int32) :: dummy
267 integer(kind=int64) :: pos, newpos
268 integer(kind=int32),
intent(in),
optional :: n
269 class(dcdfile),
intent(inout) :: this
272 inquire(unit=this%u, pos=pos)
275 if (.not.
present(n))
then 276 newpos = pos + this%framesize - 4
278 newpos = pos + this%framesize*n - 4
281 read(this%u, pos=newpos) dummy