|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
1) network communication foundation curriculum
网络通讯基础课
2) network foundation lesson
网络基础课
1.
In view of problem that existed in the current network foundation lesson teaching of the vocational high schools, such as: Students character is low, disobeying the discipline at class, the teaching quantity is difficult in guarantee, the teacher teaches while the students play at class, the teaching efficiency is low, etc, which cause the teacher cannot finish the teaching task.
针对当前职业高中网络基础课教学中存在的困难,如:学生素质低,上课违纪,教学质量难于保障,教师上课“唱独角戏”,教师教学效率低下等问题,导致职业高中该专业课的任务难于实现的现状。
3) Network Communication
网络通讯
1.
KTC5 type network communication control devices on the coal face;
KTC5型综采工作面网络通讯控制装置
2.
Research on technologies of network communication and control between NC machines of economical type;
经济型数控机床的网络通讯和控制技术研究
3.
Software design of network communication system for medical video under embedded platform;
嵌入式平台下医学视频网络通讯系统的软件设计
4) net communication
网络通讯
1.
The article explains the control system and realization on Baotou Steel seamless steel pipe 180mm heat treatment production line water quenching equipment, includes equipment constitution, process flow, control system model selection, HMI human-computer interface, net communication etc contents.
介绍包钢无缝钢管180mm热处理生产线水淬设备的控制系统设计与实现,包括设备组成、工艺流程、控制系统选型、HMI人机界面、网络通讯等内容。
2.
The data communication function between the NC machine and the computer was realized via RS-232 serial interface in this net communication system of NC machine.
数控机床网络通讯软件系统的串行通讯部分利用一般数控机床所拥有的RS -2 3 2串行接口 ,使数控机床可以同计算机之间进行交互通讯 ,更重要的是该通讯系统具有只在机床端操作 ,就能获得计算机内指定文件的功能 ,大大简化了以往机床通讯的繁杂操作 ,并且实现对大数据文件的分割功能 ;网络通讯部分利用TCP/IP和UDP协议建立网络通讯功能 ,开发的程序系统使机床加工终端与远程数据中心、远程控制中心和远程设计中心实现数据交换。
5) communication network
通讯网络
1.
Design of communication network for integrated substation automation system based on CAN fieldbus;
基于CAN总线的变电站综合自动化系统通讯网络设计
2.
Presented in this paper are the structure of SIBAS32 control system,TCN train communication network and its CCU control soft of type HXD1 high-power AC electric locomotive.
介绍HXD1型大功率交流电力机车用SIBAS32控制系统、TCN列车通讯网络及其CCU控制软件的结构,分析机车网侧部件控制、自动过分相控制、操作逻辑控制、牵引/制动控制等功能,给出了机车故障诊断和调试的方法。
3.
This paper discusses basic compositions,control modes,communication network and problems related to design of port bulk cargo loading/unloading and conveying control system.
概述了港口散货泊位装卸运输机电设备自动控制系统的基本结构、自动控制方式、系统通讯网络结构 ,及其设计选用时应考虑的基本原则和问题。
6) communication net
通讯网络
1.
Analyse the composing and applying of the high-speed wire auto system and timing gearing system and the whole auto system is made up of three grades systems and three communication nets.
分析了安钢高线自动化系统和调速传动系统的构成以及具体应用 ,整个自动化系统由三级控制系统和三层通讯网络构
补充资料:Autocad VBA初级教程 (第二课 编程基础)
第二课 编程基础 本课主要任务是对上一课的例程进行详细分析 下面是源码: Sub c100() Dim cc(0 To 2) As Double '声明坐标变量 cc(0) = 1000 '定义圆心座标 cc(1) = 1000 cc(2) = 0 For i = 1 To 1000 Step 10 '开始循环 Call ThisDrawing.ModelSpace.AddCircle(cc, i * 10) '画圆 Next i End Sub 先看第一行和最后一行: Sub C100() …… End Sub C100是宏的名称,也叫过程名称,当用户执行C100时程序将运行sub 和end sub之间的所有指令。 第二行: Dim cc(0 To 2) As Double '声明坐标变量 后半段“'声明坐标变量”自动变为绿色字体,它是代码语句的注释,它不会影响程序运行,它的作用是告诉阅读者程序员的想法。对于简单的程序,一般不需要写注释,如果要编写非常复杂的程序,最好要多加注释,越详细越好,对于程序员来说,这是一个好习惯。 电脑真正编译执行的是这条语句:Dim cc(0 To 2) As Double 它的作用就是声明变量。 Dim是一条语句,可以理解为计算机指令。 它的语法:Dim变量名 As 数据类型 本例中变量名为CC,而括号中的0 to 2声明这个CC是一个数组,这个数组有三个元素:CC(0)、CC(1)、CC(2),如果改为CC(1 to 3),则三个元素是CC(1)、CC(2)、CC(3),有了这个数组,就可以把坐标数值放到这个变量之中。 Double是数据类型中的一种。ACAD中一般需要定义坐标时就用这个数据类型。在ACAD中数据类型的有很多,下面两个是比较常用的数据类型,初学者要有所理解。 Long(长整型),其范围从 -2,147,483,648 到 2,147,483,647。 Variant 它是那些没被显式声明为其他类型变量的数据类型,可以理解为一种通用的数据类型,这是最常用的。 下面三条语句 cc(0) = 1000 '定义圆心座标 cc(1) = 1000 cc(2) = 0 它们的作用是给CC变量的每一个元素赋,值其顺序是X、Y、Z坐标。 For i = 1 To 1000 Step 10 '开始循环 …… Next i '结束循环 这两条语句的作用是循环运行指令,每循环一次,i值要增加10,当i加到 1000时,结束循环。 i也是一个变量,虽然没有声明i变量,程序还是认可的,VB不是C语言,每用一个变量都要声明,不声明就会报错。简单是简单了,这样做也有坏处,如果不小心打错了一个字母,程序不会报错,如果程序很长,那就会出现一些意想不到的错误。 step后面的数值就是每次循环时增加的数值,step后也可以用负值。
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|