设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 11725|回复: 2

[求助] Automod Syntax 编译的一个问题

[复制链接]
发表于 2009-4-4 23:58:32 | 显示全部楼层 |阅读模式
5仿真币
想请版上的人帮我看看我这段code中的一个错误,我刚学Automod没多久,实在找不出错在什么地方了,谢谢  ]& h1 Q) w6 p3 U" Y4 X7 ^

) m2 n6 ]& i4 s/ I0 [& T我的问题是,在每个P_pick的process中的while循环内,总显示错误Expecting QueuePtr or Location, but found PathPtr. 在我定义所有的attribute的时候,从来没有定义过任何QueuePtr or location or PathPtr,为什么会出现这种错误呢。 我这里面A_picks是一个30x1的array的load attribute,我想用A_i这个load attribute来读取这个array中的数值,不知道会不会有什么不妥。
9 t8 a4 ]& G5 d; V: {( o  N( b3 Y* c) O6 A# L
begin P_read arriving) E0 O  Y5 l1 k) O
    while 1=1 do begin2 k+ A: S- z* i3 T0 M1 l3 F4 L
        read A_tote from "data.txt" with delimiter "\n"
7 Y* }, v) A& L8 A' g# w        read A_time from "data.txt" with delimiter "\n"
) m5 U3 l' ^: i) r& K& \6 E2 r$ K        read A_leave from "data.txt" with delimiter "\n"
- ]5 E: a2 u" V. ^* Z' D        read A_picks from "data.txt" with delimiter "\n"
6 N9 s; _) G+ m( @" S7 |        set load type to A_tote: |" Z% B) ^  C! ?1 K8 q" Q6 t
        if A_tote="tote 1" then set A_induct to 1) A& D- l( W* ~* h6 w* X
        else if A_tote="tote 2" then set A_induct to 2
  C/ d" {$ g# m  l% f            else set A_induct to 3   
9 t2 n$ I0 n& s        set A_i to 0" v5 G* {, I" ]# k% c  Z" K
        clone 1 load to P_induction
6 e' V' M+ ?( {4 L- s2 X) U6 {3 }        wait for A_time sec4 d& z; W% N! n; w8 e) D; {
    end
; b/ O8 L& [+ d$ p8 G' v# V1 S2 Fend3 G( q, G+ S. s8 f

* X! x. n+ X" u$ |0 rbegin P_induction arriving
" X3 u: \  J" p( m    if A_induct=1 then clone 1 load to P_pick1
) @0 E, n3 F' d. H; j2 s    else if A_induct=2 then clone 1 load to P_pick28 r6 B( O/ s- p0 h
        else clone 1 load to P_pick3
  g" W" L) }9 wend2 y+ G  K. q  m! e0 U; e
( {6 ~3 T3 \, L' z2 y
begin P_pick1 arriving
/ R/ \/ K3 @( v7 P* n7 f    set A_i to 1
" u2 F$ `. d: K    move into Q_induct1
5 w8 S0 H6 h$ q, q    move into pickaisle.induct1
7 [1 I" `& k7 j2 i" }7 M    while A_i<=30 do begin
! g& L8 D. Y( I) s        travel to pickaisle.con(A_i)  V. K8 x0 G! H0 M' c
        if A_picks(A_i)<5 then wait for 5*A_picks(A_i) sec. e% h- T; g$ y3 x5 ?/ a! W0 n% L
        else wait for 10 sec" s- R' y* S; w% i& P
        if A_i=A_leave then send to die2 o* I- X! c0 Z  p, t# a9 v# @% t
        else inc A_i by 1  y  ^) N& g( q) w5 X3 ~. Y
    end8 N5 \2 `5 Q. H5 ?% P
end
9 r6 K2 m6 ]( y1 W4 V  {) k2 u% |" {0 _7 e  o$ A  g
begin P_pick2 arriving3 n, V+ X) Q+ p) @0 r1 A
    set A_i to 11
5 i# O3 v# {6 e    move into Q_induct2+ y9 H4 m2 [7 @
    move into pickaisle.induct2/ g1 A: \9 M& F8 ~" ~% I/ X) M
    while A_i<=30 do begin
. j& L. E% y; r        travel to pickaisle.con(A_i)% }' N! Z8 h. R$ I/ X
        if A_picks(A_i)<5 then wait for 5*A_picks(A_i) sec
3 k2 f4 [1 h3 @5 M, V7 B0 [/ `# `        else wait for 10 sec
4 Q. d9 S9 s, ]3 ]$ \6 [        if A_i=A_leave then send to die( I% a- y  l+ D: x
        else inc A_i by 1
7 \1 t! m0 D1 D; u/ p    end
, ?! n" W4 N  C# F- Zend6 v  f$ u6 Y6 n1 y& Y/ ?

1 S# o6 u) z& O) s" R# Nbegin P_pick3 arriving9 t& s" ^5 L! s
    set A_i to 21
# s8 y) C$ g, y5 {    move into Q_induct3: ?) n- y3 [1 }- c
    move into pickaisle.induct3
6 t7 T6 @* w7 u! Z" e    while A_i<=30 do begin% T& m. k+ p/ w! a) `0 ?2 a
        travel to pickaisle.con(A_i)* f; K0 j; c* l, K3 ?6 v' S1 k4 E+ K
        if A_picks(A_i)<5 then wait for 5*A_picks(A_i) sec# i$ |* G3 k1 T& y
        else wait for 10 sec9 Y6 T- l& c" M( M  f( U+ B) Z& k( K
        if A_i=A_leave then send to die
$ Z1 V: |6 V% Y2 O3 n0 P        else inc A_i by 1# _8 r) A$ [0 ~$ h& P6 v/ ?" V# j
    end, ^, p5 Y0 Q5 y# o
end

最佳答案

查看完整内容

pickaisle.induct1/2/3是个什么东东? move into后面,应该是一个station或control point,或者Queue/Container/Vehicle/Segment之类的东西。看你的报错信息,这个induct是个path么? AutoMod Editor的语法报错信息,有时候会指在下一行,必要的时候要把上下几行都看一下。 另外,你的几个P_pick是完全重复的,建议以如下方式修改,可以减少代码编写量: 1. 创建一个Process:名称为P_pick,number of Processes为3,其它按你的 ...
发表于 2009-4-4 23:58:33 | 显示全部楼层
pickaisle.induct1/2/3是个什么东东?* R# M8 t: o& G' D# O
move into后面,应该是一个station或control point,或者Queue/Container/Vehicle/Segment之类的东西。看你的报错信息,这个induct是个path么?
) {+ [6 \7 I* B. |- }( [% q. U+ x- u8 t9 x
AutoMod Editor的语法报错信息,有时候会指在下一行,必要的时候要把上下几行都看一下。7 a( @( z2 y9 f4 s& [, ?

/ |4 D+ W0 I, E另外,你的几个P_pick是完全重复的,建议以如下方式修改,可以减少代码编写量:- I& n- ~% i6 v' X6 d6 D8 Q' x
1. 创建一个Process:名称为P_pick,number of Processes为3,其它按你的需要设置;删除那几个P_pick;- a% p6 @* e7 u$ W) h! ?: [
2. 创建一个Queue:名称为Q_induct,number of Queues为3,其他按你的需要设置并放置;删除那几个Q_induct;, S$ E, T9 }7 d, F! ?
3. 以如下方式改写P_induction和几个P_pick的arriving procedure的代码:
3 q1 X+ A  q( o1 y$ {/ F% ~5 Y* lbegin P_induction arriving
7 X5 `+ U3 W. z- ^    clone 1 load to P_pick(A_induct)
# m) p+ `/ p* R7 Iend最大的系
# J% F, O5 P; ?! G; G  \" D
9 }8 k8 f1 W  S4 S7 y4 v5 xbegin P_pick arriving
3 B, ?# n' |; e6 O9 a" `6 }    set A_i to procindex * 10 + 1
5 f, Q( E' K) \, D. t    move into Q_induct(procindex)
7 b6 l7 s( C& e- z2 F' K, k    move into pickaisle.induct(procindex)
/ ?( K& [8 F' S  a3 X    /*check the type of pickaisle.induct(i), for your last problem.*/
0 b5 c' p+ a# c5 M& S5 Q. L+ v% b: Q; Z
    while A_i<=30 do begin
+ N5 R6 Y1 l( ^: o        travel to pickaisle.con(A_i)
4 j" F5 Q: M' W. G$ R! Z. [6 D        if A_picks(A_i)<5 then wait for 5*A_picks(A_i) sec
/ O8 l6 J$ k; k0 Q        else wait for 10 sec! \; ?5 Y; W& n) j
        if A_i=A_leave then send to die
& [. b, k5 k3 s& @0 e        else inc A_i by 1" v, r( v$ ?2 D+ d
    end7 z5 D5 ?0 d* j: N" D2 h
end
( c: z! p5 f1 e  {; W1 ^- z5 y( m7 F/ c# m
其中的procindex为整形,代表当前process的序号。
$ K' }% I& F& X3 `station和control point只要以数字结尾,都可以直接用作数组。如pickaisle.induct(procindex),当procindex为1的时候,和pickaisle.induct1是等同的。
发表于 2009-4-20 15:33:32 | 显示全部楼层
你的主要错误应该是在move into pickaisle.induct或者 travel to pickaisle.con这两个类型的语句中,因为你的编译说明的意思是类型混淆,你查一下报错的行数,应该就能找到问题,其他的问题慢慢调吧
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2025-12-1 03:28 , Processed in 0.021161 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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