<aside> ⭐ Home | Getting Started with CCR | Learning Resources | Software | Productivity | Hardware | Best Practices

</aside>

Now, you should have already installed RASPA2 on your CCR account if you followed the steps outlined in the installation guidance using EasyBuild. This page will guide you through the steps to run your first RASPA2 simulation!

Download the latest RASPA2 User Manual here. You can find more details about the simulation setup and input files in this user manual.

Let’s start!

  1. First, let’s go to your project space located in /projects/academic/kaihangs, you should have already created a folder with your name there. Go to your named folder:
cd /projects/academic/kaihangs
cd folder_with_your_name
  1. Let’s download the necessary RASPA2 input files in tarball format:
wget "<https://www.dropbox.com/scl/fi/x99aprh9g88u4vm6vbfmo/RASPA2_example.tar.gz?rlkey=ids7wh95fq6qp5qcovufhe8q0&dl=1>"
  1. Let’s rename the downloaded file and unzip it:
mv RASPA2_example.tar.gz\\?rlkey\\=ids7wh95fq6qp5qcovufhe8q0\\&dl\\=1 RASPA2_example.tar.gz
tar -xvf RASPA2_example.tar.gz
  1. The folder “RASPA2_example” contains all input files that are necessary for the simulation. Here, you are going to carry out the grand canonical Monte Carlo (GCMC) simulation to model the adsorption of methane in MFI zeolite.
cd RASPA2_example
ls
  1. Inside the folder, you can see 7 files:

<aside> 💡 Learn more about RASPA2 and input files in RASPA2 user manual here.

</aside>

  1. You can open the raspa.job file by vi raspa.job, and see basic job configurations. For this job, you will be running the simulation on our private CPU nodes:
#SBATCH --cluster=faculty
#SBATCH --partition=kaihangs
#SBATCH --qos=kaihangs
  1. Now everything is ready, let’s just submit the job:
sbatch raspa.job
  1. The job may finish quickly, you can check job status by typing:
squeue -M all -u **your_CCR_username**