ANSYS Fluent
ANSYS Fluent software is the most-powerful computational fluid dynamics (CFD) tool available, empowering you to go further and faster as you optimize your product's performance. Fluent includes well-validated physical modeling capabilities to deliver fast, accurate results across the widest range of CFD and multiphysics applications.
Installed version
- ansys/fluent/17.1
- ansys/fluent/19.2
Ansys/Fluent is only open for granted users
Using Fluent in mesocentreFC
Interactive mode (Graphical interface)
We need to use X2GO to open a graphical session to the interactive node
mesoshared.univ-fcomte.fr.
Within a Termianl, we load fluent:
$ module load ansys/fluent
And then we can access to all fluent programs, like for example:
$ fluent 3d
Batch mode with SGE
Here is a SGE template script to modify according to your needs:
- fluent.sge
#!/bin/bash # Name of job #$ -N job_fluent # Output file #$ -o $JOB_NAME.$JOB_ID.out # request parallel.q queue #$ -q parallel.q # request 32 slots #$ -pe mpi 32 # load Fluent module load ansys/fluent # Run de fluent without graphical interface (-g) # ATTENTION: don't modify the value after -t fluent 3ddp -t$NSLOTS -g -i input.jou
Put this file in the same directory where your fluent file model is located. And finally, submit your script:
$ qsub fluent.sge