设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 8916|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。
8 w  R# w2 {  Z( U4 c+ z  u& }
) @* E8 \# @1 `! i3 X但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。
. O. p& B5 a# t' K& b9 g) ?- w8 O5 R9 v
0 T0 s2 |& Q) T: Pturtles-own [a b c d k f g h+ ~: Q4 F6 ?* v' e
  x y     ;; these are the leaf-turtle's offsets relative to center-turtle $ z- o. _. \4 _- t1 d2 F
]
; d1 n) |4 O' Y2 t( z* d) v6 qto new- g' v! r* f! P& Q0 [* I4 B6 c
  ca
9 E; c% \1 [" |# _* x4 E  crt 5 * num_of_building
5 ?9 C; H% U1 z, m; |# N  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]
* m3 a6 h. o. ]3 Y! g. j; X  scatter     ;;keep center-turtle random positions
2 D) s1 O' a6 d, j  unit_plan   ;;make up the building plan. I4 Z. v" X+ [
end0 W0 P9 h% f* G9 }; Z1 _
to scatter% _$ V3 G2 P$ |1 }! b: C
ask turtles with [remainder who 5 = 0]3 c6 u' N. t: ?# {
[
; S$ C, H$ d, W) y  Q9 xset xcor xcor - 6 + random-float 15
) O& u) j8 d2 _) R0 L: d  k. gset ycor ycor - 6 + random-float 15
6 v0 Q" }: j8 q% y: Y2 F" v% U( J]
9 G2 X; Q0 q% g3 _' d, r, l6 Yend
* Y3 [+ F% l- n6 \6 c1 C, r, Tto unit_plan 8 P  J0 N% b2 P  w) B
ask turtles [
3 ~3 R- h- U' h4 C* I0 m, n5 nif (remainder who 5 = 1) [set a who
9 |4 n; H" \+ H( W                          set x ( 0 - Wid / 2 ) 9 J5 O& B* D- C, l9 [. P; M
                          set y  Dep / 2 ]4 `! I1 I% ]& w  \
           set b  int (a / 5) * 55 G! p, c( d7 W: f; s' c" O
    setxy ( xcor-of turtle b + x ), Z8 ]7 e& f, S+ f1 K
          ( ycor-of turtle b + y ). H# r; M5 s8 }) Q) N& z( C! r: l
if (remainder who 5 = 2) [set c who1 B( f! J% A4 q, m. C
                          set x ( 0 - Wid / 2 )
1 f% H& P$ S4 Y8 ^% u' j- m                          set y (0 - Dep / 2 )  ]
! e, V' U( e9 `8 ~# \  o                          set d int (c / 5) * 5! t5 P2 H& a; O- j) N
   setxy   ( xcor-of turtle d + x )
  P$ A6 \. {; B: N           (ycor-of turtle d + y ) 0 U" O9 |8 J5 \  g
          3 g+ L4 k- s0 w  _
            ' o$ s1 ^# ^- w1 ?9 \
if (remainder who 5 = 3) [set k who2 F9 E0 d+ M( {, c) u
                          set x( Wid / 2)    F- j% y" M4 {  L0 K) E$ \, {
                          set y (0 - Dep / 2 ) ]
; v( r! j" }! R1 C0 u: o                          set f int (k / 5) * 5/ i9 q/ Q+ Y, e9 F( G1 b$ V
  setxy   ( xcor-of turtle f + x ): `  x: y. \0 z$ y! j8 @
           (ycor-of turtle f + y ) # {' V' {8 }- O9 ^
           
# x9 ?# L: E2 e, @! i2 \9 q1 P           / e, Z! ?% P, B' e
if (remainder who 5 = 4) [set g who
+ ^' C2 y0 Q" L8 U5 R6 r1 M                          set x Wid / 2 " `; C4 M0 u& a4 l" q7 R
                          set y  Dep / 2 ]4 x; L  `8 f" ^
                          set h  int (g / 5) * 5
5 S9 B) H) }% l" n  setxy   ( xcor-of turtle h + x )
  z$ v" Z/ C6 B5 W! ]           (ycor-of turtle h + y ) 7 @- m4 F7 U9 n2 _) W8 L- y
                          
" L  L  p' }  \1 Z8 ~                          
8 W8 ^/ d, V- Q% @( l                          ]
. z$ M# F7 `; E+ c3 N+ cend! V9 b! k; Z8 S8 S4 V4 ~; E/ C

1 r* F) \; s5 B: G) M4 f[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,
5 _; y$ z7 ^9 u应该是# o2 V) }! y/ G' _2 W* [
ask turtles [
& o: t+ E# O( y( v4 I; Iif (remainder who 5 = 1) [set x ( 0 - Wid / 2 ) # ^7 ]2 m: h- |: V0 G% O- s9 p
                          set y  Dep / 2 # \/ J7 ~" `1 R2 j- f
           set b  int (who / 5) * 5
/ H1 h/ ]4 O9 W2 T    setxy ( xcor-of turtle b + x )
# ]+ r7 a: H, ~: S          ( ycor-of turtle b + y )]]' _% u: K$ {) \! F9 o  }6 m
end. Q7 ~+ Z0 C  f4 x" [
之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-8-23 17:05 , Processed in 0.017326 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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