# # First, clean out the old stuff # clean() delete('wn1') # # Load the equations file wn.c and the constants file c.wn # load('wn') # # Convert the data in wn.dat into s.dat. This converts the data # to AUTO's format. The solution will be labeled 1. # us('wn') # # Run the continuation, starting with the data in s.dat. The # constants file c.wn tells AUTO to start at the solution # labeled 1. # run(s='dat') # # Save the results of the computation in files with the extension wn1. # sv('wn1') # # Change the direction of the continuation. (In c.wn, 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('wn1') # # Take a look at the result. # plot('wn1') wait() clean()