说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 使用条件
1)  application condition
使用条件
1.
The application conditions and service of magnetic water treatment in corrosion and fouling inhibition are studied.
文章从实际应用的角度出发,研究了磁场水处理防蚀阻垢的使用条件和应用范围,并根据实际应用的经验,从磁处理器的形式、磁场强度、处理液流速、离子影响及其他注意事项等多方面进行了阐述,从而对磁处理技术的推广应用提出了相关建议。
2)  use conditions
使用条件
1.
In this paper, use conditions arc given for er(?)or series of automatic control systems, a direct relation among the use conditions for error series, the poles of closed-loop tranfer function and the frequency of input signal is obtained.
本文针对使用误差级数时存在的问题给出了误差级数使用条件,得到了误差级数使用条件与闭环传递函数极点和输入信号频率之间的直接关系。
3)  service condition
使用条件
1.
This article has introduced the characteristics,service conditions and range of application of some lathe tools,and summarized the influence of major structural parameters and turning parameters on turning process.
文章介绍了几种特殊车刀的刀具特点、使用条件、应用范围,总结了刀具主要结构参数、车削参数对切削过程的影响。
4)  using condition
使用条件
1.
Using conditions (load、speed、inflation pressure、rim width and road type etc.
详细地分析了使用条件(负荷、速度、充气压力、轮辆的宽度以及路面类型等)对轮胎使用寿命的影响,提出了延长轮胎使用寿命的措施。
5)  application range
使用条件
1.
Accuracy and application range of Imbalance Thrust Force Method for slope stability analysis;
边坡稳定不平衡推力法的精度分析及其使用条件
6)  Using Condition
用户使用条件
1.
Research on Heavy-duty Dump Truck Fuel Economy Based on Using Condition
基于用户使用条件的重型自卸车燃油经济性研究
补充资料:如何在NX中使用条件表达式?

你可以在表达式中通过 if/else 结构来建立条件表达式,表达式的具体语法标准可以参考以下标准:


if (expr1) (expr2) else (expr3)


比如说:


Width=if (length<8) (2) Else (3)


其意义是:


如果 length 小于 8, width 的值将等于 2;


如果 length 大于等于 8, width的值将等于3.


你也可以在条件表达式中建立多重的if/else结构. 比如你可以输入一下格式的多重条件表达式
width=if(a<=1)(3) else if(a==2)(5) else if(a>=3)(6) else (10)


其意义是:


如果a小于等于 1, width的值将等于3;如果 a 等于 2, width的值将等于5;如果 a 大于等于 6, width的值将等于6;其它情况下 width的值将等于10你也可以通过嵌套结构来定义符合条件的表达式,表达式的值将受到多重的条件控制.比如说: p3=if(p5==1)(if(p6==0)(0)else(1))else(if(p6==0)(2)else(3))其意义是:如果 p5 等于 1 并且 p6 等于 0, p3 的值将等于0如果p5 等于 1 但是 p6 不等于 0, p3 的值将等于1如果p5 不等于 1 但是 p6 等于 0, p3 的值将等于2其它情况下 p3 的值将等于3

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条