This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
howto:fluent [2013/02/05 11:44] wikiadmin created |
howto:fluent [2021/12/09 16:42] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== ANSYS/ | ====== ANSYS/ | ||
| - | The CHPC has an installation of Fluent along with a limited license for academic use only. If you are a full time student or researcher at an academic institution then you may request access | + | Page has moved to [[howto: |
| - | ===== Installation ===== | ||
| - | |||
| - | Fluent version | ||
| - | |||
| - | # include Fluent environment variables and commands | ||
| - | . / | ||
| - | |||
| - | |||
| - | ===== Running a Fluent Job ===== | ||
| - | |||
| - | On the CHPC clusters all simulations are submitted as jobs to the Moab job scheduler which will assign your job to the appropriate queue and machine. | ||
| - | |||
| - | Example job script: | ||
| - | |||
| - | < | ||
| - | #/bin/sh | ||
| - | #MSUB -l nodes=2: | ||
| - | #MSUB -l feature=nehalem|harpertown|dell | ||
| - | #MSUB -l walltime=3: | ||
| - | #MSUB -m be | ||
| - | #MSUB -V | ||
| - | #MSUB -o / | ||
| - | #MSUB -e / | ||
| - | #MSUB -d / | ||
| - | #MSUB -mb | ||
| - | ##### Running commands | ||
| - | exe=/ | ||
| - | nproc=`cat $PBS_NODEFILE | wc -l` | ||
| - | mpirun -np $nproc -machinefile $PBS_NODEFILE $exe | ||
| - | |||
| - | ### NEEDS TO BE CORRECTED | ||
| - | </ | ||