Skip to content

Commit

Permalink
chore: change || to or
Browse files Browse the repository at this point in the history
  • Loading branch information
k0stik committed Nov 13, 2024
1 parent 701654b commit 09de3dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/espresso/neb.j2.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ BEGIN_PATH_INPUT
nstep_path = 50,
ds = 2.D0,
opt_scheme = "broyden",
num_of_images = {{ 2 + (input.INTERMEDIATE_IMAGES.length || neb.nImages) }},
num_of_images = {{ 2 + (input.INTERMEDIATE_IMAGES.length or neb.nImages) }},
k_max = 0.3D0,
k_min = 0.2D0,
CI_scheme = "auto",
Expand Down
2 changes: 1 addition & 1 deletion assets/vasp/INCAR_neb.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ EDIFFG = -0.001
ENCUT = 500
NELM = 100
NSW = 100
IMAGES = {{ input.INTERMEDIATE_IMAGES.length || neb.nImages }}
IMAGES = {{ input.INTERMEDIATE_IMAGES.length or neb.nImages }}
SPRING = -5
ISPIN = 2

0 comments on commit 09de3dd

Please sign in to comment.