cp2k/src/force_env_methods.F
2024-11-08 17:48:34 +01:00

2076 lines
105 KiB
Fortran

!--------------------------------------------------------------------------------------------------!
! CP2K: A general program to perform molecular dynamics simulations !
! Copyright 2000-2024 CP2K developers group <https://cp2k.org> !
! !
! SPDX-License-Identifier: GPL-2.0-or-later !
!--------------------------------------------------------------------------------------------------!
! **************************************************************************************************
!> \brief Interface for the force calculations
!> \par History
!> cjm, FEB-20-2001: pass variable box_ref
!> cjm, SEPT-12-2002: major reorganization
!> fawzi, APR-12-2003: introduced force_env (based on the work by CJM&JGH)
!> fawzi, NOV-3-2004: reorganized interface for f77 interface
!> \author fawzi
! **************************************************************************************************
MODULE force_env_methods
USE atprop_types, ONLY: atprop_init,&
atprop_type
USE bibliography, ONLY: Heaton_Burgess2007,&
Huang2011,&
cite_reference
USE cell_methods, ONLY: cell_create,&
init_cell
USE cell_types, ONLY: cell_clone,&
cell_release,&
cell_sym_triclinic,&
cell_type,&
real_to_scaled,&
scaled_to_real
USE constraint_fxd, ONLY: fix_atom_control
USE constraint_vsite, ONLY: vsite_force_control
USE cp_control_types, ONLY: dft_control_type
USE cp_fm_basic_linalg, ONLY: cp_fm_scale_and_add
USE cp_fm_types, ONLY: cp_fm_copy_general
USE cp_iter_types, ONLY: cp_iteration_info_copy_iter
USE cp_log_handling, ONLY: cp_add_default_logger,&
cp_get_default_logger,&
cp_logger_type,&
cp_rm_default_logger,&
cp_to_string
USE cp_output_handling, ONLY: cp_print_key_finished_output,&
cp_print_key_unit_nr,&
low_print_level
USE cp_result_methods, ONLY: cp_results_erase,&
cp_results_mp_bcast,&
get_results,&
test_for_result
USE cp_result_types, ONLY: cp_result_copy,&
cp_result_create,&
cp_result_p_type,&
cp_result_release,&
cp_result_type
USE cp_subsys_types, ONLY: cp_subsys_get,&
cp_subsys_p_type,&
cp_subsys_set,&
cp_subsys_type
USE eip_environment_types, ONLY: eip_environment_type
USE eip_silicon, ONLY: eip_bazant,&
eip_lenosky
USE embed_types, ONLY: embed_env_type,&
opt_dmfet_pot_type,&
opt_embed_pot_type
USE external_potential_methods, ONLY: add_external_potential
USE fist_environment_types, ONLY: fist_environment_type
USE fist_force, ONLY: fist_calc_energy_force
USE force_env_types, ONLY: &
force_env_get, force_env_get_natom, force_env_p_type, force_env_set, force_env_type, &
use_eip_force, use_embed, use_fist_force, use_ipi, use_mixed_force, use_nnp_force, &
use_prog_name, use_pwdft_force, use_qmmm, use_qmmmx, use_qs_force
USE force_env_utils, ONLY: rescale_forces,&
write_atener,&
write_forces
USE force_fields_util, ONLY: get_generic_info
USE fp_methods, ONLY: fp_eval
USE fparser, ONLY: EvalErrType,&
evalf,&
evalfd,&
finalizef,&
initf,&
parsef
USE global_types, ONLY: global_environment_type,&
globenv_retain
USE grrm_utils, ONLY: write_grrm
USE input_constants, ONLY: &
debug_run, dfet, dmfet, mix_cdft, mix_coupled, mix_generic, mix_linear_combination, &
mix_minimum, mix_restrained, mixed_cdft_serial, use_bazant_eip, use_lenosky_eip
USE input_section_types, ONLY: section_vals_get_subs_vals,&
section_vals_retain,&
section_vals_type,&
section_vals_val_get
USE ipi_environment_types, ONLY: ipi_environment_type
USE ipi_server, ONLY: request_forces
USE kahan_sum, ONLY: accurate_sum
USE kinds, ONLY: default_path_length,&
default_string_length,&
dp
USE machine, ONLY: m_memory
USE mathlib, ONLY: abnormal_value
USE message_passing, ONLY: mp_para_env_type
USE metadynamics_types, ONLY: meta_env_type
USE mixed_cdft_methods, ONLY: mixed_cdft_build_weight,&
mixed_cdft_calculate_coupling,&
mixed_cdft_init
USE mixed_energy_types, ONLY: mixed_energy_type,&
mixed_force_type
USE mixed_environment_types, ONLY: get_mixed_env,&
mixed_environment_type
USE mixed_environment_utils, ONLY: get_subsys_map_index,&
mixed_map_forces
USE molecule_kind_list_types, ONLY: molecule_kind_list_type
USE molecule_kind_types, ONLY: get_molecule_kind,&
molecule_kind_type
USE nnp_environment_types, ONLY: nnp_type
USE nnp_force, ONLY: nnp_calc_energy_force
USE optimize_dmfet_potential, ONLY: build_full_dm,&
check_dmfet,&
prepare_dmfet_opt,&
release_dmfet_opt,&
subsys_spin
USE optimize_embedding_potential, ONLY: &
Coulomb_guess, calculate_embed_pot_grad, conv_check_embed, get_max_subsys_diff, &
get_prev_density, init_embed_pot, make_subsys_embed_pot, opt_embed_step, &
prepare_embed_opt, print_emb_opt_info, print_embed_restart, print_pot_simple_grid, &
print_rho_diff, print_rho_spin_diff, read_embed_pot, release_opt_embed, step_control, &
understand_spin_states
USE particle_list_types, ONLY: particle_list_p_type,&
particle_list_type
USE physcon, ONLY: debye
USE pw_env_types, ONLY: pw_env_get,&
pw_env_type
USE pw_methods, ONLY: pw_axpy,&
pw_copy,&
pw_integral_ab,&
pw_zero
USE pw_pool_types, ONLY: pw_pool_type
USE pw_types, ONLY: pw_r3d_rs_type
USE pwdft_environment, ONLY: pwdft_calc_energy_force
USE pwdft_environment_types, ONLY: pwdft_environment_type
USE qmmm_force, ONLY: qmmm_calc_energy_force
USE qmmm_types, ONLY: qmmm_env_type
USE qmmm_util, ONLY: apply_qmmm_translate
USE qmmmx_force, ONLY: qmmmx_calc_energy_force
USE qmmmx_types, ONLY: qmmmx_env_type
USE qs_energy_types, ONLY: qs_energy_type
USE qs_environment_types, ONLY: get_qs_env,&
qs_environment_type,&
set_qs_env
USE qs_force, ONLY: qs_calc_energy_force
USE qs_rho_types, ONLY: qs_rho_get,&
qs_rho_type
USE restraint, ONLY: restraint_control
USE scine_utils, ONLY: write_scine
USE string_utilities, ONLY: compress
USE virial_methods, ONLY: write_stress_tensor,&
write_stress_tensor_components
USE virial_types, ONLY: symmetrize_virial,&
virial_p_type,&
virial_type,&
zero_virial
#include "./base/base_uses.f90"
IMPLICIT NONE
PRIVATE
CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'force_env_methods'
PUBLIC :: force_env_create, &
force_env_calc_energy_force, &
force_env_calc_num_pressure
INTEGER, SAVE, PRIVATE :: last_force_env_id = 0
CONTAINS
! **************************************************************************************************
!> \brief Interface routine for force and energy calculations
!> \param force_env the force_env of which you want the energy and forces
!> \param calc_force if false the forces *might* be left unchanged
!> or be invalid, no guarantees can be given. Defaults to true
!> \param consistent_energies Performs an additional qs_ks_update_qs_env, so
!> that the energies are appropriate to the forces, they are in the
!> non-selfconsistent case not consistent to each other! [08.2005, TdK]
!> \param skip_external_control ...
!> \param eval_energy_forces ...
!> \param require_consistent_energy_force ...
!> \param linres ...
!> \param calc_stress_tensor ...
!> \author CJM & fawzi
! **************************************************************************************************
RECURSIVE SUBROUTINE force_env_calc_energy_force(force_env, calc_force, &
consistent_energies, skip_external_control, eval_energy_forces, &
require_consistent_energy_force, linres, calc_stress_tensor)
TYPE(force_env_type), POINTER :: force_env
LOGICAL, INTENT(IN), OPTIONAL :: calc_force, consistent_energies, skip_external_control, &
eval_energy_forces, require_consistent_energy_force, linres, calc_stress_tensor
REAL(kind=dp), PARAMETER :: ateps = 1.0E-6_dp
INTEGER :: ikind, nat, ndigits, nfixed_atoms, &
nfixed_atoms_total, nkind, &
output_unit, print_forces, print_grrm, &
print_scine
LOGICAL :: calculate_forces, calculate_stress_tensor, energy_consistency, eval_ef, &
linres_run, my_skip, print_components
REAL(KIND=dp) :: checksum, e_entropy, e_gap, e_pot, &
sum_energy
REAL(KIND=dp), DIMENSION(3) :: grand_total_force, total_force
TYPE(atprop_type), POINTER :: atprop_env
TYPE(cell_type), POINTER :: cell
TYPE(cp_logger_type), POINTER :: logger
TYPE(cp_subsys_type), POINTER :: subsys
TYPE(molecule_kind_list_type), POINTER :: molecule_kinds
TYPE(molecule_kind_type), DIMENSION(:), POINTER :: molecule_kind_set
TYPE(molecule_kind_type), POINTER :: molecule_kind
TYPE(particle_list_type), POINTER :: core_particles, particles, &
shell_particles
TYPE(virial_type), POINTER :: virial
NULLIFY (logger, virial, subsys, atprop_env, cell)
logger => cp_get_default_logger()
eval_ef = .TRUE.
my_skip = .FALSE.
calculate_forces = .TRUE.
energy_consistency = .FALSE.
linres_run = .FALSE.
e_gap = -1.0_dp
e_entropy = -1.0_dp
IF (PRESENT(eval_energy_forces)) eval_ef = eval_energy_forces
IF (PRESENT(skip_external_control)) my_skip = skip_external_control
IF (PRESENT(calc_force)) calculate_forces = calc_force
IF (PRESENT(calc_stress_tensor)) THEN
calculate_stress_tensor = calc_stress_tensor
ELSE
calculate_stress_tensor = calculate_forces
END IF
IF (PRESENT(consistent_energies)) energy_consistency = consistent_energies
IF (PRESENT(linres)) linres_run = linres
CPASSERT(ASSOCIATED(force_env))
CPASSERT(force_env%ref_count > 0)
CALL force_env_get(force_env, subsys=subsys)
CALL force_env_set(force_env, additional_potential=0.0_dp)
CALL cp_subsys_get(subsys, virial=virial, atprop=atprop_env, cell=cell)
IF (virial%pv_availability) CALL zero_virial(virial, reset=.FALSE.)
nat = force_env_get_natom(force_env)
CALL atprop_init(atprop_env, nat)
IF (eval_ef) THEN
SELECT CASE (force_env%in_use)
CASE (use_fist_force)
CALL fist_calc_energy_force(force_env%fist_env)
CASE (use_qs_force)
CALL qs_calc_energy_force(force_env%qs_env, calculate_forces, energy_consistency, linres_run)
CASE (use_pwdft_force)
IF (virial%pv_availability .AND. calculate_stress_tensor) THEN
CALL pwdft_calc_energy_force(force_env%pwdft_env, calculate_forces,.NOT. virial%pv_numer)
ELSE
CALL pwdft_calc_energy_force(force_env%pwdft_env, calculate_forces, .FALSE.)
END IF
e_gap = force_env%pwdft_env%energy%band_gap
e_entropy = force_env%pwdft_env%energy%entropy
CASE (use_eip_force)
IF (force_env%eip_env%eip_model == use_lenosky_eip) THEN
CALL eip_lenosky(force_env%eip_env)
ELSE IF (force_env%eip_env%eip_model == use_bazant_eip) THEN
CALL eip_bazant(force_env%eip_env)
END IF
CASE (use_qmmm)
CALL qmmm_calc_energy_force(force_env%qmmm_env, &
calculate_forces, energy_consistency, linres=linres_run)
CASE (use_qmmmx)
CALL qmmmx_calc_energy_force(force_env%qmmmx_env, &
calculate_forces, energy_consistency, linres=linres_run, &
require_consistent_energy_force=require_consistent_energy_force)
CASE (use_mixed_force)
CALL mixed_energy_forces(force_env, calculate_forces)
CASE (use_nnp_force)
CALL nnp_calc_energy_force(force_env%nnp_env, &
calculate_forces)
CASE (use_embed)
CALL embed_energy(force_env)
CASE (use_ipi)
CALL request_forces(force_env%ipi_env)
CASE default
CPABORT("")
END SELECT
END IF
! In case it is requested, we evaluate the stress tensor numerically
IF (virial%pv_availability) THEN
IF (virial%pv_numer .AND. calculate_stress_tensor) THEN
! Compute the numerical stress tensor
CALL force_env_calc_num_pressure(force_env)
ELSE
IF (calculate_forces) THEN
! Symmetrize analytical stress tensor
CALL symmetrize_virial(virial)
ELSE
IF (calculate_stress_tensor) THEN
CALL cp_warn(__LOCATION__, "The calculation of the stress tensor "// &
"requires the calculation of the forces")
END IF
END IF
END IF
END IF
!sample peak memory
CALL m_memory()
! Some additional tasks..
IF (.NOT. my_skip) THEN
! Flexible Partitioning
IF (ASSOCIATED(force_env%fp_env)) THEN
IF (force_env%fp_env%use_fp) THEN
CALL fp_eval(force_env%fp_env, subsys, cell)
END IF
END IF
! Constraints ONLY of Fixed Atom type
CALL fix_atom_control(force_env)
! All Restraints
CALL restraint_control(force_env)
! Virtual Sites
CALL vsite_force_control(force_env)
! External Potential
CALL add_external_potential(force_env)
! Rescale forces if requested
CALL rescale_forces(force_env)
END IF
CALL force_env_get(force_env, potential_energy=e_pot)
! Print always Energy in the same format for all methods
output_unit = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%PROGRAM_RUN_INFO", &
extension=".Log")
IF (output_unit > 0) THEN
WRITE (output_unit, '(/,T2,"ENERGY| Total FORCE_EVAL ( ",A," ) energy [a.u.]: ",T55,F26.15)') &
ADJUSTR(TRIM(use_prog_name(force_env%in_use))), e_pot
IF (e_gap .GT. -.1_dp) THEN
WRITE (output_unit, '(/,T2,"ENERGY| Total FORCE_EVAL ( ",A," ) gap [a.u.]: ",T55,F26.15)') &
ADJUSTR(TRIM(use_prog_name(force_env%in_use))), e_gap
END IF
IF (e_entropy .GT. -0.1_dp) THEN
WRITE (output_unit, '(/,T2,"ENERGY| Total FORCE_EVAL ( ",A," ) free energy [a.u.]: ",T55,F26.15)') &
ADJUSTR(TRIM(use_prog_name(force_env%in_use))), e_pot - e_entropy
END IF
END IF
CALL cp_print_key_finished_output(output_unit, logger, force_env%force_env_section, &
"PRINT%PROGRAM_RUN_INFO")
! terminate the run if the value of the potential is abnormal
IF (abnormal_value(e_pot)) &
CPABORT("Potential energy is an abnormal value (NaN/Inf).")
! Print forces, if requested
print_forces = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%FORCES", &
extension=".xyz")
IF ((print_forces > 0) .AND. calculate_forces) THEN
CALL force_env_get(force_env, subsys=subsys)
CALL cp_subsys_get(subsys, &
core_particles=core_particles, &
particles=particles, &
shell_particles=shell_particles)
! Variable precision output of the forces
CALL section_vals_val_get(force_env%force_env_section, "PRINT%FORCES%NDIGITS", &
i_val=ndigits)
IF (ASSOCIATED(core_particles) .OR. ASSOCIATED(shell_particles)) THEN
CALL write_forces(particles, print_forces, "ATOMIC", ndigits, total_force, &
zero_force_core_shell_atom=.TRUE.)
grand_total_force(1:3) = total_force(1:3)
IF (ASSOCIATED(core_particles)) THEN
CALL write_forces(core_particles, print_forces, "CORE", ndigits, total_force, &
zero_force_core_shell_atom=.FALSE.)
grand_total_force(:) = grand_total_force(:) + total_force(:)
END IF
IF (ASSOCIATED(shell_particles)) THEN
CALL write_forces(shell_particles, print_forces, "SHELL", ndigits, total_force, &
zero_force_core_shell_atom=.FALSE., &
grand_total_force=grand_total_force)
END IF
ELSE
CALL write_forces(particles, print_forces, "ATOMIC", ndigits, total_force)
END IF
END IF
CALL cp_print_key_finished_output(print_forces, logger, force_env%force_env_section, "PRINT%FORCES")
! Write stress tensor
IF (virial%pv_availability) THEN
! If the virial is defined but we are not computing forces let's zero the
! virial for consistency
IF (calculate_forces .AND. calculate_stress_tensor) THEN
output_unit = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%STRESS_TENSOR", &
extension=".stress_tensor")
IF (output_unit > 0) THEN
CALL section_vals_val_get(force_env%force_env_section, "PRINT%STRESS_TENSOR%COMPONENTS", &
l_val=print_components)
IF (print_components) THEN
IF ((.NOT. virial%pv_numer) .AND. (force_env%in_use == use_qs_force)) THEN
CALL write_stress_tensor_components(virial, output_unit, cell)
END IF
END IF
CALL write_stress_tensor(virial%pv_virial, output_unit, cell, virial%pv_numer)
END IF
CALL cp_print_key_finished_output(output_unit, logger, force_env%force_env_section, &
"PRINT%STRESS_TENSOR")
ELSE
CALL zero_virial(virial, reset=.FALSE.)
END IF
ELSE
output_unit = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%STRESS_TENSOR", &
extension=".stress_tensor")
IF (output_unit > 0) THEN
CALL cp_warn(__LOCATION__, "To print the stress tensor switch on the "// &
"virial evaluation with the keyword: STRESS_TENSOR")
END IF
CALL cp_print_key_finished_output(output_unit, logger, force_env%force_env_section, &
"PRINT%STRESS_TENSOR")
END IF
! Atomic energy
output_unit = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%PROGRAM_RUN_INFO", &
extension=".Log")
IF (atprop_env%energy) THEN
CALL force_env%para_env%sum(atprop_env%atener)
CALL force_env_get(force_env, potential_energy=e_pot)
IF (output_unit > 0) THEN
IF (logger%iter_info%print_level >= low_print_level) THEN
CALL cp_subsys_get(subsys=subsys, particles=particles)
CALL write_atener(output_unit, particles, atprop_env%atener, "Mulliken Atomic Energies")
END IF
sum_energy = accurate_sum(atprop_env%atener(:))
checksum = ABS(e_pot - sum_energy)
WRITE (UNIT=output_unit, FMT="(/,(T2,A,T56,F25.13))") &
"Potential energy (Atomic):", sum_energy, &
"Potential energy (Total) :", e_pot, &
"Difference :", checksum
CPASSERT((checksum < ateps*ABS(e_pot)))
END IF
CALL cp_print_key_finished_output(output_unit, logger, force_env%force_env_section, &
"PRINT%PROGRAM_RUN_INFO")
END IF
! Print GRMM interface file
print_grrm = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%GRRM", &
file_position="REWIND", extension=".rrm")
IF (print_grrm > 0) THEN
CALL force_env_get(force_env, subsys=subsys)
CALL cp_subsys_get(subsys=subsys, particles=particles, &
molecule_kinds=molecule_kinds)
! Count the number of fixed atoms
nfixed_atoms_total = 0
nkind = molecule_kinds%n_els
molecule_kind_set => molecule_kinds%els
DO ikind = 1, nkind
molecule_kind => molecule_kind_set(ikind)
CALL get_molecule_kind(molecule_kind, nfixd=nfixed_atoms)
nfixed_atoms_total = nfixed_atoms_total + nfixed_atoms
END DO
!
CALL write_grrm(print_grrm, force_env, particles%els, e_pot, fixed_atoms=nfixed_atoms_total)
END IF
CALL cp_print_key_finished_output(print_grrm, logger, force_env%force_env_section, "PRINT%GRRM")
print_scine = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%SCINE", &
file_position="REWIND", extension=".scine")
IF (print_scine > 0) THEN
CALL force_env_get(force_env, subsys=subsys)
CALL cp_subsys_get(subsys=subsys, particles=particles)
!
CALL write_scine(print_scine, force_env, particles%els, e_pot)
END IF
CALL cp_print_key_finished_output(print_scine, logger, force_env%force_env_section, "PRINT%SCINE")
END SUBROUTINE force_env_calc_energy_force
! **************************************************************************************************
!> \brief Evaluates the stress tensor and pressure numerically
!> \param force_env ...
!> \param dx ...
!> \par History
!> 10.2005 created [JCS]
!> 05.2009 Teodoro Laino [tlaino] - rewriting for general force_env
!>
!> \author JCS
! **************************************************************************************************
SUBROUTINE force_env_calc_num_pressure(force_env, dx)
TYPE(force_env_type), POINTER :: force_env
REAL(KIND=dp), INTENT(IN), OPTIONAL :: dx
REAL(kind=dp), PARAMETER :: default_dx = 0.001_dp
INTEGER :: i, ip, iq, j, k, natom, ncore, nshell, &
output_unit, symmetry_id
REAL(KIND=dp) :: dx_w
REAL(KIND=dp), DIMENSION(2) :: numer_energy
REAL(KIND=dp), DIMENSION(3) :: s
REAL(KIND=dp), DIMENSION(3, 3) :: numer_stress
REAL(KIND=dp), DIMENSION(:, :), POINTER :: ref_pos_atom, ref_pos_core, ref_pos_shell
TYPE(cell_type), POINTER :: cell, cell_local
TYPE(cp_logger_type), POINTER :: logger
TYPE(cp_subsys_type), POINTER :: subsys
TYPE(global_environment_type), POINTER :: globenv
TYPE(particle_list_type), POINTER :: core_particles, particles, &
shell_particles
TYPE(virial_type), POINTER :: virial
NULLIFY (cell_local)
NULLIFY (core_particles)
NULLIFY (particles)
NULLIFY (shell_particles)
NULLIFY (ref_pos_atom)
NULLIFY (ref_pos_core)
NULLIFY (ref_pos_shell)
natom = 0
ncore = 0
nshell = 0
numer_stress = 0.0_dp
logger => cp_get_default_logger()
dx_w = default_dx
IF (PRESENT(dx)) dx_w = dx
CALL force_env_get(force_env, subsys=subsys, globenv=globenv)
CALL cp_subsys_get(subsys, &
core_particles=core_particles, &
particles=particles, &
shell_particles=shell_particles, &
virial=virial)
output_unit = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%STRESS_TENSOR", &
extension=".stress_tensor")
IF (output_unit > 0) THEN
WRITE (output_unit, '(/A,A/)') ' **************************** ', &
'NUMERICAL STRESS ********************************'
END IF
! Save all original particle positions
natom = particles%n_els
ALLOCATE (ref_pos_atom(natom, 3))
DO i = 1, natom
ref_pos_atom(i, :) = particles%els(i)%r
END DO
IF (ASSOCIATED(core_particles)) THEN
ncore = core_particles%n_els
ALLOCATE (ref_pos_core(ncore, 3))
DO i = 1, ncore
ref_pos_core(i, :) = core_particles%els(i)%r
END DO
END IF
IF (ASSOCIATED(shell_particles)) THEN
nshell = shell_particles%n_els
ALLOCATE (ref_pos_shell(nshell, 3))
DO i = 1, nshell
ref_pos_shell(i, :) = shell_particles%els(i)%r
END DO
END IF
CALL force_env_get(force_env, cell=cell)
! Save cell symmetry (distorted cell has no symmetry)
symmetry_id = cell%symmetry_id
cell%symmetry_id = cell_sym_triclinic
!
CALL cell_create(cell_local)
CALL cell_clone(cell, cell_local)
! First change box
DO ip = 1, 3
DO iq = 1, 3
IF (virial%pv_diagonal .AND. (ip /= iq)) CYCLE
DO k = 1, 2
cell%hmat(ip, iq) = cell_local%hmat(ip, iq) - (-1.0_dp)**k*dx_w
CALL init_cell(cell)
! Scale positions
DO i = 1, natom
CALL real_to_scaled(s, ref_pos_atom(i, 1:3), cell_local)
CALL scaled_to_real(particles%els(i)%r, s, cell)
END DO
DO i = 1, ncore
CALL real_to_scaled(s, ref_pos_core(i, 1:3), cell_local)
CALL scaled_to_real(core_particles%els(i)%r, s, cell)
END DO
DO i = 1, nshell
CALL real_to_scaled(s, ref_pos_shell(i, 1:3), cell_local)
CALL scaled_to_real(shell_particles%els(i)%r, s, cell)
END DO
! Compute energies
CALL force_env_calc_energy_force(force_env, &
calc_force=.FALSE., &
consistent_energies=.TRUE., &
calc_stress_tensor=.FALSE.)
CALL force_env_get(force_env, potential_energy=numer_energy(k))
! Reset cell
cell%hmat(ip, iq) = cell_local%hmat(ip, iq)
END DO
CALL init_cell(cell)
numer_stress(ip, iq) = 0.5_dp*(numer_energy(1) - numer_energy(2))/dx_w
IF (output_unit > 0) THEN
IF (globenv%run_type_id == debug_run) THEN
WRITE (UNIT=output_unit, FMT="(/,T2,A,T19,A,F7.4,A,T44,A,F7.4,A,T69,A)") &
"DEBUG|", "E("//ACHAR(119 + ip)//ACHAR(119 + iq)//" +", dx_w, ")", &
"E("//ACHAR(119 + ip)//ACHAR(119 + iq)//" -", dx_w, ")", &
"f(numerical)"
WRITE (UNIT=output_unit, FMT="(T2,A,2(1X,F24.8),1X,F22.8)") &
"DEBUG|", numer_energy(1:2), numer_stress(ip, iq)
ELSE
WRITE (UNIT=output_unit, FMT="(/,T7,A,F7.4,A,T27,A,F7.4,A,T49,A)") &
"E("//ACHAR(119 + ip)//ACHAR(119 + iq)//" +", dx_w, ")", &
"E("//ACHAR(119 + ip)//ACHAR(119 + iq)//" -", dx_w, ")", &
"f(numerical)"
WRITE (UNIT=output_unit, FMT="(3(1X,F19.8))") &
numer_energy(1:2), numer_stress(ip, iq)
END IF
END IF
END DO
END DO
! Reset positions and rebuild original environment
cell%symmetry_id = symmetry_id
CALL init_cell(cell)
DO i = 1, natom
particles%els(i)%r = ref_pos_atom(i, :)
END DO
DO i = 1, ncore
core_particles%els(i)%r = ref_pos_core(i, :)
END DO
DO i = 1, nshell
shell_particles%els(i)%r = ref_pos_shell(i, :)
END DO
CALL force_env_calc_energy_force(force_env, &
calc_force=.FALSE., &
consistent_energies=.TRUE., &
calc_stress_tensor=.FALSE.)
! Computing pv_test
virial%pv_virial = 0.0_dp
DO i = 1, 3
DO j = 1, 3
DO k = 1, 3
virial%pv_virial(i, j) = virial%pv_virial(i, j) - &
0.5_dp*(numer_stress(i, k)*cell_local%hmat(j, k) + &
numer_stress(j, k)*cell_local%hmat(i, k))
END DO
END DO
END DO
IF (output_unit > 0) THEN
IF (globenv%run_type_id == debug_run) THEN
CALL write_stress_tensor(virial%pv_virial, output_unit, cell, virial%pv_numer)
END IF
WRITE (output_unit, '(/,A,/)') ' **************************** '// &
'NUMERICAL STRESS END *****************************'
END IF
CALL cp_print_key_finished_output(output_unit, logger, force_env%force_env_section, &
"PRINT%STRESS_TENSOR")
! Release storage
IF (ASSOCIATED(ref_pos_atom)) THEN
DEALLOCATE (ref_pos_atom)
END IF
IF (ASSOCIATED(ref_pos_core)) THEN
DEALLOCATE (ref_pos_core)
END IF
IF (ASSOCIATED(ref_pos_shell)) THEN
DEALLOCATE (ref_pos_shell)
END IF
IF (ASSOCIATED(cell_local)) CALL cell_release(cell_local)
END SUBROUTINE force_env_calc_num_pressure
! **************************************************************************************************
!> \brief creates and initializes a force environment
!> \param force_env the force env to create
!> \param root_section ...
!> \param para_env ...
!> \param globenv ...
!> \param fist_env , qs_env: exactly one of these should be
!> associated, the one that is active
!> \param qs_env ...
!> \param meta_env ...
!> \param sub_force_env ...
!> \param qmmm_env ...
!> \param qmmmx_env ...
!> \param eip_env ...
!> \param pwdft_env ...
!> \param force_env_section ...
!> \param mixed_env ...
!> \param embed_env ...
!> \param nnp_env ...
!> \param ipi_env ...
!> \par History
!> 04.2003 created [fawzi]
!> \author fawzi
! **************************************************************************************************
SUBROUTINE force_env_create(force_env, root_section, para_env, globenv, fist_env, &
qs_env, meta_env, sub_force_env, qmmm_env, qmmmx_env, eip_env, pwdft_env, force_env_section, &
mixed_env, embed_env, nnp_env, ipi_env)
TYPE(force_env_type), POINTER :: force_env
TYPE(section_vals_type), POINTER :: root_section
TYPE(mp_para_env_type), POINTER :: para_env
TYPE(global_environment_type), POINTER :: globenv
TYPE(fist_environment_type), OPTIONAL, POINTER :: fist_env
TYPE(qs_environment_type), OPTIONAL, POINTER :: qs_env
TYPE(meta_env_type), OPTIONAL, POINTER :: meta_env
TYPE(force_env_p_type), DIMENSION(:), OPTIONAL, &
POINTER :: sub_force_env
TYPE(qmmm_env_type), OPTIONAL, POINTER :: qmmm_env
TYPE(qmmmx_env_type), OPTIONAL, POINTER :: qmmmx_env
TYPE(eip_environment_type), OPTIONAL, POINTER :: eip_env
TYPE(pwdft_environment_type), OPTIONAL, POINTER :: pwdft_env
TYPE(section_vals_type), POINTER :: force_env_section
TYPE(mixed_environment_type), OPTIONAL, POINTER :: mixed_env
TYPE(embed_env_type), OPTIONAL, POINTER :: embed_env
TYPE(nnp_type), OPTIONAL, POINTER :: nnp_env
TYPE(ipi_environment_type), OPTIONAL, POINTER :: ipi_env
ALLOCATE (force_env)
NULLIFY (force_env%fist_env, force_env%qs_env, &
force_env%para_env, force_env%globenv, &
force_env%meta_env, force_env%sub_force_env, &
force_env%qmmm_env, force_env%qmmmx_env, force_env%fp_env, &
force_env%force_env_section, force_env%eip_env, force_env%mixed_env, &
force_env%embed_env, force_env%pwdft_env, force_env%nnp_env, &
force_env%root_section)
last_force_env_id = last_force_env_id + 1
force_env%ref_count = 1
force_env%in_use = 0
force_env%additional_potential = 0.0_dp
force_env%globenv => globenv
CALL globenv_retain(force_env%globenv)
force_env%root_section => root_section
CALL section_vals_retain(root_section)
force_env%para_env => para_env
CALL force_env%para_env%retain()
CALL section_vals_retain(force_env_section)
force_env%force_env_section => force_env_section
IF (PRESENT(fist_env)) THEN
CPASSERT(ASSOCIATED(fist_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_fist_force
force_env%fist_env => fist_env
END IF
IF (PRESENT(eip_env)) THEN
CPASSERT(ASSOCIATED(eip_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_eip_force
force_env%eip_env => eip_env
END IF
IF (PRESENT(pwdft_env)) THEN
CPASSERT(ASSOCIATED(pwdft_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_pwdft_force
force_env%pwdft_env => pwdft_env
END IF
IF (PRESENT(qs_env)) THEN
CPASSERT(ASSOCIATED(qs_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_qs_force
force_env%qs_env => qs_env
END IF
IF (PRESENT(qmmm_env)) THEN
CPASSERT(ASSOCIATED(qmmm_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_qmmm
force_env%qmmm_env => qmmm_env
END IF
IF (PRESENT(qmmmx_env)) THEN
CPASSERT(ASSOCIATED(qmmmx_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_qmmmx
force_env%qmmmx_env => qmmmx_env
END IF
IF (PRESENT(mixed_env)) THEN
CPASSERT(ASSOCIATED(mixed_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_mixed_force
force_env%mixed_env => mixed_env
END IF
IF (PRESENT(embed_env)) THEN
CPASSERT(ASSOCIATED(embed_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_embed
force_env%embed_env => embed_env
END IF
IF (PRESENT(nnp_env)) THEN
CPASSERT(ASSOCIATED(nnp_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_nnp_force
force_env%nnp_env => nnp_env
END IF
IF (PRESENT(ipi_env)) THEN
CPASSERT(ASSOCIATED(ipi_env))
CPASSERT(force_env%in_use == 0)
force_env%in_use = use_ipi
force_env%ipi_env => ipi_env
END IF
CPASSERT(force_env%in_use /= 0)
IF (PRESENT(sub_force_env)) THEN
force_env%sub_force_env => sub_force_env
END IF
IF (PRESENT(meta_env)) THEN
force_env%meta_env => meta_env
ELSE
NULLIFY (force_env%meta_env)
END IF
END SUBROUTINE force_env_create
! **************************************************************************************************
!> \brief ****f* force_env_methods/mixed_energy_forces [1.0]
!>
!> Computes energy and forces for a mixed force_env type
!> \param force_env the force_env that holds the mixed_env type
!> \param calculate_forces decides if forces should be calculated
!> \par History
!> 11.06 created [fschiff]
!> 04.07 generalization to an illimited number of force_eval [tlaino]
!> 04.07 further generalization to force_eval with different geometrical
!> structures [tlaino]
!> 04.08 reorganizing the genmix structure (collecting common code)
!> 01.16 added CDFT [Nico Holmberg]
!> 08.17 added DFT embedding [Vladimir Rybkin]
!> \author Florian Schiffmann
! **************************************************************************************************
SUBROUTINE mixed_energy_forces(force_env, calculate_forces)
TYPE(force_env_type), POINTER :: force_env
LOGICAL, INTENT(IN) :: calculate_forces
CHARACTER(LEN=default_path_length) :: coupling_function
CHARACTER(LEN=default_string_length) :: def_error, description, this_error
INTEGER :: iforce_eval, iparticle, istate(2), &
jparticle, mixing_type, my_group, &
natom, nforce_eval, source, unit_nr
INTEGER, DIMENSION(:), POINTER :: glob_natoms, itmplist, map_index
LOGICAL :: dip_exists
REAL(KIND=dp) :: coupling_parameter, dedf, der_1, der_2, &
dx, energy, err, lambda, lerr, &
restraint_strength, restraint_target, &
sd
REAL(KIND=dp), DIMENSION(3) :: dip_mix
REAL(KIND=dp), DIMENSION(:), POINTER :: energies
TYPE(cell_type), POINTER :: cell_mix
TYPE(cp_logger_type), POINTER :: logger, my_logger
TYPE(cp_result_p_type), DIMENSION(:), POINTER :: results
TYPE(cp_result_type), POINTER :: loc_results, results_mix
TYPE(cp_subsys_p_type), DIMENSION(:), POINTER :: subsystems
TYPE(cp_subsys_type), POINTER :: subsys_mix
TYPE(mixed_energy_type), POINTER :: mixed_energy
TYPE(mixed_force_type), DIMENSION(:), POINTER :: global_forces
TYPE(particle_list_p_type), DIMENSION(:), POINTER :: particles
TYPE(particle_list_type), POINTER :: particles_mix
TYPE(section_vals_type), POINTER :: force_env_section, gen_section, &
mapping_section, mixed_section, &
root_section
TYPE(virial_p_type), DIMENSION(:), POINTER :: virials
TYPE(virial_type), POINTER :: loc_virial, virial_mix
logger => cp_get_default_logger()
CPASSERT(ASSOCIATED(force_env))
! Get infos about the mixed subsys
CALL force_env_get(force_env=force_env, &
subsys=subsys_mix, &
force_env_section=force_env_section, &
root_section=root_section, &
cell=cell_mix)
CALL cp_subsys_get(subsys=subsys_mix, &
particles=particles_mix, &
virial=virial_mix, &
results=results_mix)
NULLIFY (map_index, glob_natoms, global_forces, itmplist)
nforce_eval = SIZE(force_env%sub_force_env)
mixed_section => section_vals_get_subs_vals(force_env_section, "MIXED")
mapping_section => section_vals_get_subs_vals(mixed_section, "MAPPING")
! Global Info
ALLOCATE (subsystems(nforce_eval))
ALLOCATE (particles(nforce_eval))
! Local Info to sync
ALLOCATE (global_forces(nforce_eval))
ALLOCATE (energies(nforce_eval))
ALLOCATE (glob_natoms(nforce_eval))
ALLOCATE (virials(nforce_eval))
ALLOCATE (results(nforce_eval))
energies = 0.0_dp
glob_natoms = 0
! Check if mixed CDFT calculation is requested and initialize
CALL mixed_cdft_init(force_env, calculate_forces)
!
IF (.NOT. force_env%mixed_env%do_mixed_cdft) THEN
DO iforce_eval = 1, nforce_eval
NULLIFY (subsystems(iforce_eval)%subsys, particles(iforce_eval)%list)
NULLIFY (results(iforce_eval)%results, virials(iforce_eval)%virial)
ALLOCATE (virials(iforce_eval)%virial)
CALL cp_result_create(results(iforce_eval)%results)
IF (.NOT. ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env)) CYCLE
! From this point on the error is the sub_error
my_group = force_env%mixed_env%group_distribution(force_env%para_env%mepos)
my_logger => force_env%mixed_env%sub_logger(my_group + 1)%p
! Copy iterations info (they are updated only in the main mixed_env)
CALL cp_iteration_info_copy_iter(logger%iter_info, my_logger%iter_info)
CALL cp_add_default_logger(my_logger)
! Get all available subsys
CALL force_env_get(force_env=force_env%sub_force_env(iforce_eval)%force_env, &
subsys=subsystems(iforce_eval)%subsys)
! all force_env share the same cell
CALL cp_subsys_set(subsystems(iforce_eval)%subsys, cell=cell_mix)
! Get available particles
CALL cp_subsys_get(subsys=subsystems(iforce_eval)%subsys, &
particles=particles(iforce_eval)%list)
! Get Mapping index array
natom = SIZE(particles(iforce_eval)%list%els)
CALL get_subsys_map_index(mapping_section, natom, iforce_eval, nforce_eval, &
map_index)
! Mapping particles from iforce_eval environment to the mixed env
DO iparticle = 1, natom
jparticle = map_index(iparticle)
particles(iforce_eval)%list%els(iparticle)%r = particles_mix%els(jparticle)%r
END DO
! Calculate energy and forces for each sub_force_env
CALL force_env_calc_energy_force(force_env%sub_force_env(iforce_eval)%force_env, &
calc_force=calculate_forces, &
skip_external_control=.TRUE.)
! Only the rank 0 process collect info for each computation
IF (force_env%sub_force_env(iforce_eval)%force_env%para_env%is_source()) THEN
CALL force_env_get(force_env%sub_force_env(iforce_eval)%force_env, &
potential_energy=energy)
CALL cp_subsys_get(subsystems(iforce_eval)%subsys, &
virial=loc_virial, results=loc_results)
energies(iforce_eval) = energy
glob_natoms(iforce_eval) = natom
virials(iforce_eval)%virial = loc_virial
CALL cp_result_copy(loc_results, results(iforce_eval)%results)
END IF
! Deallocate map_index array
IF (ASSOCIATED(map_index)) THEN
DEALLOCATE (map_index)
END IF
CALL cp_rm_default_logger()
END DO
ELSE
CALL mixed_cdft_energy_forces(force_env, calculate_forces, particles, energies, &
glob_natoms, virials, results)
END IF
! Handling Parallel execution
CALL force_env%para_env%sync()
! Post CDFT operations
CALL mixed_cdft_post_energy_forces(force_env)
! Let's transfer energy, natom, forces, virials
CALL force_env%para_env%sum(energies)
CALL force_env%para_env%sum(glob_natoms)
! Transfer forces
DO iforce_eval = 1, nforce_eval
ALLOCATE (global_forces(iforce_eval)%forces(3, glob_natoms(iforce_eval)))
global_forces(iforce_eval)%forces = 0.0_dp
IF (ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env)) THEN
IF (force_env%sub_force_env(iforce_eval)%force_env%para_env%is_source()) THEN
! Forces
DO iparticle = 1, glob_natoms(iforce_eval)
global_forces(iforce_eval)%forces(:, iparticle) = &
particles(iforce_eval)%list%els(iparticle)%f
END DO
END IF
END IF
CALL force_env%para_env%sum(global_forces(iforce_eval)%forces)
!Transfer only the relevant part of the virial..
CALL force_env%para_env%sum(virials(iforce_eval)%virial%pv_total)
CALL force_env%para_env%sum(virials(iforce_eval)%virial%pv_kinetic)
CALL force_env%para_env%sum(virials(iforce_eval)%virial%pv_virial)
CALL force_env%para_env%sum(virials(iforce_eval)%virial%pv_xc)
CALL force_env%para_env%sum(virials(iforce_eval)%virial%pv_fock_4c)
CALL force_env%para_env%sum(virials(iforce_eval)%virial%pv_constraint)
!Transfer results
source = 0
IF (ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env)) THEN
IF (force_env%sub_force_env(iforce_eval)%force_env%para_env%is_source()) &
source = force_env%para_env%mepos
END IF
CALL force_env%para_env%sum(source)
CALL cp_results_mp_bcast(results(iforce_eval)%results, source, force_env%para_env)
END DO
force_env%mixed_env%energies = energies
! Start combining the different sub_force_env
CALL get_mixed_env(mixed_env=force_env%mixed_env, &
mixed_energy=mixed_energy)
!NB: do this for all MIXING_TYPE values, since some need it (e.g. linear mixing
!NB if the first system has fewer atoms than the second)
DO iparticle = 1, SIZE(particles_mix%els)
particles_mix%els(iparticle)%f(:) = 0.0_dp
END DO
CALL section_vals_val_get(mixed_section, "MIXING_TYPE", i_val=mixing_type)
SELECT CASE (mixing_type)
CASE (mix_linear_combination)
! Support offered only 2 force_eval
CPASSERT(nforce_eval == 2)
CALL section_vals_val_get(mixed_section, "LINEAR%LAMBDA", r_val=lambda)
mixed_energy%pot = lambda*energies(1) + (1.0_dp - lambda)*energies(2)
! General Mapping of forces...
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
lambda, 1, nforce_eval, map_index, mapping_section, .TRUE.)
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
(1.0_dp - lambda), 2, nforce_eval, map_index, mapping_section, .FALSE.)
CASE (mix_minimum)
! Support offered only 2 force_eval
CPASSERT(nforce_eval == 2)
IF (energies(1) < energies(2)) THEN
mixed_energy%pot = energies(1)
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
1.0_dp, 1, nforce_eval, map_index, mapping_section, .TRUE.)
ELSE
mixed_energy%pot = energies(2)
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
1.0_dp, 2, nforce_eval, map_index, mapping_section, .TRUE.)
END IF
CASE (mix_coupled)
! Support offered only 2 force_eval
CPASSERT(nforce_eval == 2)
CALL section_vals_val_get(mixed_section, "COUPLING%COUPLING_PARAMETER", &
r_val=coupling_parameter)
sd = SQRT((energies(1) - energies(2))**2 + 4.0_dp*coupling_parameter**2)
der_1 = (1.0_dp - (1.0_dp/(2.0_dp*sd))*2.0_dp*(energies(1) - energies(2)))/2.0_dp
der_2 = (1.0_dp + (1.0_dp/(2.0_dp*sd))*2.0_dp*(energies(1) - energies(2)))/2.0_dp
mixed_energy%pot = (energies(1) + energies(2) - sd)/2.0_dp
! General Mapping of forces...
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
der_1, 1, nforce_eval, map_index, mapping_section, .TRUE.)
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
der_2, 2, nforce_eval, map_index, mapping_section, .FALSE.)
CASE (mix_restrained)
! Support offered only 2 force_eval
CPASSERT(nforce_eval == 2)
CALL section_vals_val_get(mixed_section, "RESTRAINT%RESTRAINT_TARGET", &
r_val=restraint_target)
CALL section_vals_val_get(mixed_section, "RESTRAINT%RESTRAINT_STRENGTH", &
r_val=restraint_strength)
mixed_energy%pot = energies(1) + restraint_strength*(energies(1) - energies(2) - restraint_target)**2
der_2 = -2.0_dp*restraint_strength*(energies(1) - energies(2) - restraint_target)
der_1 = 1.0_dp - der_2
! General Mapping of forces...
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
der_1, 1, nforce_eval, map_index, mapping_section, .TRUE.)
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
der_2, 2, nforce_eval, map_index, mapping_section, .FALSE.)
CASE (mix_generic)
! Support any number of force_eval sections
gen_section => section_vals_get_subs_vals(mixed_section, "GENERIC")
CALL get_generic_info(gen_section, "MIXING_FUNCTION", coupling_function, force_env%mixed_env%par, &
force_env%mixed_env%val, energies)
CALL initf(1)
CALL parsef(1, TRIM(coupling_function), force_env%mixed_env%par)
! Now the hardest part.. map energy with corresponding force_eval
mixed_energy%pot = evalf(1, force_env%mixed_env%val)
CPASSERT(EvalErrType <= 0)
CALL zero_virial(virial_mix, reset=.FALSE.)
CALL cp_results_erase(results_mix)
DO iforce_eval = 1, nforce_eval
CALL section_vals_val_get(gen_section, "DX", r_val=dx)
CALL section_vals_val_get(gen_section, "ERROR_LIMIT", r_val=lerr)
dedf = evalfd(1, iforce_eval, force_env%mixed_env%val, dx, err)
IF (ABS(err) > lerr) THEN
WRITE (this_error, "(A,G12.6,A)") "(", err, ")"
WRITE (def_error, "(A,G12.6,A)") "(", lerr, ")"
CALL compress(this_error, .TRUE.)
CALL compress(def_error, .TRUE.)
CALL cp_warn(__LOCATION__, &
'ASSERTION (cond) failed at line '//cp_to_string(__LINE__)// &
' Error '//TRIM(this_error)//' in computing numerical derivatives larger then'// &
TRIM(def_error)//' .')
END IF
! General Mapping of forces...
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
dedf, iforce_eval, nforce_eval, map_index, mapping_section, .FALSE.)
force_env%mixed_env%val(iforce_eval) = energies(iforce_eval)
END DO
! Let's store the needed information..
force_env%mixed_env%dx = dx
force_env%mixed_env%lerr = lerr
force_env%mixed_env%coupling_function = TRIM(coupling_function)
CALL finalizef()
CASE (mix_cdft)
! Supports any number of force_evals for calculation of CDFT properties, but forces only from two
CALL section_vals_val_get(mixed_section, "MIXED_CDFT%LAMBDA", r_val=lambda)
! Get the states which determine the forces
CALL section_vals_val_get(mixed_section, "MIXED_CDFT%FORCE_STATES", i_vals=itmplist)
IF (SIZE(itmplist) /= 2) &
CALL cp_abort(__LOCATION__, &
"Keyword FORCE_STATES takes exactly two input values.")
IF (ANY(itmplist .LT. 0)) &
CPABORT("Invalid force_eval index.")
istate = itmplist
IF (istate(1) > nforce_eval .OR. istate(2) > nforce_eval) &
CPABORT("Invalid force_eval index.")
mixed_energy%pot = lambda*energies(istate(1)) + (1.0_dp - lambda)*energies(istate(2))
! General Mapping of forces...
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
lambda, istate(1), nforce_eval, map_index, mapping_section, .TRUE.)
CALL mixed_map_forces(particles_mix, virial_mix, results_mix, global_forces, virials, results, &
(1.0_dp - lambda), istate(2), nforce_eval, map_index, mapping_section, .FALSE.)
CASE DEFAULT
CPABORT("")
END SELECT
!Simply deallocate and loose the pointer references..
DO iforce_eval = 1, nforce_eval
DEALLOCATE (global_forces(iforce_eval)%forces)
IF (ASSOCIATED(virials(iforce_eval)%virial)) DEALLOCATE (virials(iforce_eval)%virial)
CALL cp_result_release(results(iforce_eval)%results)
END DO
DEALLOCATE (global_forces)
DEALLOCATE (subsystems)
DEALLOCATE (particles)
DEALLOCATE (energies)
DEALLOCATE (glob_natoms)
DEALLOCATE (virials)
DEALLOCATE (results)
! Print Section
unit_nr = cp_print_key_unit_nr(logger, mixed_section, "PRINT%DIPOLE", &
extension=".data", middle_name="MIXED_DIPOLE", log_filename=.FALSE.)
IF (unit_nr > 0) THEN
description = '[DIPOLE]'
dip_exists = test_for_result(results=results_mix, description=description)
IF (dip_exists) THEN
CALL get_results(results=results_mix, description=description, values=dip_mix)
WRITE (unit_nr, '(/,1X,A,T48,3F21.16)') "MIXED ENV| DIPOLE ( A.U.)|", dip_mix
WRITE (unit_nr, '( 1X,A,T48,3F21.16)') "MIXED ENV| DIPOLE (Debye)|", dip_mix*debye
ELSE
WRITE (unit_nr, *) "NO FORCE_EVAL section calculated the dipole"
END IF
END IF
CALL cp_print_key_finished_output(unit_nr, logger, mixed_section, "PRINT%DIPOLE")
END SUBROUTINE mixed_energy_forces
! **************************************************************************************************
!> \brief Driver routine for mixed CDFT energy and force calculations
!> \param force_env the force_env that holds the mixed_env
!> \param calculate_forces if forces should be calculated
!> \param particles system particles
!> \param energies the energies of the CDFT states
!> \param glob_natoms the total number of particles
!> \param virials the virials stored in subsys
!> \param results results stored in subsys
!> \par History
!> 01.17 created [Nico Holmberg]
!> \author Nico Holmberg
! **************************************************************************************************
SUBROUTINE mixed_cdft_energy_forces(force_env, calculate_forces, particles, energies, &
glob_natoms, virials, results)
TYPE(force_env_type), POINTER :: force_env
LOGICAL, INTENT(IN) :: calculate_forces
TYPE(particle_list_p_type), DIMENSION(:), POINTER :: particles
REAL(KIND=dp), DIMENSION(:), POINTER :: energies
INTEGER, DIMENSION(:), POINTER :: glob_natoms
TYPE(virial_p_type), DIMENSION(:), POINTER :: virials
TYPE(cp_result_p_type), DIMENSION(:), POINTER :: results
INTEGER :: iforce_eval, iparticle, jparticle, &
my_group, natom, nforce_eval
INTEGER, DIMENSION(:), POINTER :: map_index
REAL(KIND=dp) :: energy
TYPE(cell_type), POINTER :: cell_mix
TYPE(cp_logger_type), POINTER :: logger, my_logger
TYPE(cp_result_type), POINTER :: loc_results, results_mix
TYPE(cp_subsys_p_type), DIMENSION(:), POINTER :: subsystems
TYPE(cp_subsys_type), POINTER :: subsys_mix
TYPE(particle_list_type), POINTER :: particles_mix
TYPE(section_vals_type), POINTER :: force_env_section, mapping_section, &
mixed_section, root_section
TYPE(virial_type), POINTER :: loc_virial, virial_mix
logger => cp_get_default_logger()
CPASSERT(ASSOCIATED(force_env))
! Get infos about the mixed subsys
CALL force_env_get(force_env=force_env, &
subsys=subsys_mix, &
force_env_section=force_env_section, &
root_section=root_section, &
cell=cell_mix)
CALL cp_subsys_get(subsys=subsys_mix, &
particles=particles_mix, &
virial=virial_mix, &
results=results_mix)
NULLIFY (map_index)
nforce_eval = SIZE(force_env%sub_force_env)
mixed_section => section_vals_get_subs_vals(force_env_section, "MIXED")
mapping_section => section_vals_get_subs_vals(mixed_section, "MAPPING")
ALLOCATE (subsystems(nforce_eval))
DO iforce_eval = 1, nforce_eval
NULLIFY (subsystems(iforce_eval)%subsys, particles(iforce_eval)%list)
NULLIFY (results(iforce_eval)%results, virials(iforce_eval)%virial)
ALLOCATE (virials(iforce_eval)%virial)
CALL cp_result_create(results(iforce_eval)%results)
IF (.NOT. ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env)) CYCLE
! Get all available subsys
CALL force_env_get(force_env=force_env%sub_force_env(iforce_eval)%force_env, &
subsys=subsystems(iforce_eval)%subsys)
! all force_env share the same cell
CALL cp_subsys_set(subsystems(iforce_eval)%subsys, cell=cell_mix)
! Get available particles
CALL cp_subsys_get(subsys=subsystems(iforce_eval)%subsys, &
particles=particles(iforce_eval)%list)
! Get Mapping index array
natom = SIZE(particles(iforce_eval)%list%els)
! Serial mode need to deallocate first
IF (ASSOCIATED(map_index)) &
DEALLOCATE (map_index)
CALL get_subsys_map_index(mapping_section, natom, iforce_eval, nforce_eval, &
map_index)
! Mapping particles from iforce_eval environment to the mixed env
DO iparticle = 1, natom
jparticle = map_index(iparticle)
particles(iforce_eval)%list%els(iparticle)%r = particles_mix%els(jparticle)%r
END DO
! Mixed CDFT + QMMM: Need to translate now
IF (force_env%mixed_env%do_mixed_qmmm_cdft) &
CALL apply_qmmm_translate(force_env%sub_force_env(iforce_eval)%force_env%qmmm_env)
END DO
! For mixed CDFT calculations parallelized over CDFT states
! build weight and gradient on all processors before splitting into groups and
! starting energy calculation
CALL mixed_cdft_build_weight(force_env, calculate_forces)
DO iforce_eval = 1, nforce_eval
IF (.NOT. ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env)) CYCLE
! From this point on the error is the sub_error
IF (force_env%mixed_env%cdft_control%run_type == mixed_cdft_serial .AND. iforce_eval .GE. 2) THEN
my_logger => force_env%mixed_env%cdft_control%sub_logger(iforce_eval - 1)%p
ELSE
my_group = force_env%mixed_env%group_distribution(force_env%para_env%mepos)
my_logger => force_env%mixed_env%sub_logger(my_group + 1)%p
END IF
! Copy iterations info (they are updated only in the main mixed_env)
CALL cp_iteration_info_copy_iter(logger%iter_info, my_logger%iter_info)
CALL cp_add_default_logger(my_logger)
! Serial CDFT calculation: transfer weight/gradient
CALL mixed_cdft_build_weight(force_env, calculate_forces, iforce_eval)
! Calculate energy and forces for each sub_force_env
CALL force_env_calc_energy_force(force_env%sub_force_env(iforce_eval)%force_env, &
calc_force=calculate_forces, &
skip_external_control=.TRUE.)
! Only the rank 0 process collect info for each computation
IF (force_env%sub_force_env(iforce_eval)%force_env%para_env%is_source()) THEN
CALL force_env_get(force_env%sub_force_env(iforce_eval)%force_env, &
potential_energy=energy)
CALL cp_subsys_get(subsystems(iforce_eval)%subsys, &
virial=loc_virial, results=loc_results)
energies(iforce_eval) = energy
glob_natoms(iforce_eval) = natom
virials(iforce_eval)%virial = loc_virial
CALL cp_result_copy(loc_results, results(iforce_eval)%results)
END IF
! Deallocate map_index array
IF (ASSOCIATED(map_index)) THEN
DEALLOCATE (map_index)
END IF
CALL cp_rm_default_logger()
END DO
DEALLOCATE (subsystems)
END SUBROUTINE mixed_cdft_energy_forces
! **************************************************************************************************
!> \brief Perform additional tasks for mixed CDFT calculations after solving the electronic structure
!> of both CDFT states
!> \param force_env the force_env that holds the CDFT states
!> \par History
!> 01.17 created [Nico Holmberg]
!> \author Nico Holmberg
! **************************************************************************************************
SUBROUTINE mixed_cdft_post_energy_forces(force_env)
TYPE(force_env_type), POINTER :: force_env
INTEGER :: iforce_eval, nforce_eval, nvar
TYPE(dft_control_type), POINTER :: dft_control
TYPE(qs_environment_type), POINTER :: qs_env
CPASSERT(ASSOCIATED(force_env))
NULLIFY (qs_env, dft_control)
IF (force_env%mixed_env%do_mixed_cdft) THEN
nforce_eval = SIZE(force_env%sub_force_env)
nvar = force_env%mixed_env%cdft_control%nconstraint
! Transfer cdft strengths for writing restart
IF (.NOT. ASSOCIATED(force_env%mixed_env%strength)) &
ALLOCATE (force_env%mixed_env%strength(nforce_eval, nvar))
force_env%mixed_env%strength = 0.0_dp
DO iforce_eval = 1, nforce_eval
IF (.NOT. ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env)) CYCLE
IF (force_env%mixed_env%do_mixed_qmmm_cdft) THEN
qs_env => force_env%sub_force_env(iforce_eval)%force_env%qmmm_env%qs_env
ELSE
CALL force_env_get(force_env%sub_force_env(iforce_eval)%force_env, qs_env=qs_env)
END IF
CALL get_qs_env(qs_env, dft_control=dft_control)
IF (force_env%sub_force_env(iforce_eval)%force_env%para_env%is_source()) &
force_env%mixed_env%strength(iforce_eval, :) = dft_control%qs_control%cdft_control%strength(:)
END DO
CALL force_env%para_env%sum(force_env%mixed_env%strength)
! Mixed CDFT: calculate ET coupling
IF (force_env%mixed_env%do_mixed_et) THEN
IF (MODULO(force_env%mixed_env%cdft_control%sim_step, force_env%mixed_env%et_freq) == 0) &
CALL mixed_cdft_calculate_coupling(force_env)
END IF
END IF
END SUBROUTINE mixed_cdft_post_energy_forces
! **************************************************************************************************
!> \brief Computes the total energy for an embedded calculation
!> \param force_env ...
!> \author Vladimir Rybkin
! **************************************************************************************************
SUBROUTINE embed_energy(force_env)
TYPE(force_env_type), POINTER :: force_env
INTEGER :: iforce_eval, iparticle, jparticle, &
my_group, natom, nforce_eval
INTEGER, DIMENSION(:), POINTER :: glob_natoms, map_index
LOGICAL :: converged_embed
REAL(KIND=dp) :: energy
REAL(KIND=dp), DIMENSION(:), POINTER :: energies
TYPE(cell_type), POINTER :: cell_embed
TYPE(cp_logger_type), POINTER :: logger, my_logger
TYPE(cp_result_p_type), DIMENSION(:), POINTER :: results
TYPE(cp_result_type), POINTER :: loc_results, results_embed
TYPE(cp_subsys_p_type), DIMENSION(:), POINTER :: subsystems
TYPE(cp_subsys_type), POINTER :: subsys_embed
TYPE(dft_control_type), POINTER :: dft_control
TYPE(particle_list_p_type), DIMENSION(:), POINTER :: particles
TYPE(particle_list_type), POINTER :: particles_embed
TYPE(pw_env_type), POINTER :: pw_env
TYPE(pw_pool_type), POINTER :: auxbas_pw_pool
TYPE(pw_r3d_rs_type), POINTER :: embed_pot, spin_embed_pot
TYPE(section_vals_type), POINTER :: embed_section, force_env_section, &
mapping_section, root_section
logger => cp_get_default_logger()
CPASSERT(ASSOCIATED(force_env))
! Get infos about the embedding subsys
CALL force_env_get(force_env=force_env, &
subsys=subsys_embed, &
force_env_section=force_env_section, &
root_section=root_section, &
cell=cell_embed)
CALL cp_subsys_get(subsys=subsys_embed, &
particles=particles_embed, &
results=results_embed)
NULLIFY (map_index, glob_natoms)
nforce_eval = SIZE(force_env%sub_force_env)
embed_section => section_vals_get_subs_vals(force_env_section, "EMBED")
mapping_section => section_vals_get_subs_vals(embed_section, "MAPPING")
! Global Info
ALLOCATE (subsystems(nforce_eval))
ALLOCATE (particles(nforce_eval))
! Local Info to sync
ALLOCATE (energies(nforce_eval))
ALLOCATE (glob_natoms(nforce_eval))
ALLOCATE (results(nforce_eval))
energies = 0.0_dp
glob_natoms = 0
DO iforce_eval = 1, nforce_eval
NULLIFY (subsystems(iforce_eval)%subsys, particles(iforce_eval)%list)
NULLIFY (results(iforce_eval)%results)
CALL cp_result_create(results(iforce_eval)%results)
IF (.NOT. ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env)) CYCLE
! From this point on the error is the sub_error
my_group = force_env%embed_env%group_distribution(force_env%para_env%mepos)
my_logger => force_env%embed_env%sub_logger(my_group + 1)%p
! Copy iterations info (they are updated only in the main embed_env)
CALL cp_iteration_info_copy_iter(logger%iter_info, my_logger%iter_info)
CALL cp_add_default_logger(my_logger)
! Get all available subsys
CALL force_env_get(force_env=force_env%sub_force_env(iforce_eval)%force_env, &
subsys=subsystems(iforce_eval)%subsys)
! Check if we import density from previous force calculations
! Only for QUICKSTEP
IF (ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env%qs_env)) THEN
NULLIFY (dft_control)
CALL get_qs_env(force_env%sub_force_env(iforce_eval)%force_env%qs_env, dft_control=dft_control)
IF (dft_control%qs_control%ref_embed_subsys) THEN
IF (iforce_eval .EQ. 2) CPABORT("Density importing force_eval can't be the first.")
END IF
END IF
! all force_env share the same cell
CALL cp_subsys_set(subsystems(iforce_eval)%subsys, cell=cell_embed)
! Get available particles
CALL cp_subsys_get(subsys=subsystems(iforce_eval)%subsys, &
particles=particles(iforce_eval)%list)
! Get Mapping index array
natom = SIZE(particles(iforce_eval)%list%els)
CALL get_subsys_map_index(mapping_section, natom, iforce_eval, nforce_eval, &
map_index, .TRUE.)
! Mapping particles from iforce_eval environment to the embed env
DO iparticle = 1, natom
jparticle = map_index(iparticle)
particles(iforce_eval)%list%els(iparticle)%r = particles_embed%els(jparticle)%r
END DO
! Calculate energy and forces for each sub_force_env
CALL force_env_calc_energy_force(force_env%sub_force_env(iforce_eval)%force_env, &
calc_force=.FALSE., &
skip_external_control=.TRUE.)
! Call DFT embedding
IF (ASSOCIATED(force_env%sub_force_env(iforce_eval)%force_env%qs_env)) THEN
NULLIFY (dft_control)
CALL get_qs_env(force_env%sub_force_env(iforce_eval)%force_env%qs_env, dft_control=dft_control)
IF (dft_control%qs_control%ref_embed_subsys) THEN
! Now we can optimize the embedding potential
CALL dft_embedding(force_env, iforce_eval, energies, converged_embed)
IF (.NOT. converged_embed) CPABORT("Embedding potential optimization not converged.")
END IF
! Deallocate embedding potential on the high-level subsystem
IF (dft_control%qs_control%high_level_embed_subsys) THEN
CALL get_qs_env(qs_env=force_env%sub_force_env(iforce_eval)%force_env%qs_env, &
embed_pot=embed_pot, spin_embed_pot=spin_embed_pot, pw_env=pw_env)
CALL pw_env_get(pw_env, auxbas_pw_pool=auxbas_pw_pool)
CALL auxbas_pw_pool%give_back_pw(embed_pot)
IF (ASSOCIATED(embed_pot)) THEN
CALL embed_pot%release()
DEALLOCATE (embed_pot)
END IF
IF (ASSOCIATED(spin_embed_pot)) THEN
CALL auxbas_pw_pool%give_back_pw(spin_embed_pot)
CALL spin_embed_pot%release()
DEALLOCATE (spin_embed_pot)
END IF
END IF
END IF
! Only the rank 0 process collect info for each computation
IF (force_env%sub_force_env(iforce_eval)%force_env%para_env%is_source()) THEN
CALL force_env_get(force_env%sub_force_env(iforce_eval)%force_env, &
potential_energy=energy)
CALL cp_subsys_get(subsystems(iforce_eval)%subsys, &
results=loc_results)
energies(iforce_eval) = energy
glob_natoms(iforce_eval) = natom
CALL cp_result_copy(loc_results, results(iforce_eval)%results)
END IF
! Deallocate map_index array
IF (ASSOCIATED(map_index)) THEN
DEALLOCATE (map_index)
END IF
CALL cp_rm_default_logger()
END DO
! Handling Parallel execution
CALL force_env%para_env%sync()
! Let's transfer energy, natom
CALL force_env%para_env%sum(energies)
CALL force_env%para_env%sum(glob_natoms)
force_env%embed_env%energies = energies
!NB if the first system has fewer atoms than the second)
DO iparticle = 1, SIZE(particles_embed%els)
particles_embed%els(iparticle)%f(:) = 0.0_dp
END DO
! ONIOM type of mixing in embedding: E = E_total + E_cluster_high - E_cluster
force_env%embed_env%pot_energy = energies(3) + energies(4) - energies(2)
!Simply deallocate and loose the pointer references..
DO iforce_eval = 1, nforce_eval
CALL cp_result_release(results(iforce_eval)%results)
END DO
DEALLOCATE (subsystems)
DEALLOCATE (particles)
DEALLOCATE (energies)
DEALLOCATE (glob_natoms)
DEALLOCATE (results)
END SUBROUTINE embed_energy
! **************************************************************************************************
!> \brief ...
!> \param force_env ...
!> \param ref_subsys_number ...
!> \param energies ...
!> \param converged_embed ...
! **************************************************************************************************
SUBROUTINE dft_embedding(force_env, ref_subsys_number, energies, converged_embed)
TYPE(force_env_type), POINTER :: force_env
INTEGER :: ref_subsys_number
REAL(KIND=dp), DIMENSION(:), POINTER :: energies
LOGICAL :: converged_embed
INTEGER :: embed_method
TYPE(section_vals_type), POINTER :: embed_section, force_env_section
! Find out which embedding scheme is used
CALL force_env_get(force_env=force_env, &
force_env_section=force_env_section)
embed_section => section_vals_get_subs_vals(force_env_section, "EMBED")
CALL section_vals_val_get(embed_section, "EMBED_METHOD", i_val=embed_method)
SELECT CASE (embed_method)
CASE (dfet)
! Density functional embedding
CALL dfet_embedding(force_env, ref_subsys_number, energies, converged_embed)
CASE (dmfet)
! Density matrix embedding theory
CALL dmfet_embedding(force_env, ref_subsys_number, energies, converged_embed)
END SELECT
END SUBROUTINE dft_embedding
! **************************************************************************************************
!> \brief ... Main driver for DFT embedding
!> \param force_env ...
!> \param ref_subsys_number ...
!> \param energies ...
!> \param converged_embed ...
!> \author Vladimir Rybkin
! **************************************************************************************************
SUBROUTINE dfet_embedding(force_env, ref_subsys_number, energies, converged_embed)
TYPE(force_env_type), POINTER :: force_env
INTEGER :: ref_subsys_number
REAL(KIND=dp), DIMENSION(:), POINTER :: energies
LOGICAL :: converged_embed
CHARACTER(LEN=*), PARAMETER :: routineN = 'dfet_embedding'
INTEGER :: cluster_subsys_num, handle, &
i_force_eval, i_iter, i_spin, &
nforce_eval, nspins, nspins_subsys, &
output_unit
REAL(KIND=dp) :: cluster_energy
REAL(KIND=dp), DIMENSION(:), POINTER :: rhs
TYPE(cp_logger_type), POINTER :: logger
TYPE(dft_control_type), POINTER :: dft_control
TYPE(opt_embed_pot_type) :: opt_embed
TYPE(pw_env_type), POINTER :: pw_env
TYPE(pw_pool_type), POINTER :: auxbas_pw_pool
TYPE(pw_r3d_rs_type) :: diff_rho_r, diff_rho_spin
TYPE(pw_r3d_rs_type), DIMENSION(:), POINTER :: rho_r_ref, rho_r_subsys
TYPE(pw_r3d_rs_type), POINTER :: embed_pot, embed_pot_subsys, &
spin_embed_pot, spin_embed_pot_subsys
TYPE(qs_energy_type), POINTER :: energy
TYPE(qs_rho_type), POINTER :: rho, subsys_rho
TYPE(section_vals_type), POINTER :: dft_section, embed_section, &
force_env_section, input, &
mapping_section, opt_embed_section
CALL timeset(routineN, handle)
CALL cite_reference(Huang2011)
CALL cite_reference(Heaton_Burgess2007)
CALL get_qs_env(qs_env=force_env%sub_force_env(ref_subsys_number)%force_env%qs_env)
! Reveal input file
NULLIFY (logger)
logger => cp_get_default_logger()
output_unit = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%PROGRAM_RUN_INFO", &
extension=".Log")
NULLIFY (dft_section, input, opt_embed_section)
NULLIFY (energy, dft_control)
CALL get_qs_env(qs_env=force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
pw_env=pw_env, dft_control=dft_control, rho=rho, energy=energy, &
input=input)
nspins = dft_control%nspins
dft_section => section_vals_get_subs_vals(input, "DFT")
opt_embed_section => section_vals_get_subs_vals(input, &
"DFT%QS%OPT_EMBED")
! Rho_r is the reference
CALL qs_rho_get(rho_struct=rho, rho_r=rho_r_ref)
! We need to understand how to treat spins states
CALL understand_spin_states(force_env, ref_subsys_number, opt_embed%change_spin, opt_embed%open_shell_embed, &
opt_embed%all_nspins)
! Prepare everything for the potential maximization
CALL prepare_embed_opt(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, opt_embed, &
opt_embed_section)
! Initialize embedding potential
CALL init_embed_pot(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, embed_pot, &
opt_embed%add_const_pot, opt_embed%Fermi_Amaldi, opt_embed%const_pot, &
opt_embed%open_shell_embed, spin_embed_pot, &
opt_embed%pot_diff, opt_embed%Coulomb_guess, opt_embed%grid_opt)
! Read embedding potential vector from the file
IF (opt_embed%read_embed_pot .OR. opt_embed%read_embed_pot_cube) CALL read_embed_pot( &
force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, embed_pot, spin_embed_pot, &
opt_embed_section, opt_embed)
! Prepare the pw object to store density differences
CALL pw_env_get(pw_env, auxbas_pw_pool=auxbas_pw_pool)
CALL auxbas_pw_pool%create_pw(diff_rho_r)
CALL pw_zero(diff_rho_r)
IF (opt_embed%open_shell_embed) THEN
CALL auxbas_pw_pool%create_pw(diff_rho_spin)
CALL pw_zero(diff_rho_spin)
END IF
! Check the preliminary density differences
DO i_spin = 1, nspins
CALL pw_axpy(rho_r_ref(i_spin), diff_rho_r, -1.0_dp)
END DO
IF (opt_embed%open_shell_embed) THEN ! Spin part
IF (nspins .EQ. 2) THEN ! Reference systems has an open shell, else the reference diff_rho_spin is zero
CALL pw_axpy(rho_r_ref(1), diff_rho_spin, -1.0_dp)
CALL pw_axpy(rho_r_ref(2), diff_rho_spin, 1.0_dp)
END IF
END IF
DO i_force_eval = 1, ref_subsys_number - 1
NULLIFY (subsys_rho, rho_r_subsys, dft_control)
CALL get_qs_env(force_env%sub_force_env(i_force_eval)%force_env%qs_env, rho=subsys_rho, energy=energy, &
dft_control=dft_control)
nspins_subsys = dft_control%nspins
! Add subsystem densities
CALL qs_rho_get(rho_struct=subsys_rho, rho_r=rho_r_subsys)
DO i_spin = 1, nspins_subsys
CALL pw_axpy(rho_r_subsys(i_spin), diff_rho_r, allow_noncompatible_grids=.TRUE.)
END DO
IF (opt_embed%open_shell_embed) THEN ! Spin part
IF (nspins_subsys .EQ. 2) THEN ! The subsystem makes contribution if it is spin-polarized
! We may need to change spin ONLY FOR THE SECOND SUBSYSTEM: that's the internal convention
IF ((i_force_eval .EQ. 2) .AND. (opt_embed%change_spin)) THEN
CALL pw_axpy(rho_r_subsys(1), diff_rho_spin, -1.0_dp, allow_noncompatible_grids=.TRUE.)
CALL pw_axpy(rho_r_subsys(2), diff_rho_spin, 1.0_dp, allow_noncompatible_grids=.TRUE.)
ELSE
! First subsystem (always) and second subsystem (without spin change)
CALL pw_axpy(rho_r_subsys(1), diff_rho_spin, 1.0_dp, allow_noncompatible_grids=.TRUE.)
CALL pw_axpy(rho_r_subsys(2), diff_rho_spin, -1.0_dp, allow_noncompatible_grids=.TRUE.)
END IF
END IF
END IF
END DO
! Print density difference
CALL print_rho_diff(diff_rho_r, 0, force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, .FALSE.)
IF (opt_embed%open_shell_embed) THEN ! Spin part
CALL print_rho_spin_diff(diff_rho_spin, 0, force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, .FALSE.)
END IF
! Construct electrostatic guess if needed
IF (opt_embed%Coulomb_guess) THEN
! Reveal resp charges for total system
nforce_eval = SIZE(force_env%sub_force_env)
NULLIFY (rhs)
CALL get_qs_env(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, rhs=rhs)
! Get the mapping
CALL force_env_get(force_env=force_env, &
force_env_section=force_env_section)
embed_section => section_vals_get_subs_vals(force_env_section, "EMBED")
mapping_section => section_vals_get_subs_vals(embed_section, "MAPPING")
DO i_force_eval = 1, ref_subsys_number - 1
IF (i_force_eval .EQ. 1) THEN
CALL Coulomb_guess(embed_pot, rhs, mapping_section, &
force_env%sub_force_env(i_force_eval)%force_env%qs_env, nforce_eval, i_force_eval, opt_embed%eta)
ELSE
CALL Coulomb_guess(opt_embed%pot_diff, rhs, mapping_section, &
force_env%sub_force_env(i_force_eval)%force_env%qs_env, nforce_eval, i_force_eval, opt_embed%eta)
END IF
END DO
CALL pw_axpy(opt_embed%pot_diff, embed_pot)
IF (.NOT. opt_embed%grid_opt) CALL pw_copy(embed_pot, opt_embed%const_pot)
END IF
! Difference guess
IF (opt_embed%diff_guess) THEN
CALL pw_copy(diff_rho_r, embed_pot)
IF (.NOT. opt_embed%grid_opt) CALL pw_copy(embed_pot, opt_embed%const_pot)
! Open shell
IF (opt_embed%open_shell_embed) CALL pw_copy(diff_rho_spin, spin_embed_pot)
END IF
! Calculate subsystems with trial embedding potential
DO i_iter = 1, opt_embed%n_iter
opt_embed%i_iter = i_iter
! Set the density difference as the negative reference one
CALL pw_zero(diff_rho_r)
CALL get_qs_env(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, dft_control=dft_control)
nspins = dft_control%nspins
DO i_spin = 1, nspins
CALL pw_axpy(rho_r_ref(i_spin), diff_rho_r, -1.0_dp)
END DO
IF (opt_embed%open_shell_embed) THEN ! Spin part
CALL pw_zero(diff_rho_spin)
IF (nspins .EQ. 2) THEN ! Reference systems has an open shell, else the reference diff_rho_spin is zero
CALL pw_axpy(rho_r_ref(1), diff_rho_spin, -1.0_dp)
CALL pw_axpy(rho_r_ref(2), diff_rho_spin, 1.0_dp)
END IF
END IF
DO i_force_eval = 1, ref_subsys_number - 1
NULLIFY (dft_control)
CALL get_qs_env(force_env%sub_force_env(i_force_eval)%force_env%qs_env, dft_control=dft_control)
nspins_subsys = dft_control%nspins
IF ((i_force_eval .EQ. 2) .AND. (opt_embed%change_spin)) THEN
! Here we change the sign of the spin embedding potential due to spin change:
! only in spin_embed_subsys
CALL make_subsys_embed_pot(force_env%sub_force_env(i_force_eval)%force_env%qs_env, &
embed_pot, embed_pot_subsys, spin_embed_pot, spin_embed_pot_subsys, &
opt_embed%open_shell_embed, .TRUE.)
ELSE ! Regular case
CALL make_subsys_embed_pot(force_env%sub_force_env(i_force_eval)%force_env%qs_env, &
embed_pot, embed_pot_subsys, spin_embed_pot, spin_embed_pot_subsys, &
opt_embed%open_shell_embed, .FALSE.)
END IF
! Switch on external potential in the subsystems
dft_control%apply_embed_pot = .TRUE.
! Add the embedding potential
CALL set_qs_env(force_env%sub_force_env(i_force_eval)%force_env%qs_env, embed_pot=embed_pot_subsys)
IF ((opt_embed%open_shell_embed) .AND. (nspins_subsys .EQ. 2)) THEN ! Spin part
CALL set_qs_env(force_env%sub_force_env(i_force_eval)%force_env%qs_env, &
spin_embed_pot=spin_embed_pot_subsys)
END IF
! Get the previous subsystem densities
CALL get_prev_density(opt_embed, force_env%sub_force_env(i_force_eval)%force_env, i_force_eval)
! Calculate the new density
CALL force_env_calc_energy_force(force_env=force_env%sub_force_env(i_force_eval)%force_env, &
calc_force=.FALSE., &
skip_external_control=.TRUE.)
CALL get_max_subsys_diff(opt_embed, force_env%sub_force_env(i_force_eval)%force_env, i_force_eval)
! Extract subsystem density and energy
NULLIFY (rho_r_subsys, energy)
CALL get_qs_env(force_env%sub_force_env(i_force_eval)%force_env%qs_env, rho=subsys_rho, &
energy=energy)
opt_embed%w_func(i_iter) = opt_embed%w_func(i_iter) + energy%total
! Find out which subsystem is the cluster
IF (dft_control%qs_control%cluster_embed_subsys) THEN
cluster_subsys_num = i_force_eval
cluster_energy = energy%total
END IF
! Add subsystem densities
CALL qs_rho_get(rho_struct=subsys_rho, rho_r=rho_r_subsys)
DO i_spin = 1, nspins_subsys
CALL pw_axpy(rho_r_subsys(i_spin), diff_rho_r, allow_noncompatible_grids=.TRUE.)
END DO
IF (opt_embed%open_shell_embed) THEN ! Spin part
IF (nspins_subsys .EQ. 2) THEN ! The subsystem makes contribution if it is spin-polarized
! We may need to change spin ONLY FOR THE SECOND SUBSYSTEM: that's the internal convention
IF ((i_force_eval .EQ. 2) .AND. (opt_embed%change_spin)) THEN
CALL pw_axpy(rho_r_subsys(1), diff_rho_spin, -1.0_dp, allow_noncompatible_grids=.TRUE.)
CALL pw_axpy(rho_r_subsys(2), diff_rho_spin, 1.0_dp, allow_noncompatible_grids=.TRUE.)
ELSE
! First subsystem (always) and second subsystem (without spin change)
CALL pw_axpy(rho_r_subsys(1), diff_rho_spin, 1.0_dp, allow_noncompatible_grids=.TRUE.)
CALL pw_axpy(rho_r_subsys(2), diff_rho_spin, -1.0_dp, allow_noncompatible_grids=.TRUE.)
END IF
END IF
END IF
! Release embedding potential for subsystem
CALL embed_pot_subsys%release()
DEALLOCATE (embed_pot_subsys)
IF (opt_embed%open_shell_embed) THEN
CALL spin_embed_pot_subsys%release()
DEALLOCATE (spin_embed_pot_subsys)
END IF
END DO ! i_force_eval
! Print embedding potential for restart
CALL print_embed_restart(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
opt_embed%dimen_aux, opt_embed%embed_pot_coef, embed_pot, i_iter, &
spin_embed_pot, opt_embed%open_shell_embed, opt_embed%grid_opt, .FALSE.)
CALL print_pot_simple_grid(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
embed_pot, spin_embed_pot, i_iter, opt_embed%open_shell_embed, .FALSE., &
force_env%sub_force_env(cluster_subsys_num)%force_env%qs_env)
! Integrate the potential over density differences and add to w functional; also add regularization contribution
DO i_spin = 1, nspins ! Sum over nspins for the reference system, not subsystem!
opt_embed%w_func(i_iter) = opt_embed%w_func(i_iter) - pw_integral_ab(embed_pot, rho_r_ref(i_spin))
END DO
! Spin part
IF (opt_embed%open_shell_embed) THEN
! If reference system is not spin-polarized then it does not make a contribution to W functional
IF (nspins .EQ. 2) THEN
opt_embed%w_func(i_iter) = opt_embed%w_func(i_iter) &
- pw_integral_ab(spin_embed_pot, rho_r_ref(1)) &
+ pw_integral_ab(spin_embed_pot, rho_r_ref(2))
END IF
END IF
! Finally, add the regularization term
opt_embed%w_func(i_iter) = opt_embed%w_func(i_iter) + opt_embed%reg_term
! Print information and check convergence
CALL print_emb_opt_info(output_unit, i_iter, opt_embed)
CALL conv_check_embed(opt_embed, diff_rho_r, diff_rho_spin, output_unit)
IF (opt_embed%converged) EXIT
! Update the trust radius and control the step
IF ((i_iter .GT. 1) .AND. (.NOT. opt_embed%steep_desc)) CALL step_control(opt_embed)
! Print density difference
CALL print_rho_diff(diff_rho_r, i_iter, force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, .FALSE.)
IF (opt_embed%open_shell_embed) THEN ! Spin part
CALL print_rho_spin_diff(diff_rho_spin, i_iter, force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, .FALSE.)
END IF
! Calculate potential gradient if the step has been accepted. Otherwise, we reuse the previous one
IF (opt_embed%accept_step .AND. (.NOT. opt_embed%grid_opt)) &
CALL calculate_embed_pot_grad(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
diff_rho_r, diff_rho_spin, opt_embed)
! Take the embedding step
CALL opt_embed_step(diff_rho_r, diff_rho_spin, opt_embed, embed_pot, spin_embed_pot, rho_r_ref, &
force_env%sub_force_env(ref_subsys_number)%force_env%qs_env)
END DO ! i_iter
! Print final embedding potential for restart
CALL print_embed_restart(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
opt_embed%dimen_aux, opt_embed%embed_pot_coef, embed_pot, i_iter, &
spin_embed_pot, opt_embed%open_shell_embed, opt_embed%grid_opt, .TRUE.)
CALL print_pot_simple_grid(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
embed_pot, spin_embed_pot, i_iter, opt_embed%open_shell_embed, .TRUE., &
force_env%sub_force_env(cluster_subsys_num)%force_env%qs_env)
! Print final density difference
!CALL print_rho_diff(diff_rho_r, i_iter, force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, .TRUE.)
IF (opt_embed%open_shell_embed) THEN ! Spin part
CALL print_rho_spin_diff(diff_rho_spin, i_iter, force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, .TRUE.)
END IF
! Give away plane waves pools
CALL diff_rho_r%release()
IF (opt_embed%open_shell_embed) THEN
CALL diff_rho_spin%release()
END IF
CALL cp_print_key_finished_output(output_unit, logger, force_env%force_env_section, &
"PRINT%PROGRAM_RUN_INFO")
! If converged send the embedding potential to the higher-level calculation.
IF (opt_embed%converged) THEN
CALL get_qs_env(force_env%sub_force_env(ref_subsys_number + 1)%force_env%qs_env, dft_control=dft_control, &
pw_env=pw_env)
nspins_subsys = dft_control%nspins
dft_control%apply_embed_pot = .TRUE.
! The embedded subsystem corresponds to subsystem #2, where spin change is possible
CALL make_subsys_embed_pot(force_env%sub_force_env(ref_subsys_number + 1)%force_env%qs_env, &
embed_pot, embed_pot_subsys, spin_embed_pot, spin_embed_pot_subsys, &
opt_embed%open_shell_embed, opt_embed%change_spin)
IF (opt_embed%Coulomb_guess) THEN
CALL pw_axpy(opt_embed%pot_diff, embed_pot_subsys, -1.0_dp, allow_noncompatible_grids=.TRUE.)
END IF
CALL set_qs_env(force_env%sub_force_env(ref_subsys_number + 1)%force_env%qs_env, embed_pot=embed_pot_subsys)
IF ((opt_embed%open_shell_embed) .AND. (nspins_subsys .EQ. 2)) THEN
CALL set_qs_env(force_env%sub_force_env(ref_subsys_number + 1)%force_env%qs_env, &
spin_embed_pot=spin_embed_pot_subsys)
END IF
! Substitute the correct energy in energies: only on rank 0
IF (force_env%sub_force_env(cluster_subsys_num)%force_env%para_env%is_source()) THEN
energies(cluster_subsys_num) = cluster_energy
END IF
END IF
! Deallocate and release opt_embed content
CALL release_opt_embed(opt_embed)
! Deallocate embedding potential
CALL embed_pot%release()
DEALLOCATE (embed_pot)
IF (opt_embed%open_shell_embed) THEN
CALL spin_embed_pot%release()
DEALLOCATE (spin_embed_pot)
END IF
converged_embed = opt_embed%converged
CALL timestop(handle)
END SUBROUTINE dfet_embedding
! **************************************************************************************************
!> \brief Main driver for the DMFET embedding
!> \param force_env ...
!> \param ref_subsys_number ...
!> \param energies ...
!> \param converged_embed ...
!> \author Vladimir Rybkin
! **************************************************************************************************
SUBROUTINE dmfet_embedding(force_env, ref_subsys_number, energies, converged_embed)
TYPE(force_env_type), POINTER :: force_env
INTEGER :: ref_subsys_number
REAL(KIND=dp), DIMENSION(:), POINTER :: energies
LOGICAL :: converged_embed
CHARACTER(LEN=*), PARAMETER :: routineN = 'dmfet_embedding'
INTEGER :: cluster_subsys_num, handle, &
i_force_eval, i_iter, output_unit
LOGICAL :: subsys_open_shell
REAL(KIND=dp) :: cluster_energy
TYPE(cp_logger_type), POINTER :: logger
TYPE(dft_control_type), POINTER :: dft_control
TYPE(mp_para_env_type), POINTER :: para_env
TYPE(opt_dmfet_pot_type) :: opt_dmfet
TYPE(qs_energy_type), POINTER :: energy
TYPE(section_vals_type), POINTER :: dft_section, input, opt_dmfet_section
CALL timeset(routineN, handle)
CALL get_qs_env(qs_env=force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
para_env=para_env)
! Reveal input file
NULLIFY (logger)
logger => cp_get_default_logger()
output_unit = cp_print_key_unit_nr(logger, force_env%force_env_section, "PRINT%PROGRAM_RUN_INFO", &
extension=".Log")
NULLIFY (dft_section, input, opt_dmfet_section)
NULLIFY (energy)
CALL get_qs_env(qs_env=force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
energy=energy, input=input)
dft_section => section_vals_get_subs_vals(input, "DFT")
opt_dmfet_section => section_vals_get_subs_vals(input, &
"DFT%QS%OPT_DMFET")
! We need to understand how to treat spins states
CALL understand_spin_states(force_env, ref_subsys_number, opt_dmfet%change_spin, opt_dmfet%open_shell_embed, &
opt_dmfet%all_nspins)
! Prepare for the potential optimization
CALL prepare_dmfet_opt(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
opt_dmfet, opt_dmfet_section)
! Get the reference density matrix/matrices
subsys_open_shell = subsys_spin(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env)
CALL build_full_dm(force_env%sub_force_env(ref_subsys_number)%force_env%qs_env, &
opt_dmfet%dm_total, subsys_open_shell, opt_dmfet%open_shell_embed, opt_dmfet%dm_total_beta)
! Check the preliminary DM difference
CALL cp_fm_copy_general(opt_dmfet%dm_total, opt_dmfet%dm_diff, para_env)
IF (opt_dmfet%open_shell_embed) CALL cp_fm_copy_general(opt_dmfet%dm_total_beta, &
opt_dmfet%dm_diff_beta, para_env)
DO i_force_eval = 1, ref_subsys_number - 1
! Get the subsystem density matrix/matrices
subsys_open_shell = subsys_spin(force_env%sub_force_env(i_force_eval)%force_env%qs_env)
CALL build_full_dm(force_env%sub_force_env(i_force_eval)%force_env%qs_env, &
opt_dmfet%dm_subsys, subsys_open_shell, opt_dmfet%open_shell_embed, &
opt_dmfet%dm_subsys_beta)
CALL cp_fm_scale_and_add(-1.0_dp, opt_dmfet%dm_diff, 1.0_dp, opt_dmfet%dm_subsys)
IF (opt_dmfet%open_shell_embed) CALL cp_fm_scale_and_add(-1.0_dp, opt_dmfet%dm_diff_beta, &
1.0_dp, opt_dmfet%dm_subsys_beta)
END DO
! Main loop of iterative matrix potential optimization
DO i_iter = 1, opt_dmfet%n_iter
opt_dmfet%i_iter = i_iter
! Set the dm difference as the reference one
CALL cp_fm_copy_general(opt_dmfet%dm_total, opt_dmfet%dm_diff, para_env)
IF (opt_dmfet%open_shell_embed) CALL cp_fm_copy_general(opt_dmfet%dm_total_beta, &
opt_dmfet%dm_diff_beta, para_env)
! Loop over force evaluations
DO i_force_eval = 1, ref_subsys_number - 1
! Switch on external potential in the subsystems
NULLIFY (dft_control)
CALL get_qs_env(force_env%sub_force_env(i_force_eval)%force_env%qs_env, dft_control=dft_control)
dft_control%apply_dmfet_pot = .TRUE.
! Calculate the new density
CALL force_env_calc_energy_force(force_env=force_env%sub_force_env(i_force_eval)%force_env, &
calc_force=.FALSE., &
skip_external_control=.TRUE.)
! Extract subsystem density matrix and energy
NULLIFY (energy)
CALL get_qs_env(force_env%sub_force_env(i_force_eval)%force_env%qs_env, energy=energy)
opt_dmfet%w_func(i_iter) = opt_dmfet%w_func(i_iter) + energy%total
! Find out which subsystem is the cluster
IF (dft_control%qs_control%cluster_embed_subsys) THEN
cluster_subsys_num = i_force_eval
cluster_energy = energy%total
END IF
! Add subsystem density matrices
subsys_open_shell = subsys_spin(force_env%sub_force_env(i_force_eval)%force_env%qs_env)
CALL build_full_dm(force_env%sub_force_env(i_force_eval)%force_env%qs_env, &
opt_dmfet%dm_subsys, subsys_open_shell, opt_dmfet%open_shell_embed, &
opt_dmfet%dm_subsys_beta)
IF (opt_dmfet%open_shell_embed) THEN ! Open-shell embedding
! We may need to change spin ONLY FOR THE SECOND SUBSYSTEM: that's the internal convention
IF ((i_force_eval .EQ. 2) .AND. (opt_dmfet%change_spin)) THEN
CALL cp_fm_scale_and_add(-1.0_dp, opt_dmfet%dm_diff_beta, 1.0_dp, opt_dmfet%dm_subsys)
CALL cp_fm_scale_and_add(-1.0_dp, opt_dmfet%dm_diff, 1.0_dp, opt_dmfet%dm_subsys_beta)
ELSE
CALL cp_fm_scale_and_add(-1.0_dp, opt_dmfet%dm_diff, 1.0_dp, opt_dmfet%dm_subsys)
CALL cp_fm_scale_and_add(-1.0_dp, opt_dmfet%dm_diff_beta, 1.0_dp, opt_dmfet%dm_subsys_beta)
END IF
ELSE ! Closed-shell embedding
CALL cp_fm_scale_and_add(-1.0_dp, opt_dmfet%dm_diff, 1.0_dp, opt_dmfet%dm_subsys)
END IF
END DO ! i_force_eval
CALL check_dmfet(opt_dmfet, force_env%sub_force_env(ref_subsys_number)%force_env%qs_env)
END DO ! i_iter
! Substitute the correct energy in energies: only on rank 0
IF (force_env%sub_force_env(cluster_subsys_num)%force_env%para_env%is_source()) THEN
energies(cluster_subsys_num) = cluster_energy
END IF
CALL release_dmfet_opt(opt_dmfet)
converged_embed = .FALSE.
END SUBROUTINE dmfet_embedding
END MODULE force_env_methods