@@ -189,24 +189,24 @@ SUBROUTINE create_qmmm_section(section,error)
189
189
190
190
! Centering keywords
191
191
CALL keyword_create(keyword, name= " CENTER" ,&
192
- description= " This keyword sets when the qm system is automatically " // &
192
+ description= " This keyword sets when the QM system is automatically " // &
193
193
" centered. Default is EVERY_STEP." ,&
194
194
usage= " center (EVERY_STEP|SETUP_ONLY|NEVER)" ,&
195
195
enum_c_vals= s2a(" EVERY_STEP" ," SETUP_ONLY" ," NEVER" ),&
196
- enum_desc= s2a(" re -center every step" ,&
197
- " center at first step only" , &
198
- " never center" ),&
196
+ enum_desc= s2a(" Re -center every step" ,&
197
+ " Center at first step only" , &
198
+ " Never center" ),&
199
199
enum_i_vals= (/ do_qmmm_center_every_step, do_qmmm_center_setup_only, do_qmmm_center_never / ),&
200
200
default_i_val= do_qmmm_center_every_step, error= error)
201
201
CALL section_add_keyword(section,keyword,error= error)
202
202
CALL keyword_release(keyword,error= error)
203
203
204
204
CALL keyword_create(keyword, name= " CENTER_TYPE" ,&
205
- description= " How to do the centering" ,&
205
+ description= " This keyword specifies how to do the QM system centering. " ,&
206
206
usage= " center_type (MAX_MINUS_MIN|PBC_AWARE_MAX_MINUS_MIN)" ,&
207
207
enum_c_vals= s2a(" MAX_MINUS_MIN" ," PBC_AWARE_MAX_MINUS_MIN" ),&
208
- enum_desc= s2a(" center of box defined by maximum coordinate minus minimum coordinate" ,&
209
- " PBC-aware centering. Useful for &QMMM&FORCE_MIXING. " ),&
208
+ enum_desc= s2a(" Center of box defined by maximum coordinate minus minimum coordinate" ,&
209
+ " PBC-aware centering (useful for &QMMM&FORCE_MIXING) " ),&
210
210
enum_i_vals= (/ do_qmmm_center_max_minus_min, do_qmmm_center_pbc_aware / ),&
211
211
default_i_val= do_qmmm_center_max_minus_min, error= error)
212
212
CALL section_add_keyword(section,keyword,error= error)
@@ -302,7 +302,7 @@ SUBROUTINE create_qmmm_mm_kinds(section,error)
302
302
NULLIFY(keyword)
303
303
CPPrecondition(.NOT. ASSOCIATED(section),cp_failure_level,routineP,error,failure)
304
304
CALL section_create(section,name= " MM_KIND" ,&
305
- description= " Information about the mm kind in the qm/mm scheme" ,&
305
+ description= " Information about the MM kind in the QM/MM scheme" ,&
306
306
n_keywords= 2 , n_subsections= 0 , repeats= .TRUE. , required= .TRUE. ,&
307
307
error= error)
308
308
@@ -602,17 +602,17 @@ SUBROUTINE create_qmmm_qm_kinds(section,error)
602
602
NULLIFY(keyword)
603
603
CPPrecondition(.NOT. ASSOCIATED(section),cp_failure_level,routineP,error,failure)
604
604
CALL section_create(section,name= " QM_KIND" ,&
605
- description= " Information about the qm kind in the qm/mm scheme" ,&
605
+ description= " Information about the QM kind in the QM/MM scheme" ,&
606
606
n_keywords= 3 , n_subsections= 0 , repeats= .TRUE. , required= .TRUE. ,&
607
607
error= error)
608
608
609
609
CALL keyword_create(keyword, name= " _SECTION_PARAMETERS_" ,&
610
- description= " The qm kind" ,usage= " O" ,n_var= 1 ,type_of_var= char_t,error= error)
610
+ description= " The QM kind" ,usage= " O" ,n_var= 1 ,type_of_var= char_t,error= error)
611
611
CALL section_add_keyword(section,keyword,error= error)
612
612
CALL keyword_release(keyword,error= error)
613
613
614
614
CALL keyword_create(keyword, name= " MM_INDEX" ,&
615
- description= " The indexes of the mm atoms that have this kind. This keyword can be" // &
615
+ description= " The indexes of the MM atoms that have this kind. This keyword can be" // &
616
616
" repeated several times (useful if you have to specify many indexes)." ,&
617
617
usage= " MM_INDEX 1 2" ,&
618
618
n_var=- 1 ,type_of_var= integer_t,repeats= .TRUE. ,error= error)
@@ -1107,6 +1107,9 @@ SUBROUTINE create_qmmm_link_section(section,error)
1107
1107
usage= " LINK_TYPE char" ,&
1108
1108
enum_c_vals= s2a( " IMOMM" ," GHO" ," PSEUDO" ),&
1109
1109
enum_i_vals= (/ do_qmmm_link_imomm, do_qmmm_link_gho, do_qmmm_link_pseudo/ ),&
1110
+ enum_desc= s2a(" Use Generalized Hybrid Orbital method" ,&
1111
+ " Use Integrated Molecular Orbital Molecular Mechanics method" ,&
1112
+ " Use a monovalent pseudo-potential" ),&
1110
1113
default_i_val= do_qmmm_link_imomm, error= error)
1111
1114
CALL section_add_keyword(section,keyword,error= error)
1112
1115
CALL keyword_release(keyword,error= error)
@@ -1461,7 +1464,7 @@ SUBROUTINE create_print_qmmm_section(section,error)
1461
1464
1462
1465
CALL cp_print_key_section_create(print_key," GRID_INFORMATION" ,&
1463
1466
description= " Controls the printing of information regarding the PW grid structures" // &
1464
- " for PERIODIC qm/mm calculations." ,&
1467
+ " for PERIODIC QM/MM calculations." ,&
1465
1468
print_level= medium_print_level,filename= " __STD_OUT__" ,&
1466
1469
error= error)
1467
1470
CALL section_add_subsection(section,print_key,error= error)
0 commit comments