iCAx开思网

标题: UG/KF装配中参数的传递问题 [打印本页]

作者: visals    时间: 2008-3-12 16:28
标题: UG/KF装配中参数的传递问题
我正在学习UG/KF模块下的零件装配,目前遇到问题是无法将一个part文件中零件的参数传递给另一个part文件中的零件以控制其参数变化,做过的一个简单例子如下:
文件1:
作者: visals    时间: 2008-3-12 16:28
DefClass: a_block_part(ug_base_part);
(number parameter) L: 10;
(number parameter) W: 10;
(number parameter) H: 10;

(child) block_part:
  {
   class, ug_block;
   length, L:;
   width, W:;
   height, H:;
  };
作者: visals    时间: 2008-3-12 16:30
文件2:
#! UG/KF 17.0

DefClass: a_evaluate_operation(ug_base_part);
(string parameter modifiable) L: "10";
(string parameter modifiable) W: "10";
(string parameter modifiable) H: "10";

(child) into_1:
  {
   class, ug_component;
   file_name, "into";
  };

(string) into_rule: "{ class, into" + ", L," + L: + ", W," + W: + ", H," + H: + " }";

(string) component_rule: ug_evaluateInPart("into", "insto_rule", into_rule;
(list uncached modifiable) DemandValue: if into?: then {component_rule:} else {};
作者: visals    时间: 2008-3-12 16:34
提示错误:
Cannot evaluate rule: 'Root:sds:demandValue'
Child not available in this context
into?Stack: ug_base_part:sds:demandValue:if into?: then {component_rule:} else {}
作者: visals    时间: 2008-3-12 16:35
请大家指教




欢迎光临 iCAx开思网 (https://www.icax.org/) Powered by Discuz! X3.3