设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 8305|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。. u5 r1 P; R: [9 s+ w$ M

  K7 U+ Z4 u4 a+ |. n但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。
* R8 C# {6 O6 p4 e3 p
/ w4 }, [/ A5 d% y) w% a8 D* M- Bturtles-own [a b c d k f g h, o8 v; U- ]' H* H1 Z6 i: E. v+ X  \
  x y     ;; these are the leaf-turtle's offsets relative to center-turtle , P8 y* t. {) c
]
$ W- j% Z- S- y# \- L& I7 |# ~5 nto new
  S0 M# A# i5 K0 o4 L; F' V+ `  ca% R, q7 {+ `3 `: A5 B7 y
  crt 5 * num_of_building5 T# o% M9 ~/ A8 G" n" x8 A
  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]+ @# K, S* ^, Q  @
  scatter     ;;keep center-turtle random positions & A; A  J* @8 H  B" g3 E2 }# c
  unit_plan   ;;make up the building plan
! m- s$ f8 w1 c; yend0 v5 g7 O# `0 Z) f4 X$ x. e
to scatter
" `6 D" R; w) a; D, r. Fask turtles with [remainder who 5 = 0]; d& a$ G2 \& Q  X
[. `6 O" ~' G9 {. ^! [9 P3 y
set xcor xcor - 6 + random-float 15
6 j2 ^0 C7 f0 @2 xset ycor ycor - 6 + random-float 15" k$ i3 t* m6 o: v$ O, m
]
+ P% n3 w. ]5 w8 Jend& c+ |: v5 V3 c" F, Z* ]- P
to unit_plan
: A  G( ?! y" ^0 r+ @2 dask turtles [
* d3 t3 K4 ^8 T9 }! }' G/ qif (remainder who 5 = 1) [set a who * F0 T0 m* `2 _$ r
                          set x ( 0 - Wid / 2 ) ' {$ g  P9 G( O; v# X" E4 b+ H
                          set y  Dep / 2 ]7 A- P- b$ J8 r* s, N4 E- L( I6 m, X
           set b  int (a / 5) * 5
8 T3 I; w  E( T4 h; H/ m* @: Y8 t    setxy ( xcor-of turtle b + x )8 l( ]4 i  R( D
          ( ycor-of turtle b + y )
0 f: g5 C; ~& F$ Dif (remainder who 5 = 2) [set c who
. p; U- l- X1 K4 H: X                          set x ( 0 - Wid / 2 )
4 p/ ?" [0 q4 k2 N                          set y (0 - Dep / 2 )  ]
  b5 e' p1 L: _4 V/ {                          set d int (c / 5) * 5$ C, Z& e( Q2 o. v" x5 B
   setxy   ( xcor-of turtle d + x )  R6 c: G- s( H# a9 P
           (ycor-of turtle d + y ) 1 W9 C1 M) w! J1 K4 {1 x! R( U
         
( h) |* @% q) I* C4 m            
4 ~  W0 e8 m/ q3 `if (remainder who 5 = 3) [set k who
- Y% b9 `7 E: b6 i$ M                          set x( Wid / 2)  , ?+ \6 G; P2 c" Z6 G
                          set y (0 - Dep / 2 ) ]
9 |& X' ]/ g4 h1 i6 w8 |* q5 x                          set f int (k / 5) * 5
. L' Q8 v/ {6 T, d) T' i3 \4 w  setxy   ( xcor-of turtle f + x )
9 \  w) I5 o$ v& R" H           (ycor-of turtle f + y ) 5 I+ C5 K& T6 K6 C+ T/ |  J6 d8 A
           
# K2 o( g$ W6 [: T+ N. _           
- L$ d5 h+ b9 r  Dif (remainder who 5 = 4) [set g who9 B4 E2 I: ~# M# |7 h* e
                          set x Wid / 2 ( o# n" ^! C$ B6 l
                          set y  Dep / 2 ]! _! d7 A4 T2 J( {9 {4 f0 f7 v$ e: c
                          set h  int (g / 5) * 5
2 w' F3 U7 m3 G, D+ I1 r* e2 T, p  setxy   ( xcor-of turtle h + x )
& g& |. L1 _/ S, S/ {6 q) S           (ycor-of turtle h + y )
( g1 Y0 _4 c/ v2 v! E" e                          . Z* b/ O+ V5 |- f
                          
' y( T2 ^( t$ Q9 ~: S3 F                          ]3 k3 |; x( H& E4 H# Z7 R
end
2 D7 U2 g: W" F& M0 P6 S- u% W
3 B5 ]& n. z& p( a[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,% U$ {7 T6 O3 ^
应该是
3 R- m( N  {3 R$ n0 f. `+ s9 y- k+ }ask turtles [0 _4 W+ y; [3 ^: T% s
if (remainder who 5 = 1) [set x ( 0 - Wid / 2 ) ' A8 {& V6 |* m
                          set y  Dep / 2 8 @0 V' M4 }8 X& Z+ X  U% n
           set b  int (who / 5) * 5% Z5 P# `/ @( K0 P  `; Z0 K
    setxy ( xcor-of turtle b + x )5 ?, n' N* C. G7 Q& V2 V( s+ i
          ( ycor-of turtle b + y )]]3 s" `9 S: [) c4 M8 i5 Y
end
) U2 `" \; _; T- n" _# _7 {  V之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-6-4 09:40 , Processed in 0.017639 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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