设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 9025|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。3 o, N2 J: ^# v* G3 x! S; v( }
) l) B2 D+ B- j$ Q- n
但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。
7 N; k2 Y6 O7 b7 O! g% \/ Y* V% A* C5 t. D
turtles-own [a b c d k f g h
5 A+ q8 h9 }( T# e$ W6 @  x y     ;; these are the leaf-turtle's offsets relative to center-turtle $ O" q" j% d4 z+ O* T. F
]
% |% S& \1 \" L# t4 V0 `to new/ n! A0 ]- Q. N# I$ Z& G
  ca5 L7 Q# }9 M/ ^9 _  ~
  crt 5 * num_of_building' L) A" A; c  {; h2 J* m7 u, p
  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]
8 i' T# Z% Z1 N4 N( w9 I  scatter     ;;keep center-turtle random positions 4 q8 O- ?& _3 B# v% @5 \7 S9 ~
  unit_plan   ;;make up the building plan
0 G* P$ J5 D* J( z% k6 C( t& Z: Cend
+ p$ o* r( e# }2 v* X. ~' D5 cto scatter+ l" Z" b% P: E
ask turtles with [remainder who 5 = 0]2 j) E) X+ _9 U2 [* V
[
6 z. F2 W% u! c5 c" e, m& q% ]2 w( W& hset xcor xcor - 6 + random-float 15
2 w( Y/ V, H2 B( f$ `set ycor ycor - 6 + random-float 15  `  w3 d$ I; S( K
]2 `8 `6 D4 \5 O$ Y$ ?$ k5 ^
end, \4 R" \" Y/ m1 S6 k
to unit_plan
4 A2 p5 n& x3 cask turtles [' b, t; F. ~# z
if (remainder who 5 = 1) [set a who   X/ k& h& e" \0 `! V5 k, D1 Y
                          set x ( 0 - Wid / 2 ) , u: J$ C" M0 r$ A& Z) j4 y% ]8 \
                          set y  Dep / 2 ]
& C% u4 p# M* l  Q& i           set b  int (a / 5) * 5" k7 @' ]- j- b0 L
    setxy ( xcor-of turtle b + x )
  \. a" `6 Y  v3 {! P' e          ( ycor-of turtle b + y )% j) B  I9 S8 C+ {* n2 P' s0 F
if (remainder who 5 = 2) [set c who
7 g8 t7 X9 b; B* ^7 T" Y: K# C                          set x ( 0 - Wid / 2 ) 4 l+ ]# @7 q7 d: Z8 l: Q3 `
                          set y (0 - Dep / 2 )  ], }- H5 ~2 M; @
                          set d int (c / 5) * 5
2 c' h5 G& E4 X( O1 Q' j' ?% x  g# a   setxy   ( xcor-of turtle d + x )
; B. n+ c9 o6 M1 V- k           (ycor-of turtle d + y )
  D# ]* C" Q6 ?/ x" q( M! a4 C         
% ]% _, X* S  \2 j- z) `            
) k7 F# S' x! _$ zif (remainder who 5 = 3) [set k who/ u- z' x6 t6 J+ [6 t
                          set x( Wid / 2)  
% `. O9 j5 \/ ]+ J* i0 ]* L; q! ]1 C                          set y (0 - Dep / 2 ) ]
  `5 Q; l& _4 }9 Z3 Q                          set f int (k / 5) * 5* s" h  H8 Q% [6 q8 [2 q
  setxy   ( xcor-of turtle f + x )/ V/ V$ o& l. M) |3 ^# `2 d
           (ycor-of turtle f + y ) + L9 S) l0 `. ?% G8 E/ ~
           ! \( R. }; \- w. I3 I" @
           . y. t# ?! s6 i  o- o* c
if (remainder who 5 = 4) [set g who* A& u. L! L% Z; F" I7 u
                          set x Wid / 2 4 [; u: L& \0 T, ?( ]4 X6 ^
                          set y  Dep / 2 ]5 a$ `( R9 y- U" L5 L% D' }4 b- ~
                          set h  int (g / 5) * 5
6 l' K: p0 f( e+ j  setxy   ( xcor-of turtle h + x )8 l3 |/ j$ g, C3 S$ Q2 s1 V$ P6 `# w
           (ycor-of turtle h + y )
9 W$ {- V% p$ k$ y5 V- C( W! Z3 n/ m/ s                          0 K( B5 E$ i) L1 d' r% E% T
                          
  t0 D3 Y& Z- P# d% d5 A5 |                          ]
% l/ |% g# N8 P' t: ]+ gend
) ~% c( p+ y, a* ]- J3 W! V# w) z+ o5 J5 k  H/ s8 x
[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,
8 y9 F7 J$ M  W3 _应该是6 H, f3 B, ?( a) P
ask turtles [8 \* n/ H" D6 d! {  F* ]+ l
if (remainder who 5 = 1) [set x ( 0 - Wid / 2 )
- [) d& |1 B/ V                          set y  Dep / 2 5 A# h0 B- U) }9 g2 X* N  [. m
           set b  int (who / 5) * 5
- J. n& H7 a9 V& ]  ]9 ?. S    setxy ( xcor-of turtle b + x )
; U  d- A% r' W+ i) A' c( D          ( ycor-of turtle b + y )]]
* o$ p1 r3 K$ E( `! \. Pend
. `( J6 [3 V6 K0 C/ \3 z之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-9-9 06:46 , Processed in 0.017136 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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