说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 例子
1)  example [英][ɪɡ'zɑ:mpl]  [美][ɪg'zæmpḷ]
例子
1.
In addition to those,an example with periodic solution is enumerated respectively relating to fractional linear re- cursive relations of second order and third order and the periodicity of the solution about the recursive r.
对一阶分式线性递归关系具有周期解的条件进行了详细讨论,得到若干有用的结论;对二、三阶分式线性递归关系,分别列举了一个具有周期解的例子,并对解的周期性进行了验证。
2.
This paper introduces some examples of physical models and mathematic models, providing some ways to study physics.
例举了物理模型与数学模型建立的几个例子 ,为物理学习提供了一些方法与见解。
3.
Conditions of Newton-leibniz formula are studied, and corresponding examples are given.
对牛顿—莱布尼茨公式的条件进行研究,并且给出相关例子
2)  examples [英][ig'zɑ:mpl]  [美][ɪg'zæmpḷ]
例子
1.
The Quasi-affine Transformations and Analytic Transformations of u-scalar Operators and some Examples;
u-标算子的拟仿射变换和解析变换及其例子
2.
By usage of software MATLAB, the circuit analyses are introduced, and some examples are given.
应用MATLAB来处理电路分析问题方便、简洁、高效,能起到事半功倍的功效,并举出若干例子
3.
Less attention to examples not only exists because of emphasizing construct theoretical system blindly,but also because some teaching materials and treatise follow old examples,or use examples that have lost demonstration function earlier as rhetorical examples.
在修辞研究中,例子占有特殊地位。
3)  instance [英]['ɪnstəns]  [美]['ɪnstəns]
n.例子,事例,例证
4)  EMR
电子病例
1.
The TCM Clinical Data Warehouse (TCM-CDWH) under development collects a great amount of EMRs from a variety of EMR Management Systems (EMRMSs), and reorganizes the clinical data in a by-property fashion to provide high speed of data retrieving.
该数据仓库将多个电子病例管理系统中产生的大量临床数据进行集成和结构化存储,并在此基础上建立多种面向中医临床研究的应用,从而快速地向被授权的用户提供全面而准确的中医临床信息和知识。
5)  proportional factor
比例因子
1.
The effects in fuzzy controller and self-adjusting on-line of quantised factor and proportional factor;
量化因子和比例因子在模糊控制器中的作用及其在线修正
2.
According to the character of a class of time-delay and great inertia first-order system, the paper analyzes the system, brings out a new fuzzy control method which dynamically adjusts basic control flow f0 and proportional factor kf based on the desired output value and uses variable self-adjusts parameter a according to the different stages of control process.
对一类大惯性纯滞后一阶系统的特点进行了数学分析,提出了一种基于目标设定值动态调整基本控制量f0与比例因子kf的方法,并根据控制过程的不同阶段采用不同修正因子α进行自调整模糊控制;采用该方法的模糊控制器具有无超调、非振荡、稳态误差小、控制量变化过程平滑等优良性能,为纯滞后大惯性环节一阶系统的控制提供了一种新思路。
3.
The properties of the basic fuzzy controllers can be improved through compiling S-function that automatically corrects the quantizing factors Ke and Kc ,as well as proportional factor Ku.
在常规模糊控制器的基础上提出了一种参数自调整模糊控制器的设计方法,即通过编写S函数来自动修正量化因子Ke,Kec和比例因子Ku,从而改善基本模糊控制器的性能。
6)  scale factor
比例因子
1.
Application of scale factor and fluctuation cubic method to signal process;
比例因子与幅值立方法在信号处理中的应用
2.
The fuzzy logical controller of a three-phase induction motor with variable scale factors;
基于变比例因子的三相异步电动机的模糊控制器
3.
Gradient projection method of kinematic redundant manipulator based on continuous scale factor
基于连续比例因子的冗余度机器人梯度投影算法
补充资料:ANSYS工字梁焊缝初应力例子

建立好模型
…..
/SOLU
!*
ANTYPE,0
/INPUT,'input','txt',
/INPUT,'output1','txt',
!*
ISFILE,READ,1,txt, ,0
SOLVE
=====================
!定义残余应力矩阵
I=1
fy=310e6
!定义单元中心坐标数组,初应力数组
*DIM,EleCenter,ARRAY,NumNode,3,1, , ,
*DIM,EleIS,ARRAY,NumNode,1,1, , ,
*DO,I, 1, NumNode,1
!得到单元中心坐标
*GET,EleCenter(I,1,1),ELEM,I,CENT,X
*GET,EleCenter(I,2,1),ELEM,I,CENT,Y
*GET,EleCenter(I,3,1),ELEM,I,CENT,Z
!焊缝位置在X=1.0 到1.05 之间
*IF,EleCenter(I,1,1),GT,1,THEN
*IF,EleCenter(I,1,1),LT,1.05,THEN
*IF,EleCenter(I,2,1),GT,0.5,THEN
!上翼缘初始应力
EleIS(I,1,1)=-20*fy*EleCenter(I,3,1)**2+0.3*fy
*endif
*IF,EleCenter(I,2,1),LT,0.0,THEN
!下翼缘初始应力
EleIS(I,1,1)=-20*fy*EleCenter(I,3,1)**2+0.3*fy
*endif
!腹板初始应力
*if,EleCenter(I,2,1),GE,0.0,THEN
*IF,ELECENTER(I,2,1),LE,0.5,THEN
EleIS(I,1,1)=4.076*fy*(EleCenter(I,2,1)-0.5)**2
EleIS(I,1,1)=EleIS(I,1,1)-0.719*fy
*IF,EleIS(I,1,1),LT,-0.3*fy,THEN
ELeIS(I,1,1)=-0.3*fy
*ENDIF


*ENDIF
*ENDIF
*ENDIF
*ENDIF
*ENDDO
===============
!输出应力数值
*CFOPEN,'1','txt',' '
*DO,I,1,3840
!*IF,EleIS(I,1,1),ne,0.,then
*VWRITE,'!'
(A)
*VWRITE,'! Stress for element',
(A,F)
*VWRITE,'!'
(A)
*VWRITE,'eis,',I
(A,F)
P=EleIS(I,1,1)
*VWRITE,P,0.,0.,0.,0.,0.
(E,E,E,E,E,E)
!*ENDIF
*ENDDO
*CFCLOS

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