24 dbcsr_type_no_symmetry
48#include "./base/base_uses.f90"
56 CHARACTER(len=*),
PARAMETER,
PRIVATE :: moduleN =
'rt_propagation_forces'
73 CHARACTER(LEN=*),
PARAMETER :: routinen =
'calc_c_mat_force'
74 REAL(kind=
dp),
PARAMETER ::
one = 1.0_dp,
zero = 0.0_dp
76 INTEGER :: handle, i, im, ispin, re
77 INTEGER,
ALLOCATABLE,
DIMENSION(:) :: atom_of_kind, kind_of
79 TYPE(
dbcsr_p_type),
DIMENSION(:),
POINTER :: c_mat, rho_ao, rho_ao_im, rho_new, &
80 s_der, sinvb, sinvh, sinvh_imag
89 CALL timeset(routinen, handle)
90 NULLIFY (rtp, particle_set, atomic_kind_set, dft_control)
95 particle_set=particle_set, &
96 atomic_kind_set=atomic_kind_set, &
98 dft_control=dft_control)
100 rtp_control => dft_control%rtp_control
101 CALL get_rtp(rtp=rtp, c_mat=c_mat, s_der=s_der, s_inv=s_inv, &
102 sinvh=sinvh, sinvb=sinvb)
104 CALL get_atomic_kind_set(atomic_kind_set=atomic_kind_set, atom_of_kind=atom_of_kind, kind_of=kind_of)
110 IF (rtp%linear_scaling)
THEN
111 CALL get_rtp(rtp=rtp, rho_new=rho_new)
113 CALL qs_rho_get(rho_struct=rho, rho_ao=rho_ao, rho_ao_im=rho_ao_im)
117 IF (rtp%propagate_complex_ks)
CALL get_rtp(rtp=rtp, sinvh_imag=sinvh_imag)
119 DO ispin = 1,
SIZE(sinvh)
122 IF (rtp%linear_scaling)
THEN
124 filter_eps=rtp%filter_eps)
125 IF (rtp%propagate_complex_ks)
THEN
127 filter_eps=rtp%filter_eps)
130 filter_eps=rtp%filter_eps)
131 CALL compute_forces(force, tmp, s_der, rho_new(im)%matrix, c_mat, kind_of, atom_of_kind)
134 IF (rtp%propagate_complex_ks)
THEN
138 CALL compute_forces(force, tmp, s_der, rho_ao_im(ispin)%matrix, c_mat, kind_of, atom_of_kind)
143 DO i = 1,
SIZE(force)
144 force(i)%ehrenfest(:, :) = -force(i)%ehrenfest(:, :)
149 CALL timestop(handle)
163 SUBROUTINE compute_forces(force, tmp, S_der, rho_im, C_mat, kind_of, atom_of_kind)
169 INTEGER,
ALLOCATABLE,
DIMENSION(:) :: kind_of, atom_of_kind
171 INTEGER :: col_atom, i, ikind, kind_atom, row_atom
173 REAL(
dp),
DIMENSION(:, :),
POINTER :: block_values, block_values2
183 CALL dbcsr_get_block_p(s_der(i)%matrix, row_atom, col_atom, block_values2, found=found)
185 ikind = kind_of(col_atom)
186 kind_atom = atom_of_kind(col_atom)
189 force(ikind)%ehrenfest(i, kind_atom) = force(ikind)%ehrenfest(i, kind_atom) + &
190 2.0_dp*sum(block_values*block_values2)
200 CALL dbcsr_get_block_p(c_mat(i)%matrix, row_atom, col_atom, block_values2, found=found)
202 ikind = kind_of(col_atom)
203 kind_atom = atom_of_kind(col_atom)
206 force(ikind)%ehrenfest(i, kind_atom) = force(ikind)%ehrenfest(i, kind_atom) + &
207 2.0_dp*sum(block_values*block_values2)
213 END SUBROUTINE compute_forces
223 TYPE(
cp_fm_type),
DIMENSION(:),
POINTER :: mos, mos_admm
224 TYPE(
dbcsr_p_type),
DIMENSION(:),
POINTER :: ks_aux_im, ks_aux_re, matrix_s_aux_fit, &
225 matrix_s_aux_fit_vs_orb
231 CALL get_admm_env(admm_env, matrix_ks_aux_fit=ks_aux_re, &
232 matrix_ks_aux_fit_im=ks_aux_im, &
233 matrix_s_aux_fit=matrix_s_aux_fit, &
234 matrix_s_aux_fit_vs_orb=matrix_s_aux_fit_vs_orb)
236 CALL get_rtp(rtp=rtp, mos_new=mos, admm_mos=mos_admm)
239 CALL rt_admm_forces_none(qs_env, admm_env, ks_aux_re, ks_aux_im, &
240 matrix_s_aux_fit, matrix_s_aux_fit_vs_orb, mos_admm, mos)
255 SUBROUTINE rt_admm_forces_none(qs_env, admm_env, KS_aux_re, KS_aux_im, matrix_s_aux_fit, matrix_s_aux_fit_vs_orb, mos_admm, mos)
258 TYPE(
dbcsr_p_type),
DIMENSION(:),
POINTER :: ks_aux_re, ks_aux_im, matrix_s_aux_fit, &
259 matrix_s_aux_fit_vs_orb
260 TYPE(
cp_fm_type),
DIMENSION(:),
POINTER :: mos_admm, mos
262 INTEGER :: im, ispin, jspin, nao, natom, naux, nmo, &
264 REAL(kind=
dp),
ALLOCATABLE,
DIMENSION(:, :) :: admm_force
267 TYPE(
cp_fm_type),
DIMENSION(2) :: tmp_aux_aux, tmp_aux_mo, tmp_aux_mo1, &
269 TYPE(
dbcsr_type),
POINTER :: matrix_w_q, matrix_w_s
271 POINTER :: sab_aux_fit_asymm, sab_aux_fit_vs_orb
275 NULLIFY (sab_aux_fit_asymm, sab_aux_fit_vs_orb, ks_env)
278 CALL get_admm_env(admm_env, sab_aux_fit_asymm=sab_aux_fit_asymm, &
279 sab_aux_fit_vs_orb=sab_aux_fit_vs_orb)
281 ALLOCATE (matrix_w_s)
282 CALL dbcsr_create(matrix_w_s, template=matrix_s_aux_fit(1)%matrix, &
283 name=
'W MATRIX AUX S', matrix_type=dbcsr_type_no_symmetry)
286 ALLOCATE (matrix_w_q)
287 CALL dbcsr_copy(matrix_w_q, matrix_s_aux_fit_vs_orb(1)%matrix, &
291 CALL cp_fm_create(tmp_aux_aux(jspin), admm_env%work_aux_aux%matrix_struct, name=
"taa")
292 CALL cp_fm_create(tmp_aux_nao(jspin), admm_env%work_aux_orb%matrix_struct, name=
"tao")
295 DO ispin = 1,
SIZE(ks_aux_re)
296 re = 2*ispin - 1; im = 2*ispin
297 naux = admm_env%nao_aux_fit; nmo = admm_env%nmo(ispin); nao = admm_env%nao_orb
299 mstruct => admm_env%work_aux_nmo(ispin)%matrix_struct
301 CALL cp_fm_create(tmp_aux_mo(jspin), mstruct, name=
"tam")
302 CALL cp_fm_create(tmp_aux_mo1(jspin), mstruct, name=
"tam")
312 CALL parallel_gemm(
'N',
'N', naux, nmo, naux, 1.0_dp, admm_env%S_inv, tmp_aux_mo(1), 0.0_dp, tmp_aux_mo1(1))
313 CALL parallel_gemm(
'N',
'N', naux, nmo, naux, 1.0_dp, admm_env%S_inv, tmp_aux_mo(2), 0.0_dp, tmp_aux_mo1(2))
317 CALL parallel_gemm(
"N",
"T", naux, nao, nmo, -1.0_dp, tmp_aux_mo1(1), mos(re), 0.0_dp, &
319 CALL parallel_gemm(
"N",
"T", naux, nao, nmo, -1.0_dp, tmp_aux_mo1(2), mos(im), 1.0_dp, &
321 CALL parallel_gemm(
"N",
"T", naux, nao, nmo, 1.0_dp, tmp_aux_mo1(1), mos(im), 0.0_dp, &
323 CALL parallel_gemm(
"N",
"T", naux, nao, nmo, -1.0_dp, tmp_aux_mo1(2), mos(re), 1.0_dp, &
327 CALL parallel_gemm(
'N',
'T', naux, naux, nao, -1.0_dp, tmp_aux_nao(1), admm_env%A, 0.0_dp, tmp_aux_aux(1))
328 CALL parallel_gemm(
'N',
'T', naux, naux, nao, -1.0_dp, tmp_aux_nao(2), admm_env%A, 0.0_dp, tmp_aux_aux(2))
344 ALLOCATE (admm_force(3, natom))
347 basis_type_a=
"AUX_FIT", basis_type_b=
"AUX_FIT", &
348 sab_nl=sab_aux_fit_asymm, matrix_p=matrix_w_s)
350 basis_type_a=
"AUX_FIT", basis_type_b=
"ORB", &
351 sab_nl=sab_aux_fit_vs_orb, matrix_p=matrix_w_q)
353 CALL get_qs_env(qs_env=qs_env, atomic_kind_set=atomic_kind_set, &
355 CALL add_qs_force(admm_force, force,
"overlap_admm", atomic_kind_set)
356 DEALLOCATE (admm_force)
369 END SUBROUTINE rt_admm_forces_none
Types and set/get functions for auxiliary density matrix methods.
subroutine, public get_admm_env(admm_env, mo_derivs_aux_fit, mos_aux_fit, sab_aux_fit, sab_aux_fit_asymm, sab_aux_fit_vs_orb, matrix_s_aux_fit, matrix_s_aux_fit_kp, matrix_s_aux_fit_vs_orb, matrix_s_aux_fit_vs_orb_kp, task_list_aux_fit, matrix_ks_aux_fit, matrix_ks_aux_fit_kp, matrix_ks_aux_fit_im, matrix_ks_aux_fit_dft, matrix_ks_aux_fit_hfx, matrix_ks_aux_fit_dft_kp, matrix_ks_aux_fit_hfx_kp, rho_aux_fit, rho_aux_fit_buffer, admm_dm)
Get routine for the ADMM env.
Define the atomic kind types and their sub types.
subroutine, public get_atomic_kind_set(atomic_kind_set, atom_of_kind, kind_of, natom_of_kind, maxatom, natom, nshell, fist_potential_present, shell_present, shell_adiabatic, shell_check_distance, damping_present)
Get attributes of an atomic kind set.
Defines control structures, which contain the parameters and the settings for the DFT-based calculati...
subroutine, public dbcsr_deallocate_matrix(matrix)
...
logical function, public dbcsr_iterator_blocks_left(iterator)
...
subroutine, public dbcsr_iterator_stop(iterator)
...
subroutine, public dbcsr_copy(matrix_b, matrix_a, name, keep_sparsity, keep_imaginary)
...
subroutine, public dbcsr_get_block_p(matrix, row, col, block, found, row_size, col_size)
...
subroutine, public dbcsr_multiply(transa, transb, alpha, matrix_a, matrix_b, beta, matrix_c, first_row, last_row, first_column, last_column, first_k, last_k, retain_sparsity, filter_eps, flop)
...
subroutine, public dbcsr_iterator_next_block(iterator, row, column, block, block_number_argument_has_been_removed, row_size, col_size, row_offset, col_offset, transposed)
...
subroutine, public dbcsr_iterator_start(iterator, matrix, shared, dynamic, dynamic_byrows)
...
Routines that link DBCSR and CP2K concepts together.
subroutine, public cp_dbcsr_alloc_block_from_nbl(matrix, sab_orb, desymmetrize)
allocate the blocks of a dbcsr based on the neighbor list
DBCSR operations in CP2K.
subroutine, public cp_dbcsr_sm_fm_multiply(matrix, fm_in, fm_out, ncol, alpha, beta)
multiply a dbcsr with a fm matrix
subroutine, public copy_fm_to_dbcsr(fm, matrix, keep_sparsity)
Copy a BLACS matrix to a dbcsr matrix.
represent the structure of a full matrix
represent a full matrix distributed on many processors
subroutine, public cp_fm_create(matrix, matrix_struct, name, nrow, ncol, set_zero)
creates a new full matrix with the given structure
Defines the basic variable types.
integer, parameter, public dp
Definition of mathematical constants and functions.
real(kind=dp), parameter, public one
real(kind=dp), parameter, public zero
basic linear algebra operations for full matrixes
Define the data structure for the particle information.
subroutine, public get_qs_env(qs_env, atomic_kind_set, qs_kind_set, cell, super_cell, cell_ref, use_ref_cell, kpoints, dft_control, mos, sab_orb, sab_all, qmmm, qmmm_periodic, mimic, sac_ae, sac_ppl, sac_lri, sap_ppnl, sab_vdw, sab_scp, sap_oce, sab_lrc, sab_se, sab_xtbe, sab_tbe, sab_core, sab_xb, sab_xtb_pp, sab_xtb_nonbond, sab_almo, sab_kp, sab_kp_nosym, sab_cneo, particle_set, energy, force, matrix_h, matrix_h_im, matrix_ks, matrix_ks_im, matrix_vxc, run_rtp, rtp, matrix_h_kp, matrix_h_im_kp, matrix_ks_kp, matrix_ks_im_kp, matrix_vxc_kp, kinetic_kp, matrix_s_kp, matrix_w_kp, matrix_s_ri_aux_kp, matrix_s, matrix_s_ri_aux, matrix_w, matrix_p_mp2, matrix_p_mp2_admm, rho, rho_xc, pw_env, ewald_env, ewald_pw, active_space, mpools, input, para_env, blacs_env, scf_control, rel_control, kinetic, qs_charges, vppl, xcint_weights, rho_core, rho_nlcc, rho_nlcc_g, ks_env, ks_qmmm_env, wf_history, scf_env, local_particles, local_molecules, distribution_2d, dbcsr_dist, molecule_kind_set, molecule_set, subsys, cp_subsys, oce, local_rho_set, rho_atom_set, task_list, task_list_soft, rho0_atom_set, rho0_mpole, rhoz_set, rhoz_cneo_set, ecoul_1c, rho0_s_rs, rho0_s_gs, rhoz_cneo_s_rs, rhoz_cneo_s_gs, do_kpoints, has_unit_metric, requires_mo_derivs, mo_derivs, mo_loc_history, nkind, natom, nelectron_total, nelectron_spin, efield, neighbor_list_id, linres_control, xas_env, virial, cp_ddapc_env, cp_ddapc_ewald, outer_scf_history, outer_scf_ihistory, x_data, et_coupling, dftb_potential, results, se_taper, se_store_int_env, se_nddo_mpole, se_nonbond_env, admm_env, lri_env, lri_density, exstate_env, ec_env, harris_env, dispersion_env, gcp_env, vee, rho_external, external_vxc, mask, mp2_env, bs_env, kg_env, wanniercentres, atprop, ls_scf_env, do_transport, transport_env, v_hartree_rspace, s_mstruct_changed, rho_changed, potential_changed, forces_up_to_date, mscfg_env, almo_scf_env, gradient_history, variable_history, embed_pot, spin_embed_pot, polar_env, mos_last_converged, eeq, rhs, do_rixs, tb_tblite)
Get the QUICKSTEP environment.
subroutine, public add_qs_force(force, qs_force, forcetype, atomic_kind_set)
Add force to a force_type variable.
Define the neighbor list data types and the corresponding functionality.
Calculation of overlap matrix, its derivatives and forces.
subroutine, public build_overlap_force(ks_env, force, basis_type_a, basis_type_b, sab_nl, matrix_p, matrixkp_p)
Calculation of the force contribution from an overlap matrix over Cartesian Gaussian functions.
superstucture that hold various representations of the density and keeps track of which ones are vali...
subroutine, public qs_rho_get(rho_struct, rho_ao, rho_ao_im, rho_ao_kp, rho_ao_im_kp, rho_r, drho_r, rho_g, drho_g, tau_r, tau_g, rho_r_valid, drho_r_valid, rho_g_valid, drho_g_valid, tau_r_valid, tau_g_valid, tot_rho_r, tot_rho_g, rho_r_sccs, soft_valid, complex_rho_ao)
returns info about the density described by this object. If some representation is not available an e...
subroutine, public rt_admm_force(qs_env)
...
subroutine, public calc_c_mat_force(qs_env)
calculates the three additional force contributions needed in EMD P_imag*C , P_imag*B*S^-1*S_der ,...
Types and set_get for real time propagation depending on runtype and diagonalization method different...
subroutine, public get_rtp(rtp, exp_h_old, exp_h_new, h_last_iter, rho_old, rho_next, rho_new, mos, mos_new, mos_old, mos_next, s_inv, s_half, s_minus_half, b_mat, c_mat, propagator_matrix, mixing, mixing_factor, s_der, dt, nsteps, sinvh, sinvh_imag, sinvb, admm_mos)
...
stores some data used in wavefunction fitting
Provides all information about an atomic kind.
keeps the information about the structure of a full matrix
calculation environment to calculate the ks matrix, holds all the needed vars. assumes that the core ...
keeps the density in various representations, keeping track of which ones are valid.