Skip to content

Commit

Permalink
reduce neb_sort_tol to aviod problems
Browse files Browse the repository at this point in the history
- It need consider for whether or not cancel this function
  • Loading branch information
QuantumMisaka committed Sep 27, 2024
1 parent e947302 commit be1c83f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ase-dp/neb2dimer_dp.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

# developer only
os.environ['OMP_NUM_THREADS'] = "omp"
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down
step_before_TS = 1
step_after_TS = 1
norm_vector = 0.01
Expand Down
2 changes: 1 addition & 1 deletion ase-dp/neb2sella_dp.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

# developer only
sella_eta = 0.0002 # 1e-3 ~ 1e-4
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down
os.environ['OMP_NUM_THREADS'] = "omp"

# reading part
Expand Down
2 changes: 1 addition & 1 deletion dimer/neb2dimer_abacus.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
step_before_TS = 1
step_after_TS = 1
norm_vector = 0.01
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down

profile = AbacusProfile(f'mpirun -np {mpi} {abacus}')

Expand Down
2 changes: 1 addition & 1 deletion examples/CO-Pt111/neb2dimer/neb2dimer_abacus.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
step_before_TS = 1
step_after_TS = 1
norm_vector = 0.01
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down
scale_sigma = 1.0

profile = AbacusProfile(f'mpirun -np {mpi} {abacus}')
Expand Down
2 changes: 1 addition & 1 deletion examples/CO-Pt111/neb2sella/neb2sella_abacus.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@


# developers only
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down
sella_eta = 0.002
scale_sigma = 1.0

Expand Down
2 changes: 1 addition & 1 deletion examples/Cy-Pt@graphene/neb2sella/neb2sella_abacus.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@


# developers only
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down
sella_eta = 0.002
scale_sigma = 1.0

Expand Down
2 changes: 1 addition & 1 deletion examples/H2-Au111/neb2dimer/neb2dimer_abacus.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
step_before_TS = 1
step_after_TS = 1
norm_vector = 0.01
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down
scale_sigma = 1.0

profile = AbacusProfile(f'mpirun -np {mpi} {abacus}')
Expand Down
2 changes: 1 addition & 1 deletion examples/H2-Au111/neb2sella/neb2sella_abacus.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@


# developers only
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down
sella_eta = 0.002
scale_sigma = 1.0

Expand Down
2 changes: 1 addition & 1 deletion sella/neb2sella_abacus.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@


# developers only
neb_sort_tol = 1
neb_sort_tol = 0.5 # set 0 to shut down
sella_eta = 0.005 # 0.002 ~ 0.01
scale_sigma = 1.0

Expand Down

0 comments on commit be1c83f

Please sign in to comment.