设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 8652|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。
  H) d7 a, N* t9 Z. o. w# _8 |& _2 f+ v/ e9 \  X0 a* G' W! W
但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。
7 D* o3 j1 B! ?6 Y; `! J8 D9 B; g3 q7 j8 {
turtles-own [a b c d k f g h
' y* r" u$ L; r/ I1 p0 J) }$ Z# J  x y     ;; these are the leaf-turtle's offsets relative to center-turtle
7 D% g( A6 n8 k4 I6 f6 v6 c]; r1 S9 B( E2 w7 L9 E
to new
4 x; S) X9 I( p3 R. I' W  ca
7 {0 m% E5 F+ R6 b  crt 5 * num_of_building
/ w/ \. z4 W! t7 @  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]
' U' `- C1 V& |. x# q( x  scatter     ;;keep center-turtle random positions 9 x/ M% q  @% d+ F0 Q) s6 D7 [
  unit_plan   ;;make up the building plan
  g: [% e* D) I2 L- u) Jend7 F$ s) `7 o/ t# _
to scatter& K) }9 G5 C& u' M- f. r) b$ Z
ask turtles with [remainder who 5 = 0]
8 H% `5 K! C1 k2 z[: S0 E4 V0 D3 M& F9 H9 f
set xcor xcor - 6 + random-float 153 v$ n; I& W; a1 ~
set ycor ycor - 6 + random-float 15
0 Y2 j: N9 C- c- K$ ?* Y  \]4 x, P; |" L, B1 Q
end
9 Z1 ^9 G% w" M5 N" ]: w& q; p' |  Mto unit_plan 4 h" L1 F2 K: r! w
ask turtles [9 ]* Y  |' E+ M8 W) k  }/ ~
if (remainder who 5 = 1) [set a who . o2 Q$ E! V/ q* L; F
                          set x ( 0 - Wid / 2 )
0 P( y% \) i& ^; `                          set y  Dep / 2 ]
( X$ S0 g. q: o8 p9 I, B* q           set b  int (a / 5) * 5+ D2 Z' Z. J0 E% t
    setxy ( xcor-of turtle b + x ): S2 @' X, v8 M1 b2 g) x, L
          ( ycor-of turtle b + y )- R& \2 w" a( q8 W+ |+ `2 }
if (remainder who 5 = 2) [set c who
( q- u& h: R6 ~7 q                          set x ( 0 - Wid / 2 ) + M. e7 y' o; w2 x9 S8 g
                          set y (0 - Dep / 2 )  ]. A% E) o" J' |7 |2 G. l
                          set d int (c / 5) * 51 @+ U7 o1 c) W
   setxy   ( xcor-of turtle d + x )
1 i+ z3 b& n( g8 H. [           (ycor-of turtle d + y )
. v: c- e9 M  g5 d  L         
' Q2 O" V/ n. Y* z) |% a; |            
* t$ D5 _! U; O: m) Vif (remainder who 5 = 3) [set k who! Z7 S$ a! V; i- w$ |8 R4 M
                          set x( Wid / 2)  : L0 X7 w# t) v5 B8 H& ~; `" E
                          set y (0 - Dep / 2 ) ]; \* [; y; |) s; T' e" P
                          set f int (k / 5) * 58 P/ H' o9 X- \0 Q$ A, A
  setxy   ( xcor-of turtle f + x )
- Y' h; I7 _# i9 N           (ycor-of turtle f + y )
; S% M% I+ y% k4 l5 `7 F7 r           
! _- p' L" ]/ V- p* B' e" e             U8 M: i7 R$ Y- p6 n$ X7 [8 z8 Y# D
if (remainder who 5 = 4) [set g who
9 E8 k% M) }4 R* P( |8 [$ T                          set x Wid / 2 + o, e6 f7 ]3 K
                          set y  Dep / 2 ]
9 w# W3 {& }& c. I$ q9 q, W                          set h  int (g / 5) * 5- m. P) [/ a. k# ^8 g( ?1 m' O
  setxy   ( xcor-of turtle h + x )6 r' k' j# Z2 t2 v' r
           (ycor-of turtle h + y ) $ A  X+ y$ t; O1 p6 W  r
                          9 Z1 Q3 ]3 G1 r
                          
: G* C# R. t1 x' j  S7 l: J                          ]
! e, k- u& p( M. ]6 b+ Tend: I% k$ [1 P& G" ~9 y; f
( R3 z4 X8 b) A
[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,: y- m) d- [  |1 ]. \+ k5 B3 @
应该是+ N7 w3 H/ X, |5 m* {, D
ask turtles [
% ^3 G, _* Q: `% D# iif (remainder who 5 = 1) [set x ( 0 - Wid / 2 )
) i( h% L; J6 o1 |( X& K                          set y  Dep / 2
8 z; q+ c4 Q: O6 }6 Y1 V           set b  int (who / 5) * 5& U5 C9 i5 S* c4 R
    setxy ( xcor-of turtle b + x ), [4 C! z; \1 P8 ]. V* s
          ( ycor-of turtle b + y )]]
7 f7 O9 W8 x' r3 x1 ]- Kend/ Y* v  G0 k. D3 B1 \* F
之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-7-20 08:08 , Processed in 0.014787 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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