- General Information
- Usage on Vilje
- All below under contruction ...
- Test case: Xyz...
- Further Information
General Information
Home page | Version | Module dependencies |
|
Python | MPT | ||
ambermd.org | 12 | python/2.7.2 | mpt/2.06 |
Amber is a program suite for molecular dynamics simulations.
Usage on Vilje
Load the following modules to use amber on Vilje:
$ module load mpt/2.06 python/2.7.2 amber/12 |
All below under contruction ...
Sample Job Script
#!/bin/bash ################################################### # # Amber job # ################################################### # #PBS -N test #PBS -A nn1234k #PBS -l select=2:ncpus=32:mpiprocs=16 #PBS -l walltime=24:00:00 # module load mpt/2.06 module load python/2.7.2 module load amber/12 case=$PBS_JOBNAME cd $PBS_O_WORKDIR # Create (if necessary) the working directory w=/work/$PBS_O_LOGNAME/amber/$case if [ ! -d $w ]; then mkdir -p $w; fi # Copy inputfiles and move to working directory cp $case.inp $w cd $w mpiexec_mpt amber $case.inp
Test case: Xyz...
This test case illustrate how to ...
See the Amber Tutorials web page for a detailed description of this test case.
- Unpack the test case files
$ tar zxf /sw/sdev/Modules/amber/test_case.tar.gz
- Replace
nn1234k
with your project account number in theamber.pbs
job script, and submit the job to the queuing system$ qsub amber.pbs
- When the job has finished, check the output file and compare with the output
test_case.out
included in test case.