PDMS中文教程--PML基礎练习.doc

  1. 1、本文档共12页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
PDMS中文教程--PML基礎练习

一个简单的 Macro NEW EQUIP /FRED NEW BOX XLEN 300 YLEN 400 ZLEN 600 NEW CYL DIA 400 HEI 600 CONN P1 TO P2 OF PREV 参数化宏Parameterized Macro NEW EQUIP /$1 NEW BOX XLEN $2 YLEN $3 ZLEN $4 NEW CYL DIA $3 HEI $4 CONN P1 TO P2 OF PREV 变量给属性赋值 New Pipe Desc My Description Temp 100 Pspec /A3B Purp PIPI !desc = desc !temp = temp !pspec = pspec !purp = purp New Pipe Desc $!desc Temp $!temp !pspec $!pspec !purp $!purp 字符串方法实例 !line = hello how are you !newline = !line.after(hello).trim().upcase() q var !newline !newline = !newline.replace(how, where).replace(you, you?) 定义函数 define function !!Area( !Length is REAL, !Width is REAL ) is REAL !Area = !Length * !Width return !Area $*函数!!Area有两个参数一个返回值 Endfunction 练习-新建函数计算园的面积,测试函数 define function !!circleArea( !radius is REAL) is REAL !Area = PI * pow(!radius,2) return !Area Endfunction 条件判断语句(If Construct) !Type = Type !OwnType = Type of Owner IF (!Type eq BRAN) THEN $P CE is Branch. ELSEIF (!OwnType eq BRAN) THEN $P CE is Branch member. ELSE $P CE is $!Type,Pls select Branch. ENDIF 练习-条件判断 !n = 0 !type = type if(!type eq BRAN) then !href = href !tref = tref if(!href.set()) then !n = !n + 1 add href endif if(!tref.set()) then !n = !n + 1 add tref endif endif if(!type eq NOZZ) then !cref = cref if(!cref.set()) then !n = !n + 1 add cref endif endif $p Total $!n reference 循环赋值 !Total = 0 Do !x From 1 To 100 By 1 !Total = !Total + !x Enddo 中断循环 Break !Total = 0 Do !x From 1 To 100 !Total = !Total + !x If(!Total gt 500) then Break $*或者Break if(!Total gt 500) Endif Enddo 用skip 跳过奇数 Do !x From 1 To 100 If(Int(!x / 2) NE (!x / 2)) then Skip $*或者Skip If(Int(!x / 2) NE (!x / 2)) Endif !Total = !Total + !x Enddo 练习-跳转 !n = 0 label /start !type = type if(!type eq BRAN) then !href = href !tref = tref if(!href.set()) then !n = !n + 1 add href endif

文档评论(0)

fv45ffsjjI + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档