This tutorial provides a step-by-step guide for modeling electrolyte solutions and running classical molecular dynamics (MD) simulations. It is aimed at beginners and covers environment setup, required software installation, molecular modeling, simulation script preparation, job submission, and data analysis. Please follow each step closely and refer to documentation or community resources when needed.
This file contains hidden or 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
#!/bin/bash | |
set -e | |
EVN_NAME=deepmd_dpa3 | |
module purge | |
# download deepmd-kit v3.1.0a0 | |
if [ ! -d ./deepmd-kit ]; then | |
git clone https://github.com/deepmodeling/deepmd-kit.git -b v3.1.0a0 |