21 USE iso_c_binding,
ONLY: c_char,&
46#include "../base/base_uses.f90"
64 INTEGER(C_INT),
POINTER :: coords(:) => null()
65 REAL(C_DOUBLE),
POINTER :: values(:) => null()
68 PROCEDURE :: func => eri2array_func
79 CHARACTER(LEN=1, KIND=C_CHAR),
INTENT(OUT) :: version_str(*)
80 INTEGER(C_INT),
VALUE :: str_length
85 cpassert(str_length >= n + 1)
92 version_str(n + 1) = c_null_char
120 INTEGER(C_INT),
VALUE :: mpi_comm
125 CALL my_mpi_comm%set_handle(int(mpi_comm))
126 CALL init_cp2k(.false., ierr, my_mpi_comm)
157 INTEGER(C_INT),
INTENT(OUT) :: new_env_id
158 CHARACTER(LEN=1, KIND=C_CHAR),
INTENT(IN) :: input_file_path(*), output_file_path(*)
160 CHARACTER(LEN=default_path_length) :: ifp, ofp
161 INTEGER :: ierr, ncopied
168 NULLIFY (input_declaration)
183 INTEGER(C_INT),
INTENT(OUT) :: new_env_id
184 CHARACTER(LEN=1, KIND=C_CHAR),
INTENT(IN) :: input_file_path(*), output_file_path(*)
185 INTEGER(C_INT),
VALUE :: mpi_comm
187 CHARACTER(LEN=default_path_length) :: ifp, ofp
188 INTEGER :: ierr, ncopied
196 NULLIFY (input_declaration)
198 CALL my_mpi_comm%set_handle(int(mpi_comm))
199 CALL create_force_env(new_env_id, input_declaration, ifp, ofp, my_mpi_comm, ierr=ierr)
209 INTEGER(C_INT),
VALUE :: env_id
224 INTEGER(C_INT),
VALUE :: env_id, n_el
225 REAL(c_double),
DIMENSION(1:n_el),
INTENT(IN) :: new_pos
229 CALL set_pos(env_id, new_pos, n_el, ierr)
240 INTEGER(C_INT),
VALUE :: env_id, n_el
241 REAL(c_double),
DIMENSION(1:n_el),
INTENT(IN) :: new_vel
245 CALL set_vel(env_id, new_vel, n_el, ierr)
255 INTEGER(C_INT),
VALUE :: env_id
256 REAL(c_double),
DIMENSION(3, 3),
INTENT(IN) :: new_cell
260 CALL set_cell(env_id, new_cell, ierr)
272 INTEGER(C_INT),
VALUE :: env_id
273 CHARACTER(LEN=1, KIND=C_CHAR),
INTENT(IN) :: description(*)
274 INTEGER(C_INT),
VALUE :: n_el
275 REAL(c_double),
DIMENSION(1:n_el),
INTENT(OUT) :: result
277 CHARACTER(LEN=default_string_length) :: desc_low
278 INTEGER :: ierr, ncopied
283 CALL get_result_r1(env_id, desc_low, n_el, result, ierr=ierr)
293 INTEGER(C_INT),
VALUE :: env_id
294 INTEGER(C_INT),
INTENT(OUT) :: natom
308 INTEGER(C_INT),
VALUE :: env_id
309 INTEGER(C_INT),
INTENT(OUT) :: nparticle
324 INTEGER(C_INT),
VALUE :: env_id, n_el
325 REAL(c_double),
DIMENSION(1:n_el),
INTENT(OUT) :: pos
329 CALL get_pos(env_id, pos, n_el, ierr)
340 INTEGER(C_INT),
VALUE :: env_id, n_el
341 REAL(c_double),
DIMENSION(1:n_el),
INTENT(OUT) :: force
345 CALL get_force(env_id, force, n_el, ierr)
355 INTEGER(C_INT),
VALUE :: env_id
356 REAL(c_double),
INTENT(OUT) :: e_pot
370 INTEGER(C_INT),
VALUE :: env_id
371 REAL(c_double),
DIMENSION(3, 3),
INTENT(OUT) :: cell
375 CALL get_cell(env_id, cell=cell, ierr=ierr)
385 INTEGER(C_INT),
VALUE :: env_id
386 REAL(c_double),
DIMENSION(3, 3),
INTENT(OUT) :: cell
399 INTEGER(C_INT),
VALUE :: env_id
412 INTEGER(C_INT),
VALUE :: env_id
426 CHARACTER(LEN=1, KIND=C_CHAR),
INTENT(IN) :: input_file_path(*), output_file_path(*)
428 CHARACTER(LEN=default_path_length) :: ifp, ofp
436 NULLIFY (input_declaration)
438 CALL run_input(input_declaration, ifp, ofp, empty_initial_variables)
449 CHARACTER(LEN=1, KIND=C_CHAR),
INTENT(IN) :: input_file_path(*), output_file_path(*)
450 INTEGER(C_INT),
VALUE :: mpi_comm
452 CHARACTER(LEN=default_path_length) :: ifp, ofp
461 NULLIFY (input_declaration)
463 CALL my_mpi_comm%set_handle(int(mpi_comm))
464 CALL run_input(input_declaration, ifp, ofp, empty_initial_variables, my_mpi_comm)
478 INTEGER(C_INT),
VALUE :: f_env_id
479 TYPE(c_funptr),
VALUE :: func_ptr
481 INTEGER :: ierr, in_use
488 f_env%force_env%qs_env%transport_env%ext_c_method_ptr = func_ptr
504 INTEGER(C_INT),
VALUE :: f_env_id
516 CALL get_qs_env(f_env%force_env%qs_env, active_space=active_space_env)
518 IF (.NOT.
ASSOCIATED(active_space_env))
THEN
522 CALL get_mo_set(active_space_env%mos_active(1), nmo=nmo)
541 INTEGER(C_INT),
VALUE :: f_env_id
542 INTEGER(C_LONG),
VALUE :: buf_len
543 REAL(c_double),
DIMENSION(0:buf_len-1), &
546 INTEGER :: i, ierr, j, norb
547 REAL(c_double) :: mval
549 TYPE(f_env_type),
POINTER :: f_env
554 CALL f_env_add_defaults(f_env_id, f_env)
557 CALL get_qs_env(f_env%force_env%qs_env, active_space=active_space_env)
559 IF (.NOT.
ASSOCIATED(active_space_env))
THEN
563 CALL get_mo_set(active_space_env%mos_active(1), nmo=norb)
565 IF (buf_len < norb*norb)
THEN
571 CALL cp_fm_get_element(active_space_env%fock_sub(1), i + 1, j + 1, mval)
572 buf(norb*i + j) = mval
573 buf(norb*j + i) = mval
581 CALL f_env_rm_defaults(f_env, ierr)
594 INTEGER(C_INT),
VALUE :: f_env_id
598 TYPE(f_env_type),
POINTER :: f_env
603 CALL f_env_add_defaults(f_env_id, f_env)
606 CALL get_qs_env(f_env%force_env%qs_env, active_space=active_space_env)
608 IF (.NOT.
ASSOCIATED(active_space_env))
THEN
612 nze_count = int(active_space_env%eri%eri(1)%csr_mat%nze_total, kind(nze_count))
615 CALL f_env_rm_defaults(f_env, ierr)
630 buf_coords, buf_coords_len, &
631 buf_values, buf_values_len)
RESULT(nelem)
BIND(C)
635 INTEGER(C_INT),
INTENT(IN),
VALUE :: f_env_id
636 INTEGER(C_LONG),
INTENT(IN),
VALUE :: buf_coords_len
637 INTEGER(C_INT),
INTENT(OUT),
TARGET :: buf_coords(1:buf_coords_len)
638 INTEGER(C_LONG),
INTENT(IN),
VALUE :: buf_values_len
639 REAL(c_double),
INTENT(OUT),
TARGET :: buf_values(1:buf_values_len)
643 TYPE(f_env_type),
POINTER :: f_env
648 CALL f_env_add_defaults(f_env_id, f_env)
651 CALL get_qs_env(f_env%force_env%qs_env, active_space=active_space_env)
653 IF (.NOT.
ASSOCIATED(active_space_env))
THEN
657 associate(nze => active_space_env%eri%eri(1)%csr_mat%nze_total)
658 IF (buf_coords_len < 4*nze .OR. buf_values_len < nze)
THEN
662 CALL active_space_env%eri%eri_foreach(1, active_space_env%active_orbitals, eri2array(buf_coords, buf_values))
664 nelem = int(nze, kind(nelem))
668 CALL f_env_rm_defaults(f_env, ierr)
683 LOGICAL FUNCTION eri2array_func(this, i, j, k, l, val)
RESULT(cont)
684 CLASS(eri2array),
INTENT(inout) :: this
685 INTEGER,
INTENT(in) :: i, j, k, l
686 REAL(kind=dp),
INTENT(in) :: val
688 this%coords(4*(this%idx - 1) + 1) = i
689 this%coords(4*(this%idx - 1) + 2) = j
690 this%coords(4*(this%idx - 1) + 3) = k
691 this%coords(4*(this%idx - 1) + 4) = l
692 this%values(this%idx) = val
694 this%idx = this%idx + 1
697 END FUNCTION eri2array_func
some minimal info about CP2K, including its version and license
character(len= *), parameter, public cp2k_version
subroutine, public run_input(input_declaration, input_file_path, output_file_path, initial_variables, mpi_comm)
runs the given input
represent a full matrix distributed on many processors
subroutine, public cp_fm_get_element(matrix, irow_global, icol_global, alpha, local)
returns an element of a fm this value is valid on every cpu using this call is expensive
interface to use cp2k as library
recursive subroutine, public destroy_force_env(env_id, ierr, q_finalize)
deallocates the force_env with the given id
subroutine, public set_vel(env_id, new_vel, n_el, ierr)
sets the velocities of the particles
subroutine, public get_nparticle(env_id, n_particle, ierr)
returns the number of particles in the given force env
subroutine, public get_natom(env_id, n_atom, ierr)
returns the number of atoms in the given force env
subroutine, public f_env_add_defaults(f_env_id, f_env, handle)
adds the default environments of the f_env to the stack of the defaults, and returns a new error and ...
subroutine, public get_cell(env_id, cell, per, ierr)
gets a cell
recursive subroutine, public calc_energy_force(env_id, calc_force, ierr)
updates the energy and the forces of given force_env
subroutine, public get_energy(env_id, e_pot, ierr)
returns the energy of the last configuration calculated
subroutine, public init_cp2k(init_mpi, ierr, mpi_comm)
initializes cp2k, needs to be called once before using any of the other functions when using cp2k as ...
subroutine, public get_qmmm_cell(env_id, cell, ierr)
gets the qmmm cell
subroutine, public get_pos(env_id, pos, n_el, ierr)
gets the positions of the particles
recursive subroutine, public create_force_env(new_env_id, input_declaration, input_path, output_path, mpi_comm, output_unit, owns_out_unit, input, ierr, work_dir, initial_variables)
creates a new force environment using the given input, and writing the output to the given output uni...
subroutine, public get_result_r1(env_id, description, n, result, res_exist, ierr)
gets a result from CP2K that is a real 1D array
subroutine, public set_cell(env_id, new_cell, ierr)
sets a new cell
subroutine, public finalize_cp2k(finalize_mpi, ierr)
cleanup after you have finished using this interface
subroutine, public set_pos(env_id, new_pos, n_el, ierr)
sets the positions of the particles
subroutine, public f_env_rm_defaults(f_env, ierr, handle)
removes the default environments of the f_env to the stack of the defaults, and sets ierr accordingly...
subroutine, public get_force(env_id, frc, n_el, ierr)
gets the forces of the particles
Interface for the force calculations.
recursive subroutine, public force_env_get(force_env, in_use, fist_env, qs_env, meta_env, fp_env, subsys, para_env, potential_energy, additional_potential, kinetic_energy, harmonic_shell, kinetic_shell, cell, sub_force_env, qmmm_env, qmmmx_env, eip_env, pwdft_env, globenv, input, force_env_section, method_name_id, root_section, mixed_env, nnp_env, embed_env, ipi_env)
returns various attributes about the force environment
integer, parameter, public use_qs_force
Defines the basic variable types.
integer, parameter, public dp
integer, parameter, public default_string_length
integer, parameter, public default_path_length
subroutine, public cp2k_create_force_env_comm(new_env_id, input_file_path, output_file_path, mpi_comm)
...
subroutine, public cp2k_get_nparticle(env_id, nparticle)
...
subroutine, public cp2k_get_natom(env_id, natom)
...
subroutine, public cp2k_calc_energy_force(env_id)
...
subroutine, public cp2k_finalize()
...
subroutine, public cp2k_finalize_without_mpi()
...
subroutine, public cp2k_run_input_comm(input_file_path, output_file_path, mpi_comm)
...
subroutine, public cp2k_run_input(input_file_path, output_file_path)
...
subroutine, public cp2k_init_without_mpi()
...
subroutine, public cp2k_get_potential_energy(env_id, e_pot)
...
integer(c_int) function, public cp2k_active_space_get_mo_count(f_env_id)
Get the number of molecular orbitals.
subroutine, public cp2k_get_cell(env_id, cell)
...
subroutine, public cp2k_create_force_env(new_env_id, input_file_path, output_file_path)
...
subroutine, public cp2k_init_without_mpi_comm(mpi_comm)
...
subroutine, public cp2k_set_velocities(env_id, new_vel, n_el)
...
subroutine, public cp2k_init()
...
subroutine, public cp2k_get_result(env_id, description, result, n_el)
...
subroutine, public cp2k_get_forces(env_id, force, n_el)
...
integer(c_long) function, public cp2k_active_space_get_eri_nze_count(f_env_id)
Get the number of non-zero elements of the ERI.
integer(c_long) function, public cp2k_active_space_get_fock_sub(f_env_id, buf, buf_len)
Get the active space Fock sub-matrix (as a full matrix)
subroutine, public cp2k_transport_set_callback(f_env_id, func_ptr)
Gets a function pointer pointing to a routine defined in C/C++ and passes it to the transport environ...
subroutine, public cp2k_get_qmmm_cell(env_id, cell)
...
subroutine, public cp2k_get_version(version_str, str_length)
...
subroutine, public cp2k_set_cell(env_id, new_cell)
...
integer(c_long) function, public cp2k_active_space_get_eri(f_env_id, buf_coords, buf_coords_len, buf_values, buf_values_len)
Get the electron repulsion integrals (as a sparse tensor)
subroutine, public cp2k_get_positions(env_id, pos, n_el)
...
subroutine, public cp2k_set_positions(env_id, new_pos, n_el)
...
subroutine, public cp2k_calc_energy(env_id)
...
subroutine, public cp2k_destroy_force_env(env_id)
...
Interface to the message passing library MPI.
The types needed for the calculation of active space Hamiltonians.
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, matrix_vhxc, 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.
Definition and initialisation of the mo data type.
subroutine, public get_mo_set(mo_set, maxocc, homo, lfomo, nao, nelectron, n_el_f, nmo, eigenvalues, occupation_numbers, mo_coeff, mo_coeff_b, uniform_occupation, kts, mu, flexible_electron_count)
Get the components of a MO set data structure.
Utilities for string manipulations.
integer function, public strlcpy_c2f(fstring, cstring)
Copy the content of a \0-terminated C-string to a finite-length Fortran string.
Abstract function object for the eri_type_eri_foreach method.