说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 任意检测信号
1)  Arbitrary testing signal
任意检测信号
2)  almost arbitary signal
准任意信号
3)  signal measurement
信号检测
1.
Importance and means of signal measurement and processing in control of three main electric and mechanical equipment for walking beam heating furnace are discussed.
论述了步进梁加热炉的三个主要电气机械设备控制中信号检测和处理的重要性及方法,包括四个方面:数字信号的时间滤波处理,装钢机、出钢机的平移行程检测信号处理和测量故障判断,步进梁的平移行程检测,板坯流出量的检测方法。
2.
METHODS: Based on the principle of EIS, we set up a workplace used in signal measurement and analyzed the amplitude and phase of the measuring signal from the human body.
方法 :基于EIS检测原理通过初步建立的信号检测平台 ,采集一些人体数据 ,并对信号的幅值、相位进行分析 。
3.
The realization of the signal measurement and signal processing technique for the intelligent sensor is illustrated,and intelligent sensor network interface is discussed.
提出并分析了智能传感器的功能特点,给出了智能传感器的硬件组成结构,说明了智能传感器设计中信号检测技术、信号处理技术的实现,详细讨论了智能传感器网络接口。
4)  Signal detect
信号检测
1.
The hardware reliable design of signal detectcircuit in the optical gigabit Ethernet adaptor;
光纤千兆以太网“光信号检测”电路硬件可靠性设计
2.
The effects of time step of numerical computing and drive input white noise on movement features of a Duffing oscillator in weak signal detection, especially, their effects on its chaotic critical state and big scale periodic state, are studied.
强噪声背景下混沌弱信号检测是利用弱信号的周期扰动使系统运动状态发生改变实现的,研究了数值解算时计算步长和驱动输入白噪声对弱信号检测中Duffing振子运动特征的影响,重点研究了对Duffing振子混沌临界态和大尺度周期态的影响,结果表明采用数值解算的步长不同系统运动状态不相同,与统计意义下任何零均值噪声都不会改变系统原有运行轨迹不同,不同功率的驱动输入白噪声会导致系统状态改变,分析了产生原因。
3.
It is a new method of currently signal detection in time field that the weak signal detection using chaos system for its good performance in report.
混沌微弱信号检测研究是当前在时域检测信号的新方法,该文通过仿真计算研究了Duffing振子检测弱正弦信号的性能。
5)  signal detection
信号检测
1.
Establishment of quantitative signal detection system on adverse drug reaction spontaneous reporting database of Shanghai;
上海市药品不良反应自发呈报数据库定量信号检测系统的建立
2.
Multi-channel self-correlation signal detection algorithm and its FPGA implementation;
多通道自相关信号检测算法及其FPGA实现
3.
Study of the sensitivity of novel re-entrant fiber optic gyroscope s signal detection;
新型再入式光纤陀螺信号检测灵敏度的研究
6)  detection [英][dɪ'tekʃn]  [美][dɪ'tɛkʃən]
信号检测
1.
The adaptive optimization of detection thresholds for tracking in clutter is an important issue in tracking.
通过研究和仿真发现 :在滤波稳定阶段 ,本文给出的自适应信号检测门限方法的跟踪性能优于固定虚警率方法的跟踪性能 ;基于先验检测门限优化准则实现检测 -跟踪的联合优化要求信噪比要大于一定的门限 ,在瑞利起伏环境下 ,对 2维测量和 4 -sigma确认门 ,该门限为 1 。
补充资料:ANSYS中在任意面施加任意方向任意变化的压力方法
在任意面施加任意方向任意变化的压力
在某些特殊的应用场合,可能需要在结构件的某个面上施加某个坐标方向的随坐标位置变化的压力载荷,当然,这在一定程度上可以通过ANSYS表面效应单元实现。如果利用ANSYS的参数化设计语言,也可以非常完美地实现此功能,下面通过一个小例子描述此方法。
!!!在执行如下加载命令之前,请务必用选择命令asel将需要加载的几何面选择出来
!!!
finish
/prep7
et,500,shell63
press=100e6
amesh,all
esla,s
nsla,s,1
! 如果载荷的反向是一个特殊坐标系的方向,可在此建立局部坐标系,并将
! 所有节点坐标系旋转到局部坐标系下.
*get,enmax,elem,,num,max
dofsel,s,fx,fy,fz
fcum,add !!!将力的施加方式设置为"累加",而不是缺省的"替代"
*do,i,1,enmax
*if,esel,eq,1,then
*get,ae,elem,i,area !此命令用单元真实面积,如用投影面积,请用下几条命令
! *get,ae,elem,i,aproj,x !此命令用单元X投影面积,如用真实面积,请用上一条命令
! *get,ae,elem,i,aproj,y !此命令用单元Y投影面积
! *get,ae,elem,i,aproj,z !此命令用单元Z投影面积
xe=centrx !单元中心X坐标(用于求解压力值)
ye=centry !单元中心Y坐标(用于求解压力值)
ze=centrz !单元中心Z坐标(用于求解压力值)
! 下面输入压力随坐标变化的公式,本例的压力随X和Y坐标线性变化.
p_e=(xe-10)*press+(ye-5)*press
f_tot=p_e*ae
esel,s,elem,,i
nsle,s,corner
*get,nn,node,,count
f_n=f_tot/nn
*do,j,1,nn
f,nelem(i,j),fx,f_n !压力的作用方向为X方向
! f,nelem(i,j),fy,f_n !压力的作用方向为Y方向
! f,nelem(i,j),fz,f_n !压力的作用方向为Z方向
*enddo
*endif
esla,s
*enddo
aclear,all
fcum,repl !!!将力的施加方式还原为缺省的"替代"
dofsel,all
allsel
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条