Can i queue up multiple cases to ruin simulations one after another.
I have multiple cases that I want to run overnight. is there a way to set up a queue, such that, when one simulation finishes convergence the next can auto start.
Many thanks in advance,
Answers
-
If you export the multiple jobs into the same directory, you can use Altair Compute Console to point to multiple input files, then the jobs will run one after the other.
If you export the multiple jobs into different directories, you'll need to create your own batch script to run through the different jobs one after the other.
Here is sample content for a windows batch script:
cd \test\pipe1
call acuRun -pb pipe1 -np 2
call acuTrans -pb pipe1 -to h3d
call acuHeatBalance -pb pipe1
cd \test\pipe2
call acuRun -pb pipe2 -np 2
call acuTrans -pb pipe2 -to h3d
call acuHeatBalance -pb pipe2Let's say you put this into a file called: acuBatch.bat
Then you simply need to open the AcuSolve Cmd Prompt, change directory to where you've saved that acuBatch.bat file, type acuBatch.bat and Enter - to launch that script.
2