-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added runfiles for multielement Gaussian grid
- Loading branch information
1 parent
240ca44
commit a6ff4c3
Showing
5 changed files
with
80 additions
and
6 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
File renamed without changes.
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,25 @@ | ||
# Calculate Gaussian atomic density descriptors on a 3D grid | ||
|
||
# pass in values ngridx, ngridy, ngridz, sigma, atom_config_fname | ||
# using command-line -var option | ||
|
||
# Initialize simulation | ||
|
||
units metal | ||
read_data ${atom_config_fname} | ||
mass * 1.0 | ||
|
||
|
||
# is this important? or does it just need to be big enough? | ||
variable radelem1 equal 0.5 | ||
variable radelem2 equal 0.5 | ||
variable rcutneigh equal 2.0*${rcutfac}*${radelem1} | ||
|
||
pair_style zero ${rcutneigh} | ||
pair_coeff * * | ||
|
||
compute ggrid all gaussian/grid/local grid ${ngridx} ${ngridy} ${ngridz} ${rcutfac} ${radelem1} ${radelem2} ${sigma1} ${sigma2} | ||
|
||
thermo_modify norm yes | ||
|
||
run 0 |
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,32 @@ | ||
# Calculate Gaussian atomic density descriptors on a 3D grid | ||
|
||
# pass in values ngridx, ngridy, ngridz, sigma, atom_config_fname | ||
# using command-line -var option | ||
|
||
# set up processor grid to match QE | ||
${lammps_procs} | ||
|
||
# Initialize simulation | ||
|
||
units metal | ||
read_data ${atom_config_fname} | ||
mass * 1.0 | ||
|
||
|
||
# is this important? or does it just need to be big enough? | ||
variable radelem1 equal 0.5 | ||
variable radelem2 equal 0.5 | ||
variable rcutneigh equal 2.0*${rcutfac}*${radelem1} | ||
|
||
pair_style zero ${rcutneigh} | ||
pair_coeff * * | ||
|
||
# set up plane cutoff values to evenly distribute grid points | ||
${zbal} | ||
|
||
|
||
compute ggrid all gaussian/grid/local grid ${ngridx} ${ngridy} ${ngridz} ${rcutfac} ${radelem1} ${radelem2} ${sigma1} ${sigma2} | ||
|
||
thermo_modify norm yes | ||
|
||
run 0 |
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