Difference between revisions of "SIESTA"

 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
= [[SIESTA]] =
== Description ==
== Description ==


''From the NERSC website:'' “SIESTA is an O (N) DFT code for electronic structure calculations and ab initio molecular dynamics simulations for molecules and solids. It uses norm-conserving pseudopotentials and linear combination of numerical atomic orbitals (LCAO) basis set.”
''From the SIESTA website:'' '''SIESTA''' is both a method and its computer program implementation, to perform efficient electronic structure calculations and ab initio molecular dynamics simulations of molecules and solids. SIESTA's efficiency stems from the use of strictly localized basis sets and from the implementation of linear-scaling algorithms which can be applied to suitable systems. A very important feature of the code is that its accuracy and cost can be tuned in a wide range, from quick exploratory calculations to highly accurate simulations matching the quality of other approaches, such as plane-wave and all-electron methods.
 
*[http://www.nersc.gov/users/software/applications/materials-science/siesta/ SIESTA website on nersc.gov]
 
== Version ==
 
*3.1
 
== Authorized Users ==
 
*<code>CIRCE</code> account holders
 
== Platforms ==
 
*<code>CIRCE</code> cluster
 
== Running SIESTA Jobs on CIRCE ==
 
=== [[Modules]] ===


Before running a job, you must first set up your environment properly. Below is the required module file.
{{AppStandardHeader|4.1.5|siesta}}


*apps/siesta/3.1<br />See [[Modules]] for more information.
{{AppRunningOnAll}}


=== Submitting Jobs ===
=== Submitting Jobs ===
The SIESTA manual is essential to understanding the application and making the most of it. Please refer to the [[SIESTA#Additional Documentation | Additional Documentation]] section for a link to the guide.


If, for example, you have an SIESTA input file named input.in, you would set up a submit script like this:
If, for example, you have an SIESTA input file named input.in, you would set up a submit script like this:


The script below (for testing, name it “siesta-test.sh”) can be copied into your job directory (the folder with your input files) and modified so that you can submit batch processes to the queue. For help on submitting jobs to the queue, see our [[SLURM Users|SLURM User’s Guide]]. Scripts are provided as examples only. Your SLURM executables, tools, and options will vary.
The script below (for testing, name it “siesta-test.sh”) can be copied into your job directory (the folder with your input files) and modified so that you can submit batch processes to the queue.  


<pre style="white-space:pre-wrap; width:45%; border:1px solid lightgrey; background:#E0E0E0; color:black;">
<pre style="white-space:pre-wrap; width:45%; border:1px solid lightgrey; background:#E0E0E0; color:black;">
Line 44: Line 22:
#SBATCH --time=01:00:00
#SBATCH --time=01:00:00


#### Slurm 4 processor SIESTA test to run for 1 hour.
#### SLURM 4 processor SIESTA test to run for 1 hour.


module purge
module purge
module load apps/siesta/3.1
module load apps/siesta/4.1.5


mpirun siesta &lt; input.in
mpirun -np ${SLURM_NTASKS} siesta &lt; input.in
</pre>
</pre>
&nbsp;<br>
&nbsp;<br>
Line 60: Line 38:
*You can view the status of your job with the “squeue -u <username>” command
*You can view the status of your job with the “squeue -u <username>” command


=== Tutorials and Tests ===
{{Documentation}}
 
*SIESTA Home Page
The following contain input parameters for known SIESTA Examples:
**https://icmab.es/siesta
*SIESTA Documentation/User Manuals
**https://departments.icmab.es/leem/siesta/Documentation/index.html


*/apps/siesta/3.1/Tests
*/apps/siesta/3.1/Tutorials
*http://www.gromacs.org/Documentation/Tutorials


=== Additional Documentation ===
{{BKETOR}}
*SIESTA Manual
*SIESTA Tutorials
**/apps/siesta/3.1/Docs/siesta-3.1-manual.pdf
**/apps/siesta/4.1.5/siesta-v4.1.5/Tutorials
*SIESTA Known Tests
**/apps/siesta/4.1.5/siesta-v4.1.5/Obj/Tests


{{MoreInformation}}
{{AppStandardFooter}}
{{ReportingBugs}}

Latest revision as of 14:53, 22 June 2021

Description

From the SIESTA website: SIESTA is both a method and its computer program implementation, to perform efficient electronic structure calculations and ab initio molecular dynamics simulations of molecules and solids. SIESTA's efficiency stems from the use of strictly localized basis sets and from the implementation of linear-scaling algorithms which can be applied to suitable systems. A very important feature of the code is that its accuracy and cost can be tuned in a wide range, from quick exploratory calculations to highly accurate simulations matching the quality of other approaches, such as plane-wave and all-electron methods.

Version

  • 4.1.5

Authorized Users

  • CIRCE account holders
  • RRA account holders
  • SC account holders

Platforms

  • CIRCE cluster
  • RRA cluster
  • SC cluster

Modules

SIESTA requires the following module file to run:

  • apps/siesta/4.1.5

Running SIESTA on CIRCE/SC

The SIESTA user guide is essential to understanding the application and making the most of it. The guide and this page should help you to get started with your simulations. Please refer to the Documentation section for a link to the guide.

  • Note on CIRCE: Make sure to run your jobs from your $WORK directory!
  • Note: Scripts are provided as examples only. Your SLURM executables, tools, and options may vary from the example below. For help on submitting jobs to the queue, see our SLURM User’s Guide.

Submitting Jobs

If, for example, you have an SIESTA input file named input.in, you would set up a submit script like this:

The script below (for testing, name it “siesta-test.sh”) can be copied into your job directory (the folder with your input files) and modified so that you can submit batch processes to the queue.

#!/bin/bash
#
#SBATCH --comment=siesta-test
#SBATCH --ntasks=4
#SBATCH --job-name=siesta-test
#SBATCH --output=output.%j.siesta-test
#SBATCH --time=01:00:00

#### SLURM 4 processor SIESTA test to run for 1 hour.

module purge
module load apps/siesta/4.1.5

mpirun -np ${SLURM_NTASKS} siesta < input.in

 
Next, you can change to your job’s directory, and run the sbatch command to submit the job:

[user@login0 ~]$ cd my/jobdir
[user@login0 jobdir]$ sbatch ./siesta-test.sh
  • You can view the status of your job with the “squeue -u <username>” command

Documentation

Home Page, User Guides, and Manuals


Benchmarks, Known Tests, Examples, Tutorials, and Other Resources

  • SIESTA Tutorials
    • /apps/siesta/4.1.5/siesta-v4.1.5/Tutorials
  • SIESTA Known Tests
    • /apps/siesta/4.1.5/siesta-v4.1.5/Obj/Tests

More Job Information

See the following for more detailed job submission information:

Reporting Bugs

Report bugs with SIESTA to the IT Help Desk: rc-help@usf.edu