# # First, clean out the old stuff # clean() delete('fl2') # # Load the equations file flin.c and the constants file c.flin # load('flin2') # # Convert the data in flin.dat into s.dat. This converts the data # to AUTO's format. The solution will be labeled 1. # us('flin2') # # 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('fl2') # # Change the direction of the continuation. (In c.flin2, DS=0.05.) # ch("DS",-0.05) # # Run the continuation again # run(s="dat") # # Append the results of the continuation to the previous data. # ap('fl2') # # Take a look at the result. # plot('fl2') wait() clean()