home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / math / attract.zip / DEMO.BAT < prev   
DOS Batch File  |  1993-07-03  |  998b  |  29 lines

  1. @echo off
  2. echo This file demonstrates some of the interesting program features
  3. echo of ATTRACT.
  4. echo .
  5. echo This first parameter setting uses the random setting (d=3) and
  6. echo a very slow step size to allow you to see an individual point's
  7. echo path on the Damped and Driven Pendulum.
  8. echo .
  9. echo attract i=0.002 p=1 a=1 s=3 d=3
  10. pause
  11. attract i=0.002 p=1 s=3 d=3
  12. echo .
  13. echo This parameter setting is the same as the other except it uses the
  14. echo Duffing Two Well Oscillator.  This resembles the Lorenz attractor in
  15. echo that there are two points that the particle is orbiting.
  16. echo .
  17. echo attract i=0.002 p=1 a=2 s=3 d=3
  18. pause
  19. attract i=0.002 p=1 a=2 s=3 d=3
  20. echo .
  21. echo Here is a large number of points that will run through the DDP
  22. echo simulation.  This may drag on some computers.  The block of points
  23. echo is specified using the d=2 command.
  24. echo .
  25. echo attract p=500 s=2 d=2
  26. pause
  27. attract p=500 s=2 d=2
  28. echo Now have fun exploring the features on your own... :-)
  29.