设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 7847|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。
" P% b( y# y& @% y. `
/ t0 c; ~& c" w, P& L5 A& r但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。7 m/ D5 O- A" C6 Z9 c) s
/ I. a/ }- Q, ^) |+ f  _
turtles-own [a b c d k f g h5 m  Y3 |' \; M3 @7 m: l) n) }) \
  x y     ;; these are the leaf-turtle's offsets relative to center-turtle
# M3 |- y# n" E]
: s4 E0 A! g$ _8 Bto new6 D# H+ n3 n$ r3 Y6 o
  ca% {3 u6 y3 I9 f8 f+ n! t8 w
  crt 5 * num_of_building. l8 H4 P% Z  {* m
  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]: I6 ?, ^4 h. p) w/ w
  scatter     ;;keep center-turtle random positions - ]/ r; k# e: H9 B5 b# n; r" _( A
  unit_plan   ;;make up the building plan
2 d6 G1 n7 H' bend8 c: }$ a& }/ X: s9 _9 ~3 N
to scatter& v, y$ H3 H1 D1 Q# O
ask turtles with [remainder who 5 = 0]
8 Z+ ]2 V4 G7 |5 f" `- a/ q* ]1 B- e[2 y2 [/ b" c. c+ ]& g
set xcor xcor - 6 + random-float 15
7 d' {) A1 |& n  fset ycor ycor - 6 + random-float 159 W* U7 h  q7 r- @
]8 }5 K" }' f0 ]1 J! G5 U% D
end- N/ `0 m8 j  w" g; L
to unit_plan ; @+ z+ D  q5 Z
ask turtles [8 e2 ^8 p, P% X7 M
if (remainder who 5 = 1) [set a who 0 i! I6 c  D3 Q9 {- y
                          set x ( 0 - Wid / 2 )
+ I1 K, I4 f1 `& m                          set y  Dep / 2 ]
# k8 q% i3 f  S1 b, R           set b  int (a / 5) * 55 H# f' I; `  L# U# e
    setxy ( xcor-of turtle b + x )
; O! r: D+ O' z: q3 U          ( ycor-of turtle b + y )% L1 q& {; [  v
if (remainder who 5 = 2) [set c who9 D* M3 l0 A, ?; f
                          set x ( 0 - Wid / 2 )
3 e8 s+ d- |- L% U                          set y (0 - Dep / 2 )  ]
/ Q# v$ A" ~+ a' j8 f0 {' O                          set d int (c / 5) * 5
( N' x8 B) z7 N, Z/ O0 a2 G   setxy   ( xcor-of turtle d + x )
4 k6 a. Z: C3 r/ d. ~+ k7 W           (ycor-of turtle d + y )
$ Z) r. d$ w0 {9 ^' I  e          0 G  f: X2 v; O; M0 G- c' L) p: d
            
3 ]2 @. {5 p. v5 ?) cif (remainder who 5 = 3) [set k who
& D; h* ~! y& |/ y                          set x( Wid / 2)  
% A' F5 Y+ X+ R( ]/ E3 s) v6 c) |                          set y (0 - Dep / 2 ) ]
4 _( ~, o* A3 X  U* W+ W' ]                          set f int (k / 5) * 5* \5 H4 M4 B- s! ?, T
  setxy   ( xcor-of turtle f + x )
3 A" \' N  s8 s# m4 d, O           (ycor-of turtle f + y ) 5 w; w9 F2 o5 n3 o9 W9 }' x% F, @
           
) ~2 d. _. g6 T4 y; S- w           6 k/ e0 e  q0 l. P- v$ s; p  V
if (remainder who 5 = 4) [set g who
) u; l4 ^" x  p& ^9 j" A                          set x Wid / 2
% `. {  ]4 `% h# C7 o  U0 T# u                          set y  Dep / 2 ]( q; m( }8 c& {" U: `& j
                          set h  int (g / 5) * 5
3 A! A( ^7 Q6 i  setxy   ( xcor-of turtle h + x )
4 L' j# E# o* k  Y- z, Q           (ycor-of turtle h + y ) $ T* J/ n$ {, N* Z
                          ' W7 U  Y# [2 c1 R
                          ) Z" Z' V4 [- J# B
                          ]
0 G: \. p% o: f$ E+ `" ~, L$ gend2 J3 A0 i1 E* A0 I8 H
: l3 {* G" r) P  {3 V
[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,
% C: R: F2 T' R4 a5 t应该是3 X) d, B: \4 z) G; q
ask turtles [4 S  O5 i1 _' D4 Z; \
if (remainder who 5 = 1) [set x ( 0 - Wid / 2 ) / c3 P  i7 L. p! U
                          set y  Dep / 2 ( Q6 V! {- x. J5 a! V
           set b  int (who / 5) * 5
9 z$ f1 N8 r0 T$ W# S, `    setxy ( xcor-of turtle b + x )) H; |+ K- k; k% a* }& e$ ^& b
          ( ycor-of turtle b + y )]]" C5 o+ x, l& X+ N; g7 P
end, O1 S- S. v+ y2 b5 E
之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-4-8 19:11 , Processed in 0.013366 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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