README
上传用户:joranyuan
上传日期:2022-06-23
资源大小:3306k
文件大小:2k
源码类别:

网络

开发平台:

Others

  1. # Please contact tinyos-help@millennium.berkeley.edu for 
  2. # questions or bug reports.  Any other suggestions or feedback 
  3. # can be sent to us: 
  4. # Philip Buonadonna (pbuonado@intel-research.net) or 
  5. # Alec Woo (awoo@cs.berkeley.edu) 
  6. #                               November 20th, 2003.
  7. Important parameters to tune in MultihopWMEWMA.nc
  8.     BASE_STATION_ADDRESS        = 0,
  9.     ROUTE_TABLE_SIZE            = 16,
  10.     ESTIMATE_TO_ROUTE_RATIO     = 10,
  11.     DATA_TO_ROUTE_RATIO         = 2,
  12.     DATA_FREQ                   = 10000,
  13.     SWITCH_THRESHOLD      = 192,
  14.     MAX_DESCENDANT = 5
  15. In this protocol, the minimum message rate is defined by route message
  16. rate, which is a ratio of the data rate defined by
  17. DATA_TO_ROUTE_RATIO.  For example, if DATA_FREQ is 10000 (~ 1
  18. packet/10 sec) and DATA_TO_ROUTE_RATIO is 2, the route message
  19. is will be 20000 (~ 1 msg/20sec).  This rate is tunable and
  20. will affect network load and rate of adaptation to changes.
  21. ESTIMATE_TO_ROUTE is a parameter that defines the time window
  22. T for WMEWMA estimator.  If it is set to 10, it means that
  23. an estimation will be performed every ten route message time.
  24. SWITCH_THRESHOLD is a parameter to define a noise margin for
  25. switching to a better parent.  It is a scaled value. To convert
  26. it to the number of transmission, simply divide it by 256.  
  27. In this case, 192/256 = 0.75.  That is, we only switch to a 
  28. new parent if its cost is 0.75 lower than our current parent.
  29. MAX_DESCENDADNT_LIVE is used as a paremter to time out children
  30. in the neighbor table. 5 means a child 
  31. Notice that chooseParent() is called on a periodic basis as
  32. a route damping mechanism.  The period is the same as the
  33. route message rate.  
  34. The current route table managment is a simple filtering
  35. mechanism based on send (outbound) link estimations.