-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23db1ee
commit a27efba
Showing
5 changed files
with
86 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/bin/tcsh | ||
#SBATCH -N 2 | ||
#SBATCH -t 1:00:00 | ||
#SBATCH -p pbatch | ||
|
||
date | ||
|
||
setenv OMP_NUM_THREADS 1 | ||
#setenv KMP_DETERMINISTIC_REDUCTION 1 | ||
|
||
set ncpus = 64 | ||
|
||
set maindir = /p/lustre2/cheung26/mgmol-20241012 | ||
|
||
setenv LD_LIBRARY_PATH ${maindir}/build_quartz/libROM/build/lib:$LD_LIBRARY_PATH | ||
|
||
set exe = mgmol-opt | ||
|
||
cp $maindir/install_quartz/bin/$exe . | ||
|
||
set datadir = $maindir/examples/PinnedH2O | ||
|
||
set increment_md_steps = 1 | ||
set num_md_steps = 50 | ||
set basis_file = PinnedH2O_orbitals_basis_${increment_md_steps}_${num_md_steps} | ||
|
||
set cfg_rom = mgmol_rom_${increment_md_steps}_${num_md_steps}.cfg | ||
cp $datadir/$cfg_rom . | ||
|
||
cp $datadir/coords.in . | ||
|
||
ln -s -f $maindir/potentials/pseudo.O_ONCV_PBE_SG15 . | ||
ln -s -f $maindir/potentials/pseudo.H_ONCV_PBE_SG15 . | ||
|
||
source $maindir/scripts/modules.quartz | ||
|
||
srun -n $ncpus $exe -c $cfg_rom -i coords.in > rom_${increment_md_steps}_${num_md_steps}_PinnedH2O.out | ||
|
||
date |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
verbosity=1 | ||
xcFunctional=PBE | ||
FDtype=Mehrstellen | ||
[Mesh] | ||
nx=64 | ||
ny=64 | ||
nz=64 | ||
[Domain] | ||
ox=-6. | ||
oy=-6. | ||
oz=-6. | ||
lx=12. | ||
ly=12. | ||
lz=12. | ||
[Potentials] | ||
pseudopotential=pseudo.O_ONCV_PBE_SG15 | ||
pseudopotential=pseudo.H_ONCV_PBE_SG15 | ||
[Run] | ||
type=MD | ||
[MD] | ||
num_steps=500 | ||
dt=40. | ||
thermostat=ON | ||
[Thermostat] | ||
type=Berendsen | ||
temperature=1000. | ||
relax_time=800. | ||
[Quench] | ||
max_steps=100 | ||
atol=1.e-8 | ||
[Orbitals] | ||
initial_type=Random | ||
initial_width=2. | ||
[Restart] | ||
output_level=4 | ||
[ROM.offline] | ||
basis_file=PinnedH2O_orbitals_basis_1_50 | ||
[ROM.basis] | ||
compare_md=false | ||
number_of_orbital_basis=39 |