设为首页收藏本站

最大的系统仿真与系统优化公益交流社区

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 7678|回复: 1

[交流] 看看这段代码的问题

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。
, f5 Y& k7 C# Y
& J1 B/ }" ]. b/ x3 C但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。: v& i. v, Z% f! T! b. O

) c3 p4 t, O- e! g' {0 Cturtles-own [a b c d k f g h0 V+ H. `3 \0 V$ i( t' C' U- P
  x y     ;; these are the leaf-turtle's offsets relative to center-turtle
( p1 Q3 L9 G) N/ F( y2 d) ^. @]
) s" f$ C. Z/ K8 `7 Rto new: V4 m1 K# R2 l. k
  ca
# p  y. p2 ]2 f. m+ E  crt 5 * num_of_building
: k' f% p6 c. ?( Z8 ]6 o& ^  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]. w: }4 {! H# q8 C( F  M
  scatter     ;;keep center-turtle random positions # c; R: ~  C4 S# Q4 X9 l
  unit_plan   ;;make up the building plan
8 C4 B3 U! n7 z( Y" h9 G. yend& q8 Q0 x, I/ C9 i9 B2 a
to scatter
) O! w: W9 O' J8 J; V( K0 bask turtles with [remainder who 5 = 0]
1 n0 M: O3 G& g: u" w[( j$ T* ^2 R# Y/ b1 R3 d0 n
set xcor xcor - 6 + random-float 15
, u4 R4 b6 E' W8 e+ o$ _set ycor ycor - 6 + random-float 15& ~4 k- }% D& h! k
]4 g/ Z4 ~! K6 Q6 @% X( F4 q1 m
end
" C8 j8 V& ^1 s, ?' w+ x" e9 Xto unit_plan 4 K; ]! X! l* N) t
ask turtles [
4 r$ u) H: U2 O/ D, Gif (remainder who 5 = 1) [set a who
+ {8 k6 ^" o. u& @5 J: i                          set x ( 0 - Wid / 2 )
1 j! i* i2 A1 y                          set y  Dep / 2 ]% O7 h+ h& m5 l
           set b  int (a / 5) * 5
1 d2 K. B3 ?/ n3 f; V& s) ^4 Z    setxy ( xcor-of turtle b + x )
0 y- a7 F' d0 X- g          ( ycor-of turtle b + y )
; Z! v9 ~8 y7 L1 S# G& l! fif (remainder who 5 = 2) [set c who
: S! j4 H' d# E' `                          set x ( 0 - Wid / 2 ) 0 ?  D9 W: d+ p$ s) d- F* p& g: v- L
                          set y (0 - Dep / 2 )  ]
+ j$ j* U( E* \1 c                          set d int (c / 5) * 5" b9 ]. H7 z& Z5 ?  {
   setxy   ( xcor-of turtle d + x )
$ I+ r+ i+ y9 y8 P% N# \- e           (ycor-of turtle d + y )
$ K  g5 P# }% }6 i4 B/ C         
4 H0 |  m* g4 r2 `            / _9 L! p1 p5 K, @' [9 \% T9 B
if (remainder who 5 = 3) [set k who& g2 i* Y' ~, ?, j( e9 e" O
                          set x( Wid / 2)  
% z1 M3 [+ ~3 w# B7 }1 D& Q                          set y (0 - Dep / 2 ) ], x; W3 b1 m# F( y: G
                          set f int (k / 5) * 5  Z5 C6 Z- G& P& @" `$ F' a7 R
  setxy   ( xcor-of turtle f + x )7 X7 S4 ^6 \" \  S' R! A1 Q
           (ycor-of turtle f + y )
6 Z/ j) c* Q$ {9 e7 `           
+ p" h4 L$ ]3 j* F6 ~3 [           
6 z6 C6 d" _9 ?) x# G: @+ rif (remainder who 5 = 4) [set g who) A- }5 x6 I- f
                          set x Wid / 2
; q4 m2 o& z3 c1 T                          set y  Dep / 2 ]* F1 `0 l; g( }5 |  x$ F8 b
                          set h  int (g / 5) * 5% u9 V- H: X  l( K+ F' o
  setxy   ( xcor-of turtle h + x )
% o* \# T$ Y3 z% B           (ycor-of turtle h + y )
4 t. L  n% T% k1 W( F                          6 t/ \0 O" c, b& q( _
                          6 B6 K* {5 M/ X( Z8 q/ v- D4 I1 c% L
                          ]5 a% \8 M4 m) S" D/ v
end: ]+ d7 R2 l9 c8 @* }: {7 }
; H- j& p" p1 ?& l
[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,
$ j/ B4 H5 b* G0 v: M6 S$ n应该是. b( `9 \9 Y% ^7 [; t
ask turtles [8 X% N) e" ^5 t6 g
if (remainder who 5 = 1) [set x ( 0 - Wid / 2 ) 7 i. T0 f3 g' b/ U" c# q
                          set y  Dep / 2
* ]/ Y6 L4 {2 M5 _) n& n2 b           set b  int (who / 5) * 5) t) O: X" F, Z' J" G& `0 L. O  F
    setxy ( xcor-of turtle b + x )
7 `3 h! T2 C' v( g% m$ _          ( ycor-of turtle b + y )]]+ b+ J+ ]& W( K& N8 R" F
end7 h6 U9 h1 V( i9 h: V
之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|SimulWay 道于仿真   

GMT+8, 2026-3-13 18:14 , Processed in 0.015439 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表