#!/bin/bash

#SBATCH --account=rrg-jerzy-ab
#SBATCH --nodes=1                # Number of nodes
#SBATCH --ntasks-per-node=32     # MPI tasks per node
#SBATCH --mem=0                  # all memory on node 
#SBATCH --time=00-01:00          # time (DD-HH:MM)

# Load the module:

module load quantumespresso/6.3

echo "PWscf started at: `date`"

srun  pw.x < scf.in > scf.out

srun  ph.x < ph.in > ph.out









echo "Program finished with exit code $? at: `date`"
