Skip to content

Commit

Permalink
Modify bias description
Browse files Browse the repository at this point in the history
  • Loading branch information
cschran authored and dev-zero committed Dec 8, 2021
1 parent 5f0312c commit 0704e03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/input_cp2k_nnp.F
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,18 @@ SUBROUTINE create_nnp_section(section)

! BIAS subsection
CALL section_create(subsection, __LOCATION__, name="BIAS", &
description="Section to bias the standard deviation of the committee disagreement (sigma) by "// &
description="Section to bias the committee disagreement (sigma) by "// &
"E = 0.5 * K_B * (sigma - SIGMA_0)**2, if sigma > SIGMA_0.", &
n_keywords=2, n_subsections=0, repeats=.FALSE.)
n_keywords=2, n_subsections=0, repeats=.FALSE., &
citations=(/Schran2020b/))
CALL keyword_create(keyword, __LOCATION__, name="K_B", &
description="Harmonic spring constant of the bias potential [1/hartree].", &
repeats=.FALSE., &
n_var=1, &
type_of_var=real_t, &
default_r_val=cp_unit_to_cp2k(value=0.1_dp, unit_str="hartree^-1"), &
unit_str="hartree^-1", &
usage="K_B [hartree^-1] 0.1", &
citations=(/Schran2020b/))
usage="K_B [hartree^-1] 0.1")
CALL section_add_keyword(subsection, keyword)
CALL keyword_release(keyword)
CALL keyword_create(keyword, __LOCATION__, name="SIGMA_0", &
Expand Down

0 comments on commit 0704e03

Please sign in to comment.