42#include "../base/base_uses.f90"
47 LOGICAL,
PRIVATE,
PARAMETER :: debug_this_module = .true.
48 CHARACTER(len=*),
PARAMETER,
PRIVATE :: moduleN =
'input_cp2k_vib'
64 cpassert(.NOT.
ASSOCIATED(section))
66 section, __location__, name=
"VIBRATIONAL_ANALYSIS", &
67 description=
"Section to setup parameters to perform a Normal Modes, vibrational, or phonon analysis. "// &
68 "Vibrations are computed using finite differences, "// &
69 "which implies a very tight (e.g. 1E-8) threshold is needed for EPS_SCF to get accurate low frequencies. "// &
70 "The analysis assumes a stationary state (minimum or TS),"// &
71 " i.e. tight geometry optimization (MAX_FORCE) is needed as well.", &
72 n_keywords=1, n_subsections=0, repeats=.false.)
73 NULLIFY (keyword, subsection)
76 description=
"Specify the increment to be used to construct the HESSIAN with "// &
77 "finite difference method", &
78 default_r_val=1.0e-2_dp, unit_str=
"bohr")
83 description=
"Specify the number of processors to be used per replica "// &
84 "environment (for parallel runs). "// &
85 "In case of mode selective calculations more than one replica will start"// &
86 " a block Davidson algorithm to track more than only one frequency", &
91 CALL keyword_create(keyword, __location__, name=
"PROC_DIST_TYPE", &
92 description=
"Specify the topology of the mapping of processors into replicas.", &
93 usage=
"PROC_DIST_TYPE (INTERLEAVED|BLOCKED)", &
94 enum_c_vals=
s2a(
"INTERLEAVED", &
96 enum_desc=
s2a(
"Interleaved distribution", &
97 "Blocked distribution"), &
103 CALL keyword_create(keyword, __location__, name=
"FULLY_PERIODIC", &
104 description=
"Avoids to clean rotations from the Hessian matrix.", &
105 default_l_val=.false., lone_keyword_l_val=.true.)
110 description=
"Calculation of the IR/Raman-Intensities. "// &
111 "Calculation of dipoles and/or polarizabilities have to be "// &
112 "specified explicitly in DFT/PRINT/MOMENTS and/or "// &
113 "PROPERTIES/LINRES/POLAR", &
114 default_l_val=.false., lone_keyword_l_val=.true.)
118 CALL keyword_create(keyword, __location__, name=
"THERMOCHEMISTRY", &
119 description=
"Calculation of the thermochemical data. Valid for molecules in "// &
120 "the gas phase, not supporting phonon frequencies at general **q**-points "// &
121 "beyond wave vector **q** at gamma point. Based on the rigid-rotor harmonic "// &
122 "oscillator (RRHO) model, which is known to break down if very low vibrational "// &
123 "frequencies are present in a flexible system.", &
124 default_l_val=.false., lone_keyword_l_val=.true.)
128 CALL keyword_create(keyword, __location__, name=
"TC_TEMPERATURE", &
129 description=
"Temperature for the calculation of the thermochemical data ", &
130 usage=
"tc_temperature 325.0", default_r_val=
cp_unit_to_cp2k(
value=273.150_dp, unit_str=
"K"), &
136 description=
"Pressure for the calculation of the thermochemical data ", &
137 default_r_val=
cp_unit_to_cp2k(
value=101325.0_dp, unit_str=
"Pa"), unit_str=
"Pa")
141 CALL create_mode_selective_section(subsection)
145 CALL create_print_vib_section(subsection)
155 SUBROUTINE create_print_vib_section(section)
161 cpassert(.NOT.
ASSOCIATED(section))
163 description=
"Section controlling the print information during a vibrational "// &
164 "analysis.", n_keywords=1, n_subsections=0, repeats=.false.)
165 NULLIFY (keyword, print_key)
168 description=
"Controls the printing of the vibrational analysis banner", &
170 filename=
"__STD_OUT__")
175 description=
"Controls the printing basic info about the vibrational method", &
181 description=
"Controls the printing for visualization in molden format", &
187 description=
"Controls the printing basic info during the cleaning of the "// &
188 "rotational degrees of freedom.", &
192 description=
"Prints atomic coordinates after rotation", &
193 default_l_val=.false., lone_keyword_l_val=.true.)
200 description=
"Controls the printing of Cartesian "// &
201 "frequencies and eigenvectors of the Hessian used "// &
202 "for initializing ensemble for MD calculations. "// &
203 "This should always print to a file, and will not "// &
204 "effect the same frequencies and eigenvectors printed "// &
205 "in the main vibrational analysis output", &
208 filename=
"VIBRATIONS")
209 CALL keyword_create(keyword, __location__, name=
"BACKUP_COPIES", &
210 description=
"Specifies the maximum number of backup copies.", &
211 usage=
"BACKUP_COPIES {int}", &
219 description=
"Adjust cartesian eigenvalues / vectors to NewtonX format.", &
221 filename=
"FullNormalizedCartesian")
222 CALL keyword_create(keyword, __location__, name=
"BACKUP_COPIES", &
223 description=
"Specifies the maximum number of backup copies.", &
224 usage=
"BACKUP_COPIES {int}", &
232 description=
"Write the Hessian matrix from a vibrational analysis calculation "// &
233 "into a binary file.", &
238 END SUBROUTINE create_print_vib_section
245 SUBROUTINE create_mode_selective_section(section)
251 NULLIFY (keyword, subsection, print_key)
252 cpassert(.NOT.
ASSOCIATED(section))
253 CALL section_create(section, __location__, name=
"MODE_SELECTIVE", &
254 description=
"All parameters needed for to run a mode selective vibrational analysis. "// &
255 "The keywords FREQUENCY, RANGE, and the subsection INVOLVED_ATOMS are mutually exclusive.", &
256 n_keywords=8, n_subsections=1, repeats=.false.)
259 description=
"value close to the expected value of the frequency to look for. "// &
260 "If the block Davidson algorithm is applied, the nrep closest frequencies are tracked. ", &
261 usage=
"FREQUENCY {REAL}", default_r_val=-1._dp)
266 description=
"Track modes in a given range of frequencies. "// &
267 "No warranty that the set of frequencies is complete.", &
268 usage=
"RANGE {REAL} {REAL}", &
269 n_var=-1, type_of_var=
real_t)
273 CALL keyword_create(keyword, __location__, name=
"LOWEST_FREQUENCY", &
274 description=
"Lowest frequency mode to include when writing output. "// &
275 "Use a negative value to print imaginary frequencies. "// &
276 "Useful for visualizing the imaginary frequency along a reaction path coordinate "// &
277 "Depending on accuracy settings, the output might include spurious low frequency "// &
278 "imaginary modes which should be visually checked (see MOLDEN_VIB).", &
279 usage=
"LOWEST_FREQUENCY <REAL>", default_r_val=0.0_dp)
284 description=
"Specifies the list of atoms which should be displaced for the Initial guess", &
285 usage=
"ATOMS {integer} {integer} .. {integer}", &
291 description=
"Convergence criterion for the davidson algorithm. Specifies the maximal value in the "// &
292 "residuum vectors ", &
293 usage=
"EPS_MAX_VAL {REAL}", default_r_val=5.0e-7_dp)
298 keyword, __location__, name=
"EPS_NORM", &
299 description=
"Convergence criterion for the davidson algorithm. Specifies the maximal value of the norm "// &
300 "of the residuum vectors ", &
301 usage=
"EPS_NORM {REAL}", default_r_val=2.0e-6_dp)
306 keyword, __location__, name=
"INITIAL_GUESS", &
307 description=
"The type of initial guess for the normal modes", &
308 usage=
"INITIAL_GUESS BFGS_HESS", &
310 enum_c_vals=
s2a(
"BFGS_HESS",
"ATOMIC",
"RESTART",
"RESTART_VEC",
"MOLDEN_RESTART"), &
311 enum_desc=
s2a(
"get the first displacement vector out of the BFGS approximate Hessian", &
312 "use random displacements for a set of atoms specified", &
313 "use data from MS_RESTART as initial guess", &
314 "use a vector from MS_RESTART, useful if you want to increase accurcy by changing functionals or basis", &
315 "use the .mol file of a former run, to restart a vector"// &
316 " (similar to Restart_vec, but a different file FORMAT is used)"), &
321 CALL keyword_create(keyword, __location__, name=
"RESTART_FILE_NAME", &
322 description=
"Specifies the name of the file used to create the restarted vectors", &
323 usage=
"RESTART_FILE_NAME {filename}", &
328 CALL create_involved_atoms_section(subsection)
333 description=
"Controls the printing mode selective vibrational analysis", &
334 n_keywords=0, n_subsections=1, repeats=.true.)
337 description=
"Controls the printing of the Mode Selective Restart file.", &
346 END SUBROUTINE create_mode_selective_section
353 SUBROUTINE create_involved_atoms_section(section)
359 cpassert(.NOT.
ASSOCIATED(section))
361 section, __location__, name=
"INVOLVED_ATOMS", &
362 description=
"All parameters needed for the tracking of modes dominated by the motion of selected atoms. "// &
363 "Warning, if many atoms are involved, only low frequency modes are detected, "// &
364 "since they are more delocalized and match the tracked eigenvector.", &
365 n_keywords=2, n_subsections=0, repeats=.false.)
368 keyword, __location__, name=
"RANGE", &
369 description=
" Specifies the range of wavenumbers in which the modes related to the ATOMS have to be tracked."// &
370 " If not specified frequencies >400cm-1 will be used to avoid tracking of translational or rotational modes", &
371 usage=
"RANGE {REAL} {REAL}", &
372 n_var=-1, type_of_var=
real_t)
377 keyword, __location__, name=
"INVOLVED_ATOMS", &
378 description=
"Specifies the list of atoms on which the tracked eigenvector should have the highest value "// &
379 "similar to looking for the vibration of a set of atoms", &
380 usage=
"INVOLVED_ATOMS {integer} {integer} .. {integer}", &
385 END SUBROUTINE create_involved_atoms_section
routines to handle the output, The idea is to remove the decision of wheter to output and what to out...
integer, parameter, public debug_print_level
integer, parameter, public low_print_level
integer, parameter, public medium_print_level
integer, parameter, public add_last_numeric
integer, parameter, public silent_print_level
subroutine, public cp_print_key_section_create(print_key_section, location, name, description, print_level, each_iter_names, each_iter_values, add_last, filename, common_iter_levels, citations, unit_str)
creates a print_key section
real(kind=dp) function, public cp_unit_to_cp2k(value, unit_str, defaults, power)
converts to the internal cp2k units to the given unit
Defines the basic variable types.
integer, parameter, public dp
Utilities for string manipulations.