如何指定补丁记录乌龟流数据的秒数?

时间:2015-02-07 21:30:52

标签: netlogo

我有代码:

   set number-of-cars-passing-point count turtles-here 

    set list total-car-number lput number-of-cars-passing-point
  end

这将应用于我网络中每条道路上的一个补丁。使用这个我希望能够计算沿着道路的汽车流量(在给定时间段内补丁上存在的不同汽车的数量)。如何说明补丁记录海龟数量的时间,以便我可以计算出交通流量?

1 个答案:

答案 0 :(得分:0)

假设1个单位秒= 1个单位勾选,并且您希望每10秒记录一次。

if(remainder ticks 10 = 0)[
set number-of-cars-passing-point count turtles-here 
set list total-car-number lput number-of-cars-passing-point
]