|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
1) Traffic set
线性编程
2) linear programming
线性程序编制
3) LP Linear Programming
线性规划,线性编程
4) On-line programming
在线编程
1.
In this paper,the on-line programming technology is introduced into network control system and a global on-line programming system is designed on CAN bus,thus the system s functional re-structure and remote upgrade are realized.
将单片机在线编程技术引入到网络控制系统中,设计出基于CAN总线的全局在线编程系统,使得系统能够实现远程升级和功能重构,提高了系统的适应性。
2.
The paper introduces the programming requirement of JTAG standards and the boot mode of TMS320C6414,and presents the detail method and process of on-line programming for outside FLASH by JTAG interface which based on CCS2.
2)下,通过JTAG接口实现对外接FLASH存储器在线编程的具体方法和步骤,解决了系统开发初期对程序进行频繁的擦除和烧写的问题。
3.
On the base of the on-line programming MCU,the system provides many advanced functions such as Dynamic Parameter setting,On-line upgrade.
应用Motorola 08系列中MC68HC908GP32为核心部件构成八路智能抢答器,除了实现基本功能外,在GP32支持在线编程的基础上提供了系统的参数动态设置与可在线升级功能,从硬件和软件方面详细阐述了其设计过程。
5) off-line programming
离线编程
1.
Modeling of devices in a robot arc off-line programming system;
ACADOLP机器人弧焊离线编程系统中的设备建模
2.
Coordinated motion simulation in a robot arc off-line programming system;
机器人弧焊离线编程系统协调运动的实现
3.
Application of off-line programming of arc-welding robot;
弧焊机器人离线编程的实用化技术
6) online programming
在线编程
1.
Research on DSP online programming and parallel bootloader based on FLASH;
基于闪存的DSP在线编程及并行引导方法研究
2.
The online programming for the track control of the experimental dolly is implemented here by analyzing the motion model for two-wheeldriven dolly and using the program processing principle and online programming method used on numerical control machine,and a designing manner is also presented,which is aimed for controlling the track of the two-wheel robot dolly.
通过对两轮驱动小车运动模型的分析,运用数控机床上的程序加工原理和在线编程方法,实现了小车的轨迹可在线编程,并提出一种两轮机器人小车轨迹控制的设计方法。
3.
Meanwhile,through application of the idea of soft PLC,the online programming function of the protective logic,together with graphic interface,is added to this platform.
同时,将软PLC技术应用于通用软件平台的设计中,使之具有保护逻辑在线编程的功能和图形化的开发界面。
补充资料: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后也可以用负值。
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|