For questions regarding the HPC, please visit their website. Note: UCI's HPC is part of OIT, separate from Engineering. For ANSYS questions, contact Engineering IT.
Note: the HPC upgraded to Fluent 2025R2 May 2026.
Check out the HPC website.
Scroll down to "Get an account".
Accounts are available to "anyone with a UCINetID" including undergrads.
Read the section how to prepare your laptop.
Learn how to log in.
If you're off-campus, connect to UCI VPN first.
This link explains how to set up MobaXterm.
Do NOT enable remote server monitoring!
Verify the "remote monitoring" check box is de-selected after you log into the HPC.
Go to Settings > Configuration > SSH > SSH Browser Settings (towards the top)
De-select "Remote Monitoring"
hpc3.rcic.uci.edu (host name)
Review unix primer, beginner's guide, and tutorials.
Go through all of their user guides
Know simple linux commands such as "cd" and "ls".
Other Linux Learning includes:
Learn basics of SLURM & Sbatch files:
Be sure to read up on accounting.
Excellent video explaining SLURM basics.
Read HPC software and environment modules.
Learn to use a Linux text editor such as Pico or VI.
As a workaround, you can create text files with Notepad++ on your Windows computer and then upload it to your working directory on the HPC.
To ensure Notepad++ files created on Windows are easily read by Linux, set the encoding to UTF-8 and use Unix (LF) line endings.
In Notepad++, go to Encoding > Convert to UTF-8
Then Edit > EOL Conversion > Unix (LF) Format.
This prevents character encoding issues and compatibility issues with line breaks.
Enable file extensions on Windows
Settings, System, Advanced, Show Extensions > On
Check out Nabil's course (below).
Learn how to run Fluent in Batch Mode
This explains in detail how to run Fluent in Batch Mode
For high-performance computing:
Specify the solver dimension with 3d (or 2d)
Run Fluent without graphics or the GUI using -g (always use -g on the HPC)
Specify the number of processors using -t
Specify the journal file with -i
For example: fluent 3d -g -t4 -i input.jou > output.txt
This command starts Fluent, runs in 3D, no gui, with 4 cores, reads input.jou as the input file, then outputs data to output.txt.
Note: You can prepare files locally on any computer running ANSYS.
SLURM batch file (.sh)
This is a batch submission script (to request cluster resources).
It'll have your command for running Fluent along with other parameters.
Here's an example of how to create an batch file for Fluent
Here are some batch examples.
Case file (.cas) or (.cas.h5)
This contains the mesh, physics settings, and boundary conditions. You cannot create one with a simple text editor; you must generate it using the Fluent solver itself.
Where to located case files:
Workbench Projects:
Fluent case files (.cas or .cas.h5) are typically stored within the Ansys Workbench Project Directory, buried deep in .../dp0/FFF/Fluent/
Standalone Fluent
Saved in the directory specified in the File/Write panel, or the launch folder.
Job file (.jou) - This is a journal file to automate the simulation.
Here's an example showing how to create a journal file
Sometimes it's easier to write your own.
Here are journal examples.
Connect to VPN, login to hpc3.rcic.uci.edu
Select "Option 1" to use Duo.
Read how to list available modules
This command lists all available modules: module avail
This command lists available Fluent modules: module avail fluent
Read how to display module information.
This command displays information specifically about the fluent/2025R2 module including preset environment variables: module display fluent/2025R2
Verify the license server information.
Read how to load modules.
This loads the Fluent 2025 R2 module: module load fluent/2025R2
This will show you the Fluent app location: which fluent
You should see output such as: /data/opt/apps/ansys/2025R2/v194/fluent/bin/fluent
Note: Fluent will only work in batch mode (use -g). Don't run it with a graphical X11 interface.
Upload files
Upload the following to a folder on the HPC:
SLURM batch file (.sh)
Case file (.cas or .cas.h5)
Journal file (.jou)
To run, type: sbatch filename.sh (from within the same directory)
Example: sbatch fluent-batch.sh
module unload fluent/2025R2
Geometry import from SOLIDWORKS to Fluent and COMSOL
This video explains how to create geometry (fluid domain) in Solidworks, import it into Design Modeler, create a mesh, and then set up a Fluent case.
After you setup Fluent, you can locate case files in the workbook folder: /dp0/FFF/Fluent
Here are files to support this tutorial.
ANSYS - How to run Fluent in Batch Mode
Submitting Fluent jobs to SLURM from Purdue University
Fluent Job Submission Guide from Colorado School of Mines
How to Submit an Ansys Fluent Job from Cal Poly
A crash course in CFD analysis introducing the finite volume approach and Fluent software as an application. This is the final workshop out of a series of four. A brief introduction for using Fluent on High Performance Computing units is presented, while highlighting how to deal with Fluent through the Text User Interface (TUI).
Here's the presentation slides
NOTE: Some of this is out of date since the HPC switched to SLURM
1) First type ‘q’ (Private queues specify here ‘queue name’)
2) qrsh –q ‘queue name’ –pe openmp ‘# of cores’ (allows you to reserve cores on a queue)
a. qrsh – q ‘queue name’ –pe mpi ‘# of cores’ (WARNING: always tries to take all cores no matter #of cores you type. If max cores not typed it will error out)
3) qstat | grep ‘queue name’ (Find out who is using a queue via username)
4) module load ansys
For more information see software tutorials and using modules
5) fluent
This assumes you want to use Fluent
6) qstat –u ‘username’ (see job number and etc.)
7) qdel ‘job number’ (make sure your job is deleted when done so others can access)
8) exit