QuickStart COMSOL
COMSOL Multiphysics® is a general-purpose simulation software for modeling designs, devices, and processes in all fields of engineering, manufacturing, and scientific research. In addition to using multiphysics modeling for your own projects, you can also turn your models into simulation applications and digital twins for use by other design teams, manufacturing departments, test labs, customers, and more.
-
Use Global Protect VPN: Whether on or Off-Campus
In top menu bar access (globe icon).
Be sure vpn-groups selected when you connect.
-
Start an SSH Session
ssh your_netid@hpc.kennesaw.edu -
Create Your comsol_submission.pbs (single node, multiple cores)
#!/bin/bash
#PBS -l nodes=1:ppn=8
#PBS -l walltime=1:30:00
#PBS -j oe
#PBS -m abe
#PBS -M your_email@kennesaw.edumodule purge
module load COMSOLcd $PBS_O_WORKDIR
uniq $PBS_NODEFILE > comsol_nodefile
comsol batch -np 8 -tmpdir $TMPDIR -inputfile your_input_file -outputfile your_output_file
exit 0
-
Submit Your Script
qsub comsol_submission.pbs -
For More on COMSOL
Visit COMSOL Support Center.