Module that contains dcdwriter class.
More...
Module that contains dcdwriter class.
◆ dcdwriter_close()
subroutine dcdfort_writer::dcdwriter_close |
( |
class(dcdwriter), intent(inout) |
this | ) |
|
|
private |
Closes DCD file.
- Parameters
-
[in,out] | this | dcdwriter object |
154 class(dcdwriter),
intent(inout) :: this
◆ dcdwriter_open()
subroutine dcdfort_writer::dcdwriter_open |
( |
class(dcdwriter), intent(inout) |
this, |
|
|
character (len=*), intent(in) |
filename |
|
) |
| |
Opens new file to write to.
- Parameters
-
[in,out] | this | dcdwriter object |
[in] | filename | name of new DCD file to write to |
60 character (len=*),
intent(in) :: filename
61 class(dcdwriter),
intent(inout) :: this
63 open(newunit=this%u, file=trim(filename), form=
"unformatted", access=
"stream", status=
"replace")
◆ dcdwriter_write_header()
subroutine dcdfort_writer::dcdwriter_write_header |
( |
class(dcdwriter), intent(inout) |
this, |
|
|
integer(kind=int32), intent(in) |
istart, |
|
|
integer(kind=int32), intent(in) |
nevery, |
|
|
real(kind=real32), intent(in) |
timestep, |
|
|
integer(kind=int32), intent(in) |
natoms |
|
) |
| |
|
private |
Writes header to new DCD file.
- Parameters
-
[in,out] | this | dcdwriter object |
[in] | istart | first timestep in file |
[in] | nevery | how often snapshots written (in timesteps) |
[in] | timestep | simulation timestep |
[in] | natoms | number of atoms in each snapshot |
77 integer(kind=int32) :: i
78 integer(kind=int32),
intent(in) :: istart, nevery, natoms
79 real(kind=real32),
intent(in) :: timestep
80 class(dcdwriter),
intent(inout) :: this
81 character (len=79) :: remarks1, remarks2
82 character (len=8) :: date
83 character (len=10) :: time
89 call date_and_time(date=date,time=time)
90 remarks1 =
"Created by libdcdfort" 91 remarks2 =
"REMARK Created on "//date//
" "//time
100 inquire(unit=this%u, pos=this%nframes_pos)
102 write(this%u) this%nframes
110 inquire(unit=this%u, pos=this%iend_pos)
112 write(this%u) this%iend
119 write(this%u) timestep
134 write(this%u) remarks1//c_null_char
135 write(this%u) remarks2//c_null_char
◆ dcdwriter_write_next()
subroutine dcdfort_writer::dcdwriter_write_next |
( |
class(dcdwriter), intent(inout) |
this, |
|
|
real(kind=real32), dimension(:,:), intent(in) |
xyz, |
|
|
real(kind=real64), dimension(6), intent(in) |
box_in |
|
) |
| |
|
private |
Writes snapshot to an open DCD file.
Writes a new snapshot to a DCD file. Header should have already been written.
- Parameters
-
[in,out] | this | dcdwriter object |
[in] | xyz | coordinates of all atoms in this snapshot |
[in] | box_in | box dimensions for this snapshot |
168 real(kind=real32),
intent(in) :: xyz(:,:)
169 real(kind=real64),
intent(in) :: box_in(6)
170 real(kind=real64) :: box(6)
171 class(dcdwriter),
intent(inout) :: this
172 integer(kind=int32) :: coord_size
174 coord_size =
size(xyz,1)*4
188 write(this%u) coord_size
190 write(this%u) xyz(:,1)
192 write(this%u) coord_size
193 write(this%u) coord_size
195 write(this%u) xyz(:,2)
197 write(this%u) coord_size
198 write(this%u) coord_size
200 write(this%u) xyz(:,3)
202 write(this%u) coord_size
204 inquire(unit=this%u, pos=this%curr_pos)
206 this%nframes = this%nframes+1
207 this%iend = this%iend + this%nevery
210 write(this%u, pos=this%nframes_pos) this%nframes
211 write(this%u, pos=this%iend_pos) this%iend
212 write(this%u, pos=this%curr_pos)