设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 8843|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。
! d- K# `+ j' w: Y% @& G; t, U( D; ?7 V* U* S. D& R
但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。
! [, D: u/ G- J5 M7 @, ^
- G" D3 y4 ]! F% a' g8 H" T2 qturtles-own [a b c d k f g h
6 t& b, ?9 _) I  c6 _  x y     ;; these are the leaf-turtle's offsets relative to center-turtle
8 k/ `+ k! O0 T0 ?; y& `]8 ]- k; o: [0 F. h
to new- {9 y& D- f; X1 J# V
  ca5 z# H% E4 N& m5 a; p( [1 q% W
  crt 5 * num_of_building
' u; B) E. T  R0 @2 H0 S  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]7 B9 O+ l8 S6 s* e) q5 b
  scatter     ;;keep center-turtle random positions ) a' X  L& ~: B  F
  unit_plan   ;;make up the building plan3 d/ [' P0 f* @( ^1 q+ K3 z/ I
end1 p. M- G( ^3 `& k7 W" e% ^* f2 b& C
to scatter: U5 X# {' n: E& [
ask turtles with [remainder who 5 = 0]' O4 {( }' _' q
[' G& @! G* y; u
set xcor xcor - 6 + random-float 15
% T) P# V3 q1 b! g9 u% j, Qset ycor ycor - 6 + random-float 15
" H1 G- c! y1 {$ _; V' x" H]
) ?. M  K  z" b3 Rend6 w/ h1 W' @+ S2 x
to unit_plan % z% U6 _5 S/ g9 Y* p% h. h- m
ask turtles [
: D+ m' h$ R$ `$ y3 c6 Bif (remainder who 5 = 1) [set a who
" a0 M* x, N; {( U% n9 \                          set x ( 0 - Wid / 2 )
+ t8 F: b# L" D5 @3 ?4 w" Y5 B                          set y  Dep / 2 ]
, [, E9 W/ t) Z' x           set b  int (a / 5) * 58 u/ w% z8 e5 Y' X* L, o
    setxy ( xcor-of turtle b + x )# b$ z/ C3 O4 G& x
          ( ycor-of turtle b + y )$ w9 j- k! M8 k& `
if (remainder who 5 = 2) [set c who/ e4 g/ B$ p( W: w8 h
                          set x ( 0 - Wid / 2 ) ( G0 b. |3 g$ `) K% ]1 A2 J7 q: Q
                          set y (0 - Dep / 2 )  ]
+ c7 s* W; I3 ?! B  R: l, ]" ~                          set d int (c / 5) * 5
" @/ G6 i" T2 H- u   setxy   ( xcor-of turtle d + x ). c! i! a% g7 J
           (ycor-of turtle d + y ) 4 A. O6 ]' s/ f; O- v' f
          9 ]' G1 e+ t7 h7 ^. c. D! J
            
( w6 k1 v$ C; v. O# E% lif (remainder who 5 = 3) [set k who
6 S8 I! I9 U4 V1 u9 T/ M$ g                          set x( Wid / 2)  7 ]! T' L- Q& S0 z& }5 u7 `
                          set y (0 - Dep / 2 ) ]
. Q8 I- k, }# ^6 g5 g3 ?                          set f int (k / 5) * 5
6 A/ f( H2 }: z9 {2 D$ G  setxy   ( xcor-of turtle f + x )5 _* ]& Q6 S( F( i9 W
           (ycor-of turtle f + y )
  i: y! C  c  q3 O. ^           & H+ {; {; |: u2 ^/ [( m# q5 n- v
           
0 |5 ~" L; Y$ s4 K: w! T' mif (remainder who 5 = 4) [set g who
, p8 _% Z1 q+ y2 t) b4 _) f6 a' Q                          set x Wid / 2
3 Z$ c6 ^8 F8 C0 H7 G/ j# w& {                          set y  Dep / 2 ]9 T9 J; ]; I" L" o# F$ V7 D( l
                          set h  int (g / 5) * 5" @. Z6 e! i# u, I9 `$ O3 T4 y
  setxy   ( xcor-of turtle h + x )
0 n  x- z% i& c2 E6 Q           (ycor-of turtle h + y )
# E1 _) U" |, q; Y% O; B* p                          5 K5 W5 J  f0 y9 K
                          
' h" B; z# Z- V& h                          ]
( f# c! v9 X, |9 v9 ^* fend
2 q. b* \8 Z1 b8 s( O4 g
- w6 Q" i6 [. `[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,
' x( j$ b7 F! D应该是
4 m' U! O0 M- [4 Vask turtles [" O) }8 v) v/ j) ]  _3 u7 w" Q
if (remainder who 5 = 1) [set x ( 0 - Wid / 2 ) " D3 g$ I, D" ]- `+ B5 A6 H  n5 u2 k
                          set y  Dep / 2 . b% Z) o  l% q! D
           set b  int (who / 5) * 5$ X7 _9 @5 Y' y: z! R0 l4 C: x
    setxy ( xcor-of turtle b + x ). o0 a; _8 G/ m1 ]
          ( ycor-of turtle b + y )]]7 F2 K& u* B) u' L% g% a) j6 t
end
/ ?2 a* p& E$ e( K之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-8-11 01:54 , Processed in 0.015188 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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