设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 8780|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。
6 ?2 K* Z# \$ {' h6 e' t: E4 ?' A4 _7 M. D* L9 {' r, T5 t
但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。
" n4 E6 _. x0 L0 |9 a! r% O3 d7 R
turtles-own [a b c d k f g h
, `. \  C  ?, R+ a  A  x y     ;; these are the leaf-turtle's offsets relative to center-turtle
7 S% c" w$ y% s$ R* P% U3 J]
( M% X" g7 {8 f3 jto new
" c4 Y/ b" e( R) g3 O7 `! }% V& l  ca3 \1 _* {( C8 ^4 o
  crt 5 * num_of_building
2 B- K% H9 ?% F4 Y  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]; A; e4 v  @+ u
  scatter     ;;keep center-turtle random positions
9 Y0 Z" x( \2 x' c# a2 v  unit_plan   ;;make up the building plan7 T/ d  x# v/ f: e" P  n
end: P2 ]  F+ W0 V. k
to scatter- v$ }" J' h/ r. M( K" o1 d
ask turtles with [remainder who 5 = 0]+ F% b% Z: J2 |/ I  D6 I- s( O
[& m0 X& r% h8 \8 o
set xcor xcor - 6 + random-float 15* j* ^6 @5 a8 A; i/ @
set ycor ycor - 6 + random-float 15! J+ O) w; V7 q  J
]
& j7 e# R0 e& j+ W, M. L3 Q# T1 Yend
7 B" Z' y# ]7 A- g  Z9 a3 `, [to unit_plan 3 D1 Z+ j- S5 I4 F$ ?6 R0 y
ask turtles [- r8 u1 J4 q' b' G9 y2 u0 ?0 _* t+ L
if (remainder who 5 = 1) [set a who 5 K! |6 m0 O8 K  a. M
                          set x ( 0 - Wid / 2 ) 8 R- Z8 h. J; e3 }0 Y5 |4 c9 f3 I
                          set y  Dep / 2 ]
; O: Q4 o2 h/ h; P           set b  int (a / 5) * 5
, d, s) W5 C% a/ K    setxy ( xcor-of turtle b + x )* j( n3 x& |- R* `- U* m1 z+ a
          ( ycor-of turtle b + y )" M  F# s' n( L7 u+ b
if (remainder who 5 = 2) [set c who
/ s' \8 t" g6 J. `                          set x ( 0 - Wid / 2 ) % l2 V" ?1 Z; A6 |  K
                          set y (0 - Dep / 2 )  ]& w7 }' v( ]: [3 [
                          set d int (c / 5) * 5
$ e( {  Q- m3 ]0 k   setxy   ( xcor-of turtle d + x ). j$ Q$ W' j2 s0 K4 V3 a, v
           (ycor-of turtle d + y ) 0 t& Y+ l) i8 w0 i  Z0 g
         
7 C& g; C! ]1 I6 t" F, {' M. x5 x! y            
4 l1 Y( ^) l9 N& P, T0 [0 bif (remainder who 5 = 3) [set k who
6 j7 G( Z; v: O                          set x( Wid / 2)  - x. [' M$ f) G0 [
                          set y (0 - Dep / 2 ) ]# L' D6 ^8 |3 g/ S0 c: b8 t0 U, ]
                          set f int (k / 5) * 5; F- _6 Z# W2 Y$ ~% [% {
  setxy   ( xcor-of turtle f + x )
: ~* C* o, M9 Q$ [2 k, D; W2 ^7 \$ t           (ycor-of turtle f + y ) 4 B" P  H5 R! S4 y! J# h
           
0 J2 I4 y( ~5 |, e& x. e           * _( v4 W% Z6 a4 [. K, E
if (remainder who 5 = 4) [set g who
/ M2 A& p8 s. Z& `2 c                          set x Wid / 2
9 t& I* O7 o5 b                          set y  Dep / 2 ]
$ f/ E5 v2 w* B* N" D                          set h  int (g / 5) * 5
' X3 z2 B& r0 j! L; k1 A# y  setxy   ( xcor-of turtle h + x )/ X3 I# t- J$ t6 j, x
           (ycor-of turtle h + y )
5 O3 R- w" p2 S                          
/ H+ Y/ F% s9 v6 M                          
& A7 C! e' {, N! {                          ]
# R! j+ {) b+ P2 J+ v: b' fend* b; z* L9 z6 ?
. k* t" c0 B8 i  U4 H. v% }
[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,
! K# x  \7 d. m$ h. l5 W& W应该是1 c7 R6 n* H) M9 t! `
ask turtles [4 M% }6 ^- K. E, u; [4 ?9 R
if (remainder who 5 = 1) [set x ( 0 - Wid / 2 )
; Y- u* \& a4 ?( |7 H9 l                          set y  Dep / 2 ; _+ ~" `3 r) Q( y$ B
           set b  int (who / 5) * 5
% I- s* g* a6 E- D; o1 j, O/ u    setxy ( xcor-of turtle b + x )2 w9 j2 q0 Q4 L* A3 [
          ( ycor-of turtle b + y )]]. Y% S/ h3 Z) Y$ t6 J2 W
end
) g% L3 a8 R( Y) F+ W: X& _之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-8-3 16:32 , Processed in 0.017897 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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