说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 绝缘数字输出模块
1)  isolated digital output module
绝缘数字输出模块
2)  DIM digital input module
数字输入模块
3)  Data output module
数据输出模块
4)  output module
输出模块
5)  Numeral and analogue I/O
数字量/模拟量输入输出
6)  digital output
数字输出
1.
The digital servo and digital output technologies for dynamically tuned gyroscope
动力调谐陀螺仪数字伺服与数字输出技术
2.
Up to now,there are no special tools to analyze and detect the digital output of combination unit.
介绍了电子式互感器的数字输出,并针对当前没有专门工具检测分析合并单元数字输出帧的情况,在LabWindows/CVI虚拟仪器平台上开发了一种数字输出分析仪,利用以太网卡采集电子式互感器合并单元数字输出信号,对信号进行分类与重组,实现波形显示、数据存储与分析等功能。
3.
The all-digital design is applied to improve the performance of RCT further,including digital integrating,digital transmission,digital signal processing and digital output.
全数字化设计旨在更进一步提高互感器的性能,它包括数字积分、数字传输、数字化处理和数字输出4个部分。
补充资料:ANSYS--格式输出数据

利用APDL功能按照一定格式写出ansys数据文件的方法 


ANSYS在运行阶段总是处理大量的模型数据、载荷数据以及结果数据等,有时需要将这些数据按照一定的格式写进指定的数据文件中,这时可以利用*GET和*VGET数据提取的各种命令将数据存入到变量或数组中,然后利用*CFWRITE或*VWRITE命令写入到指定文件.下面是使用*VWRITE实现该过程的一个实例: 


/post1
set,,,,,10.0
*get,ntemp01,node,2,temp ! 时间等于10时的节点2的温度值 
*get,ntemp02,node,9,temp ! 时间等于10时的节点9的温度值
*get,ntemp03,node,7,temp ! 时间等于10时的节点7的温度值 


*vwrite,ntemp01,ntemp02,ntemp03
(T1,''N2 TEMP='',F5.1,'', N9 TEMP='',F5.1,'', N7 TEMP='',F5.1)
/output,nodetemp,dat 


其中,命令/output可以用于确定输出方向,即输出到ansys的输出窗口(OUTPUT WINDOW)中,或者指定的文件中。上面将温度值输出到nodetemp.dat文件中,内容如下: 


N2 TEMP= 19.2, N9 TEMP= 19.8, N7 TEMP= 20.8 



这样就可以对输出数据用别的工具进行处理。

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