Ansys Assistant will be unavailable on the Learning Forum starting January 30. An upgraded version is coming soon. We apologize for any inconvenience and appreciate your patience. Stay tuned for updates.

Ansys Learning Forum Forums Discuss Simulation Fluids How to Save Defined Animations Along with the Final Case? Reply To: How to Save Defined Animations Along with the Final Case?

Rui.Li
Subscriber

run_batch:

#!/bin/bash
#SBATCH --job-name=Fluent_Test_Job
#SBATCH --partition nocona
#SBATCH --time=10:00:00
#SBATCH --mail-user=Rui.Li@ttu.edu
#SBATCH --mail-type=END,FAIL
#SBATCH --output=%x.o%j # %j will be replaced with the job ID
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=128
#SBATCH --mem-per-cpu=1GB

module load test/v241_fluids

fluent 3d -g -t$128 -nm -ssh < Testcases.in

[bingo_chatbox]