You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 21 Next »

Information

Purpose: Molecular Dynamics
Latest version: 14
Licence: Proprietary licence
Website: http://ambermd.org/ extlink-icon

Amber is a collection of programs for setting-up, running and analysing molecular dynamics simulations.

Amber refers both to a collection of about 50 programs for building, configuring and minimising molecular structures, setting up force fields, running simulations, analysing trajectories, and computing system properties, and to a force field for biomolecules implemented by the Amber programs.

 


 

Benchmark


Amber 14 benchmark at Collserola

Actual speed-up (green) and ideal speed-up (blue) vs. number of cores for the NPT simulation of a short peptide with ff14SB force field, TIP3P water and PME electrostatics.

 

 


 

SLURM Submit script example

For more information use the Job Script Generator.

amber_example.slm
#!/bin/bash
#SBATCH -J amber_example
#SBATCH -e amber_example.err
#SBATCH -o amber_example.out
#SBATCH -p std
#SBATCH --nodes=1
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=1
#SBATCH --mem=4G

module load apps/amber/14

INPUT_DIR=${PWD}
OUTPUT_DIR=${PWD}

cd $TMPDIR
cp -r $INPUT_DIR $TMPDIR
mpijob amber_example.MPI -O \
 -i amber_example.inp \
 -p amber_example.top \
 -c amber_example.crd \
 -o amber_example.out
cp ./* $OUTPUT_DIR

 

 


 

  • No labels