restart

Altair Forum User
Altair Forum User
Altair Employee
edited October 2020 in Community Q&A

How to use Restart option in Accusolve!!!Kindly help me!!!!

Tagged:

Answers

  • cfdguru
    cfdguru New Altair Community Member
    edited March 2014

    There are a number of posts in this forum regarding RESTART.  Please refer to the following for some introductory information: 

     

    http://forum.altairhyperworks.com/index.php?/topic/1967-how-do-i-restart-a-calculation-with-acusolve-and-make-changes-to-the-simulation/?hl=restart

     

    That will cover the situation where you are trying to perform a restart with some changes to the simulation.  A simpler case is if you just want to restart the simulation without any changes.  In that case you can just execute:  acuRun -restart.

  • Altair Forum User
    Altair Forum User
    Altair Employee
    edited April 2014

    I still face problem to restart my problem where i Intent to from a particular timestep!!!!.Can u post a video..regarding Restart.it will be helpful for me!!!!

  • cfdguru
    cfdguru New Altair Community Member
    edited April 2014

    The use of the restart functionality requires that you have written 'Restart Output' to disk.  Here is how it works:

     

    1.)  When AcuSolve runs, it periodically writes files to disk that include all information necessary to restart a simulation.  The frequency at which these files are written is controlled by the RESTART_OUTPUT command.  This is set in the AcuConsole model tree under Global-->Output-->Restart Output.  If you are working directly from the AcuSolve input file, you would set the following to write the output every 5 steps:

    RESTART_OUTPUT{

        output_frequency                   = 5
    }

     

    2.)  When you are ready to restart your simulation, you can tell AcuConsole which step you want to restart from by using the 'From time step' entry in the 'Restart' tab of the 'Launch AcuSolve panel'.  This step must correspond to one of the steps that was written to disk by the RESTART_OUTPUT command, or it will issue an error and exit.  If you are working from the input file directly, the only commands you need to have present are the following:

    File 'restart.inp':

     

    RESTART{

         from_time_step = 15
    }

     

    RUN{}

     

    Then, you can run the solver with the following command:  acuRun -pb test -inp restart.inp.

     

    I'm having some issues with uploading attachments, so I don't have any images for you right now.  I'll try to get some in place later if things still aren't clear.