sample.nam.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Sample nam configuration file
  2. # At start, nam will automatically load .nam.tcl in current directory,
  3. # if there is such a file.
  4. #
  5. # $Header: /cvsroot/nsnam/nam-1/ex/sample.nam.tcl,v 1.3 1999/02/16 21:21:13 haoboy Exp $
  6. # Parameters below are for automatic layout only. To turn on automatic layout, 
  7. # do *not* give any link orientation information in your ns script when you 
  8. # create your links. To turn it off, set those orientation information.
  9. # KCa_: attractive force constant
  10. # KCr_: repulsive force constant
  11. #
  12. # Here is a method to layout a large topology (say, 100 nodes). First set 
  13. # KCa_ and KCr_ to 0.2, do about 30 iterations (i.e., after start, set 
  14. # the 'Iterations' input box to 30), then set KCr_ to 1.0, KCa_ to about 0.005,
  15. # then do about 10 iterations, then set KCa_ to 0.5, KCr_ to 1.0, do about 6 
  16. # iterations.
  17. NetworkModel/Auto set KCa_ 0.20
  18. NetworkModel/Auto set KCr_ 0.20
  19. # Seed to generate initial random layout.
  20. NetworkModel/Auto set RANDOM_SEED_ 1
  21. # Layout iterations done during startup
  22. NetworkModel/Auto set AUTO_ITERATIONS_ 10
  23. # Layout iterations done each time the 'relayout' button is pressed or Enter 
  24. # is clicked in the input boxes.
  25. NetworkModel/Auto set INCR_ITERATIONS_ 10