How to pause matlab a specific amount of time between iterations??
Show older comments
Hello everyone,
I am using Matlab with a CFD solver. In my code there is this a for loop, and at the end of each iteration some job submitted to the solver. I want Matlab to wait till I get the solution files from the solver, and proceed to next iteration afterwards, with this newly created solution files. It takes more or less 3 hours to get the solution files so is there any way that I can pause Matlab for 3 hours between sucsessive iterations??
Any help would be appriciated. Thank you in advance.
Accepted Answer
More Answers (2)
Jason Ross
on 1 Feb 2013
2 votes
If you have Parallel Computing Toolbox, you can set up an integration with your cluster (I'm guessing it's PBS Pro or Torque), and you could use the batch() command to submit your job. You can then check the state of the job as it progresses through the queued, executing and finished stages. It might work for your situation.
If you don't have PCT, setting up the timer to look for the files or exit condition would be a nice and clean approach.
You could enter a while loop until you are able to retrieve the data.
You could also potentially use a timer object to test for solution files periodically and continue on once they are found.
Categories
Find more on Computational Fluid Dynamics (CFD) in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!