首页 | 本学科首页   官方微博 | 高级检索  
相似文献
 共查询到20条相似文献,搜索用时 812 毫秒
1.
本文介绍了如何使用VisualC 6.0编写GE Fanuc Cimplicity软件包的DDE程序,并利用Windows的消息机制和动态数据交换机制,用自己编写的软件将所采集的数据送入Cimplicity软件包或从Cimplicity软件包取出数据。最后列出了部分重要代码。  相似文献   

2.
动态数据交换(Dynamic Data Exhange,DDE)是由Windows提供的一种强大的功能,就是在应用程序之间能够相互交换数据。此功能不仅广泛用于单机,而且可用于网络。后者称为“网络DDE”。在实时监控系统的开发和应用中,DDE功能起着非常重要的作用。 DDE可以使你的的应用程序自动地接收其它应用程序传来的数据,传送端的数据一旦有任何变动,接收端都可以自动更新。反之,你的应用程序也可以传送  相似文献   

3.
1前言现在流行的各种编程语言中,fbxrID在数据处理方面比用其他高级语言开发具有更高的效率,但在实时监控、数据通信等方面却有所欠缺;而C语言却正好相反,它在与外设打交道方面可谓是专家,但在数据处理上却要花费很多时间和精力去编写大量的子程序。如何能将两者结合起来,从而取长补短,动态数据交换正是实现这一目的的有效方法。2动态数据交换原理动态数据交换(DDE.N则办CDdsfu一办angr)是进程间通信的方式。DDE用共享存储器在应用程序之间交换数据,用协议来同步数据的传递。DDE是基于消息的系统,在WINDOWS的管理下,…  相似文献   

4.
郭小兵 《微电脑世界》2001,(13):122-122
本文将介绍如何利用动态数据交换技术(Dynamic Data Exchange,DDE)在P 中把数据库中的数据传送到Excel应用程序中,以便用户调整并打印报表。 DDE用于在Windows平台上的2个正在运行的应用程序之间动态交换数据,  相似文献   

5.
VB(VisualBasicforWindowi)数据交换支持动态数据交换(DDE),动态连接库(DLL)和对象嵌入(OLE)等。这些特色使得VB的应用软件可以从其它基于Windows的应用程序获得数据、更新数据。本文简要介绍VisualBasic应用程序间动态数据交换的实现方法。1VB中DDE的链接方式动态数据交换(DDE):是在当前Windows应用程序间,为通过激活的链接来交换数据而建立的一种协议。通常把这种数据交换的过程称为对话。DDE链接可以在设计程序时建立,也可以在运行程序时建立。链接方式(LinkMode)对源程序和目的程序有不同的含义。对于源…  相似文献   

6.
一、DDE的基本原理  动态数据交换(Dynarnic Date Exchange,以下简称DDE)是Windows提供的一个重要技术,利用DDE可使两个Windows应用程序之间通过传递数据和命令来互相交换信息,实现数据的共享和应用程序的互补,以节约应用程序的开发时间和精力。其基本原理是以客户应用程序(以下简称客户方)和服务器应用程序(以下简称服务方)成对出现的形式来实现信息交换的,即客户方通过申请与服务方建立会话来启动数据交换;然后客户方即可向服务方发送数据请求,传送数据以及命令,服务方完成相应的处理,并将结果回送客户方;当客户不再需要数据和服务时,客户方即申请终止会话,以释放系统资源。DDE服务器应用程序为一自顶向下的三级体制:服务名、话题名和项目名,其用来唯一地标识服务器应用程序可以在会话中进行交换的数据单位。  相似文献   

7.
曹波  李龙 《微计算机应用》1998,19(3):147-150
本文阐述了使用动态数据交换在PowerBuilder应用程序和其他应用程序之间交换数据;介绍了动态数据交换的原理,描述了应用程序启动一个DDE会话、请求数据和对数据请求作出响应,以及终止会话。  相似文献   

8.
DDE(Dynamic Data Exchange动态数据交换)提供WINDOWS应用程序间的数据连接技术。本文以事例介绍了DDE双向通讯机制,着重阐述了BORLAND C++应用DDE进行双向数据交换的编程方法的实现。  相似文献   

9.
动态数据交换(Dynamic Data Exchange,简称DDE)和对象连接与嵌入(Object Linking Embedding,简称OLE)是Windows为运行在其上的应用程序之间的信息共享所提供的两种方法。许多基于Windows的应用程序都在设法使其支持这两种方法。Visual BASIC for Windows 2.0版本(以下简称VB)就完全支持这两种方法。 一、动态数据交换 支持动态数据交换(DDE)的两个应用程序之间可通过所谓的DDE对话(也称为DDE连接)来自动地交换数据。在对话中,提出对话的一方称为目的程序(在VB1.0中称为客户),做出反应的一方称为源程序(在VB1.0中称为服务者)。目的程序是数据的接收方,源程序是数据的供给方。在VB中,文  相似文献   

10.
中文WINDOWS3.1最重要的特点之一就是在应用程序之间可共享数据,其中动态数据交换(DDE)和对象链接与嵌入(OLE)等方法就是较好的例子。下面对使用DDE、OLE的难点作些分析,并给出实例说明。一、动态数据交换DDE剪贴板(CliPbeard)是Windows中进行数据交换的常用手段之一,但其缺点就是一次只能保存一项内容。另外,每次发送数据都需要用户去干涉。DDE允许动态传送数据而不需要干涉。1.DDE的特点DDE就是一种允许Windows应用程序共享数据或相互之间发送消息的消息系统。作为DDE如何运行的简单例子,考虑将字处理软件WO…  相似文献   

11.
一种网上数据交换的新技术-XML的分析和实现   总被引:17,自引:0,他引:17  
随着网络技术的发展,应用的体系结构从二层体系结构发展到三层体系结构,而且应用间通过网络交换数据日益频繁。该文提出了利用XML技术实现三层应用体系结构的中间层的网上数据交换模型,详细分析了实现过程中的关键问题。然后给出了使用它改造劳动力信息系统的实例。最后对采用该模型的优缺点作了进一步分析。它实现简单,可扩展性好,并且易于集成各种遗留系统。  相似文献   

12.
As wafer sizes increase, the clustering phenomenon of defects increases. Clustered defects cause the conventional Poisson yield model underestimate actual wafer yield, as defects are no longer uniformly distributed over a wafer. Although some yield models, such as negative binomial or compound Poisson models, consider the effects of defect clustering on yield prediction, these models have some drawbacks. This study presents a novel yield model that employs General Regression Neural Network (GRNN) to predict wafer yield for integrated circuits (IC) with clustered defects. The proposed method utilizes five relevant variables as input for the GRNN yield model. A simulated case is applied to demonstrate the effectiveness of the proposed model.  相似文献   

13.
Volatility is a key parameter when measuring the size of errors made in modelling returns and other financial variables such as exchanged rates. The autoregressive moving-average (ARMA) model is a linear process in time series; whilst in the nonlinear system, the generalised autoregressive conditional heteroskedasticity (GARCH) and Markov switching GARCH (MS-GARCH) have been widely applied. In statistical learning theory, support vector regression (SVR) plays an important role in predicting nonlinear and nonstationary time series variables. In this paper, we propose a new algorithm, differential Empirical Mode Decomposition (EMD) for improving prediction of exchange rates under support vector regression (SVR). The new algorithm of Differential EMD has the capability of smoothing and reducing the noise, whereas the SVR model with the filtered dataset improves predicting the exchange rates. Simulations results consisting of the Differential EMD and SVR model show that our model outperforms simulations by a state-of-the-art MS-GARCH and Markov switching regression (MSR) models.  相似文献   

14.
艾红  丁俊龙  刘云龙 《控制工程》2022,29(2):223-230
针对水泥烧成系统过程变量繁多、变量间静态关系耦合强等特点,采用因子分析方法建立静态过程监控模型.针对系统时序相关问题,结合经典动态主元分析DPCA方法和典型变量分析CVA方法,提出典型变量动态主元分析CVDPCA过程监控方法,有效解决了DPCA方法扩展后的数据矩阵维度大等不足之处.将算法用于水泥烧成系统故障检测,结果表...  相似文献   

15.
A three-dimensional model of exchange among different R&D types, i.e., basic articles, applied articles, and patents on inventions, has been constructed and investigated within the linear concept of innovations and equations of population dynamics. With linear functions for growth coefficients from phase variables, all eight critical points of the constructed third-order dynamic system were found.  相似文献   

16.
可见光图像中的高压线缺陷自动诊断方法   总被引:1,自引:0,他引:1       下载免费PDF全文
研究直升机巡检系统中,基于可见光图像的电力线缺陷诊断方法。对直升机机载系统采集到的可见光图像进行实时分析,自动诊断电力线上可能存在的断股、异物附着缺陷。研究了缺陷在可见光图像中的特征,并提出了一种基于亮度和空间信息的线对象检测方法,自动识别电力线。对线对象进行分析,获取其位置、方向、宽度信息,并进行对象分类。结合缺陷特征和对象与分类信息,设计缺陷诊断流程,诊断断股及异物缺陷。实验证明,该方法对电力线检测准确,能够发现电力线存在的可疑异物和断股缺陷,成功应用于直升机巡检系统中。  相似文献   

17.
Decomposition-based optimization strategies decouple a system design problem and introduce coupling variables as decision variables that manage communication among subproblems. The computational cost of such approaches is comparable to that of the equivalent, yet usually unsuccessful, attempts to solve the coupled system directly when the coupling variables consist of a small, finite number of scalars. When the coupling variables are infinite-dimensional quantities, such as functional data, implementing decomposition-based optimization strategies may become computationally challenging. Discretization is typically applied, transforming infinite-dimensional variables into finite-dimensional ones represented as vectors. A large number of discretized points is often necessary to ensure a sufficiently accurate representation of the functional data, and so the dimensionality of these vector-valued coupling variables (VVCVs) can become prohibitively large for decomposition-based design optimization. Therefore, it is desirable to approximate the VVCVs with a reduced dimension representation that improves optimization efficiency while preserving sufficient accuracy. We investigate two VVCV representation techniques, radial-basis function artificial neural networks and proper orthogonal decomposition, and implement each in an analytical target cascading problem formulation for electric vehicle powertrain system optimization. Specifically, both techniques are applied to VVCVs associated with motor boundary torque curves and power loss maps and are assessed in terms of dimensionality reduction, computational expense, and accuracy.  相似文献   

18.
基于XML的数据交换是一种典型的Web应用,通过分析基于服务的数据交换数据,说明在该Web应用中,存在的安全问题和需求,架构一个基于PKI/PMI的安全Web数据交换平台,实现应用层的授权和安全访问控制,并应用在实际中.  相似文献   

19.
动态数据交换是实现网络协同设计的关键技术,在协同设计中每一步的设计信息都进行实时交换必然导致在动态数据交换中包含不必要的数据。为了解决这个问题,该文提出基于ECA规则的动态数据交换技术。建立基于ECA规则的动态数据交换系统结构,并定义动态数据交换中的ECA规则和动态数据更新中事件间的基本关系。应用该技术实现了跨平台异构CAD系统之间动态数据的实时交互和一致性。  相似文献   

20.
A complete stress analysis of a metal-forming process is necessary in order to assess the onset of metal-forming defects such as the initiation of internal or surface cracks or the generation of residual stresses. This demands elasticplastic analysis. A program to evaluate complete stress distributions has been developed and applied to the extrusion process. Such solutions have not previously been obtained for general two- and three-dimensional problems encompassing the technologically important steady state processes, although these solutions are essential for the rational assessment of limits on process variables which will ensure a satisfactory metal-forming procedure. The stress fields obtained for the extrusion process exhibit features which are consistent with the known development of extrusion defects, such as the appearance of surface cracks.  相似文献   

设为首页 | 免责声明 | 关于勤云 | 加入收藏

Copyright©北京勤云科技发展有限公司  京ICP备09084417号