52 logical,
public :: has_phase
79 subroutine wfs_elec_clone_to(this, dest, pack, copy_data, new_np, special, dest_type)
80 class(wfs_elec_t),
intent(in) :: this
81 class(batch_t),
allocatable,
intent(out) :: dest
82 logical,
optional,
intent(in) :: pack
83 logical,
optional,
intent(in) :: copy_data
84 integer,
optional,
intent(in) :: new_np
85 logical,
optional,
intent(in) :: special
87 type(type_t),
optional,
intent(in) :: dest_type
95 call this%copy_to(dest, pack, copy_data, new_np, special, dest_type)
97 message(1) =
"Internal error: imcompatible batches in wfs_elec_clone_to."
106 class(wfs_elec_t),
intent(in) :: this
107 class(batch_t),
allocatable,
intent(out) :: dest(:)
108 integer,
intent(in) :: n_batches
109 logical,
optional,
intent(in) :: pack
110 logical,
optional,
intent(in) :: copy_data
111 integer,
optional,
intent(in) :: new_np
112 logical,
optional,
intent(in) :: special
114 type(type_t),
optional,
intent(in) :: dest_type
120 assert(n_batches > 0)
122 safe_allocate_type_array(
wfs_elec_t, dest, (1:n_batches))
127 call this%copy_to(dest(ib), pack, copy_data, new_np, special, dest_type)
130 message(1) =
"Internal error: incompatible batches in wfs_elec_clone_to_array."
139 subroutine wfs_elec_copy_to(this, dest, pack, copy_data, new_np, special, dest_type)
140 class(wfs_elec_t),
intent(in) :: this
141 class(batch_t),
intent(out) :: dest
142 logical,
optional,
intent(in) :: pack
143 logical,
optional,
intent(in) :: copy_data
144 integer,
optional,
intent(in) :: new_np
145 logical,
optional,
intent(in) :: special
146 type(
type_t),
optional,
intent(in) :: dest_type
153 dest%has_phase = this%has_phase
154 call this%batch_t%copy_to(dest%batch_t, pack, copy_data, new_np, special=special, dest_type=dest_type)
156 message(1) =
"Internal error: incompatible batches in wfs_elec_copy_to."
165 class(wfs_elec_t),
intent(in) :: this
166 integer,
intent(in) :: np
167 class(batch_t),
intent(inout) :: dest
168 logical,
optional,
intent(in) :: async
175 dest%has_phase = this%has_phase
176 call this%batch_t%copy_data_to(np, dest%batch_t, async)
178 message(1) =
"Internal error: incompatible batches in wfs_elec_copy_data_to."
192 class(
batch_t),
intent(in) :: target
193 logical,
optional,
intent(in) :: only_check_dim
194 logical,
optional,
intent(in) :: type_check
200 assert(this%ik ==
target%ik)
201 assert(this%has_phase .eqv.
target%has_phase)
203 message(1) =
"Internal error: imcompatible batches in wfs_elec_check_compatibility_with."
206 call this%batch_t%check_compatibility_with(
target, only_check_dim, type_check)
216 logical,
optional,
intent(in) :: copy
221 this%has_phase = .false.
222 call this%batch_t%end(copy)
229#include "wfs_elec_inc.F90"
232#include "complex.F90"
233#include "wfs_elec_inc.F90"
This module implements batches of mesh functions.
character(len=256), dimension(max_lines), public message
to be output by fatal, warning
subroutine, public messages_fatal(no_lines, only_root_writes, namespace)
subroutine, public zwfs_elec_init(this, dim, st_start, st_end, np, ik, special, packed)
initialize an empty wfs_elec_t object
subroutine wfs_elec_clone_to(this, dest, pack, copy_data, new_np, special, dest_type)
clone to another wfs_elec_t object
subroutine dwfs_elec_init_with_memory_3(this, dim, st_start, st_end, psi, ik)
initialize a wfs_elec_t object with given memory
subroutine wfs_elec_clone_to_array(this, dest, n_batches, pack, copy_data, new_np, special, dest_type)
Clone the data to multiple wfs_elec_t objects.
subroutine zwfs_elec_init_with_memory_2(this, dim, st_start, st_end, psi, ik)
initialize a wfs_elec_t object with given memory
subroutine dwfs_elec_init_with_memory_2(this, dim, st_start, st_end, psi, ik)
initialize a wfs_elec_t object with given memory
subroutine wfs_elec_copy_to(this, dest, pack, copy_data, new_np, special, dest_type)
copy a contained batch to another (existing) wfs_elec_t object
subroutine wfs_elec_copy_data_to(this, np, dest, async)
copy the data of the contained batch to another (existing) wfs_elec_t object
subroutine, public dwfs_elec_init(this, dim, st_start, st_end, np, ik, special, packed)
initialize an empty wfs_elec_t object
subroutine wfs_elec_end(this, copy)
finalze the object and the contained batch
subroutine wfs_elec_check_compatibility_with(this, target, only_check_dim, type_check)
check whether the object is compatible with a target object
subroutine zwfs_elec_init_with_memory_3(this, dim, st_start, st_end, psi, ik)
initialize a wfs_elec_t object with given memory
Class defining batches of mesh functions.
batches of electronic states