# # First, clean out the old stuff # clean() delete('flin1') # # Load the equations file flin.c and the constants file c.flin # load('flin') # # Convert the data in flin.dat into s.dat. This converts the data # to AUTO's format. The solution will be labeled 1. # us('flin') # # Run the continuation, starting with the data in s.dat. The # constants file c.flin tells AUTO to start at the solution # labeled 1. # run(s='dat') # # Save the results of the computation in files with the extension flin1. # sv('flin1') # # Reload: use the original equation and constants files, but use flin1 # for the solutions. # Now AUTO is working with the results of the previous computation. # load(e='flin',c='flin',s='flin1') # # Change the direction of the continuation. (In c.flin, DS=0.05.) ch("DS",-0.05) # # Change the restart label to 2. # ch("IRS",2) # # Run the continuation again # run() # # Append the results of the continuation to the previous data. # ap('flin1') # # Take a look at the result. # plot('flin1') wait() clean()