1)  Second-order correlation function
二阶相关函数g(2)(0)
2)  second order
二阶
1.
The existence of periodic solutions for a class of second order functional differential equations;
一类二阶泛函微分方程周期解的存在性
2.
Interval oscillation for second order neutral functional differential equations;
一类二阶中立型泛函微分方程的区间振动性
3.
Oscillation comparison theorems of solutions for second order nonlinear elliptic differential equations;
二阶非线性椭圆型微分方程解的振动比较定理
3)  second-order
二阶
1.
Oscillation criteria for a kind of second-order nonlinear difference equation;
一类二阶非线性差分方程的振动准则
2.
Boundedness of second-order nonlinear functional differential equations;
关于二阶非线性泛函微分方程的有界性
3.
A Second-order Algorithm for the Numerical S imulation of Stochastic Resonance;
一种用于随机共振数值模拟的二阶方法
4)  two-stage sampling
二阶抽样
1.
Extension of two useful results in two-stage sampling and its applications;
对二阶抽样中两个定理的扩充及其应用
2.
Based on the calculations in simple random sampling,stratified random sampling and two-stage sampling,it is shown that when the sampling size of two-stage sampling is 1/2 that of simple random sampling,the mean square error is much smaller than that of simple random sampling.
在通过对简单随机抽样、分层随机抽样和二阶抽样的实例计算之后,证明二阶抽样在抽样样本量为简单随机抽样的1/2时,其样本方差远小于简单随机抽样的样本方差;在样本量与分层随机抽样相同的情况下,其样本方差也要远小于分层随机抽样方差,提高了抽样数据的可信度和精度,从而肯定了二阶抽样方法对于数控机床可靠性研究中数据抽样问题的适用性,节约了抽样成本。
3.
Based on the precision and the cost of the relationship between the use of conditional extremum for the function of several variables method to determine when the first sample for sampling with probability proportion to size,the second-simple random sampling,the two-stage sampling is optimal allocation.
本文根据精度与费用之间的关系,利用求多元函数条件极值的方法,确定当第一级抽样为有放回PPS抽样,第二级抽样为简单随机抽样时,二阶抽样的样本容量最优分配。
5)  second-order fluid
二阶流体
1.
Flow rate distribution of the non-steady flow of second-order fluid in eccentric annulus with the inner cylinder reciprocating axially;
二阶流体在内管做轴向往复运动的偏心环空中非定常流的流量分布
2.
Analytical solution to relatively moving resistance of two spheres with interstitial second-order fluid;
存在填隙二阶流体时两圆球相对运动阻力的解析解
3.
The normal viscous force of squeeze flow between two arbitrary rigid spheres with an interstitial second-order fluid was studied for modeling wet granular materials using the discrete element method.
 为了进行湿颗粒群的离散元模拟,研究两圆球颗粒间二阶流体在挤压流动时的法向粘性力· 首先用小参数法对两平行圆盘间二阶流体挤压流动的速度场和正应力分布进行了近似分析,然后用类似的方法,分析任意两圆球间二阶流体的挤压流动,得到了压力分布和法向粘性力的解析解·
6)  Second-order calibration
二阶校正
1.
Determination of salicylate acid in plasma using three-dimensional fluorescence coupled with second-order calibration algorithms;
二阶校正法与三维荧光光谱相结合直接测定人体血浆中的水杨酸
2.
In this study, TYR and TRY in amino acid oral liquid were resolved simultaneously and determined directly by using second-order calibration based on alternating trilinear decomposition algorithm and excitation-emission matrix spectrofluorimetry(EEMs), and the results were validated by standard additio.
本研究将交替三线性分解二阶校正算法与激发发射矩阵荧光法相结合,对氨基酸口服液中共存的酪氨酸和色氨酸进行了同时分辨和直接定量测定,并用加入标准法对结果进行验证,TYR和TRY的回收率分别为(96。
3.
A novel method was proposed for the rapid determination of Daunomycin Hydrochloride(DM)in plasma and urine by combining the excitation-emission fluorescence spectra with the second-order calibration based on the alternating trilinear decomposition algorithm.
文章采用三维激发发射荧光光谱与化学计量学交替三线性分解(ATLD)二阶校正法相结合,对血浆液和尿液中柔红霉素(DM)进行定量测定。
参考词条
补充资料:pro/e关系式、函数的相关说明数据

关系中使用的函数
数学函数
下列运算符可用于关系(包括等式和条件语句)中。
关系中也可以包括下列数学函数:


cos ()
余弦


tan ()
正切


sin ()
正弦


sqrt ()
平方根


asin ()
反正弦


acos ()
反余弦


atan ()
反正切


sinh ()
双曲线正弦


cosh ()
双曲线余弦


tanh ()
双曲线正切


注释:所有三角函数都使用单位度。


log()
以10为底的对数


ln()
自然对数


exp()
e的幂


abs()
绝对值


ceil()
不小于其值的最小整数


floor()
不超过其值的最大整数


可以给函数ceil和floor加一个可选的自变量,用它指定要圆整的小数位数。


带有圆整参数的这些函数的语法是:


ceil(parameter_name或number, number_of_dec_places)


floor (parameter_name 或 number, number_of_dec_places)


其中number_of_dec_places是可选值:


·可以被表示为一个数或一个使用者自定义参数。如果该参数值是一个实数,则被截尾成为一个整数。


·它的最大值是8。如果超过8,则不会舍入要舍入的数(第一个自变量),并使用其初值。


·如果不指定它,则功能同前期版本一样。


使用不指定小数部分位数的ceil和floor函数,其举例如下:


ceil (10.2) 值为11
floor (10.2) 值为 11


使用指定小数部分位数的ceil和floor函数,其举例如下:


ceil (10.255, 2) 等于10.26
ceil (10.255, 0) 等于11 [ 与ceil (10.255)相同 ]
floor (10.255, 1) 等于10.2
floor (10.255, 2) 等于10.26


曲线表计算


曲线表计算使使用者能用曲线表特征,通过关系来驱动尺寸。尺寸可以是草绘器、零件或组件尺寸。格式如下:


evalgraph("graph_name", x)


,其中graph_name是曲线表的名称,x是沿曲线表x-轴的值,返回y值。


对于混合特征,可以指定轨线参数trajpar作为该函数的第二个自变量。


注释:曲线表特征通常是用于计算x-轴上所定义范围内x值对应的y值。当超出范围时,y值是通过外推的方法来计算的。对于小于初始值的x值,系统通过从初始点延长切线的方法计算外推值。同样,对于大于终点值的x值,系统通过将切线从终点往外延伸计算外推值。


复合曲线轨道函数


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