首页 > 其他分享 >OPC UA

OPC UA

时间:2023-05-24 22:57:05浏览次数:33  
标签:Node defined Object OPC UA Event

Terms and definitions(术语和定义)

Event: generic term used to describe an occurrence of some significance within a system or system component.
Condition : generic term that is an extension to an Event.
Alarm : type of Event associated with a state condition that typically requires acknowledgement.
Notification: generic term for data that announces the detection of an Event or of a changed Attribute value;Notifications are sent in NotificationMessages.
EventNotifier: special Attribute of a Node that signifies that a Client may subscribe to that particular Node to receive Notifications of Event occurrences.
MonitoredItem: Client-defined entity in the Server used to monitor Attributes or EventNotifiers for new values or Event occurrences and that generates Notifications for them.

Object: Node that represents a physical or abstract element of a system.Objects are modelled using the OPC UA Object Model. Systems, subsystems and devices are examples of Objects. An Object may be defined as an instance of an ObjectType.
Object Instance: synonym for Object. Not all Objects are defined by ObjectTypes.
ObjectType: Node that represents the type definition for an Object.
Complex Data: data that is composed of elements of more than one primitive data type, such as a structure.

Attribute :primitive characteristic of a Node. All Attributes are defined by OPC UA, and may not be defined by Clients or Servers. Attributes are the only elements in the AddressSpace permitted to have data values.是AddressSpace中唯一允许具有数据值的元素。
Variable: Node that contains a value.

Method: callable software function that is a component of an Object.
Service: Client-callable operation in an OPC UA Server. Services are defined in Part 4. A Service is similar to a method call in a programming language or an operation in a Web services WSDL contract.

标签:Node,defined,Object,OPC,UA,Event
From: https://www.cnblogs.com/Netsharp/p/17429785.html

相关文章

  • [USACO1.2]回文平方数 Palindromic Squares
    #[USACO1.2]回文平方数PalindromicSquares##题目描述回文数是指从左向右念和从右向左念都一样的数。如12321就是一个典型的回文数。给定一个用十进制表示的正整数B,输出所有[1,300]中,它的平方用B进制表示时是回文数的数。##输入格式共一行,一个单独的正整数B。##......
  • 各个版本Microsoft Visual C++官方下载链接
     MicrosoftVisualC++2005MicrosoftVisualC++2005RedistributablePackage(32位)http://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.exeMicrosoftVisualC++2005RedistributablePackage(64位)http://download.......
  • Visual Studio Code (vscode)自定义用户代码段快速打出for循环等
    比如fori这样的快捷键就打不出代码块了自定义用户代码块的方法:工具栏>文件>首选项>用户代码片段  然后在弹出的搜索框中填写javascript.json有提示不用打全就行(会有javascript选中)  打开配置文件javascript.json这里面显示的就是编写代码块的例子"P......
  • Lua(四)
    Luatable(表)table是Lua的一种数据结构用来帮助我们创建不同的数据类型,如:数组、字典等。Luatable使用关联型数组,你可以用任意类型的值来作数组的索引,但这个值不能是nil。Luatable是不固定大小的,你可以根据自己需要进行扩容。Lua也是通过table来解决模块(module)、包(pac......
  • AGIEval: A Human-Centric Benchmark for Evaluating Foundation Models
    AbstractEvaluatingthegeneralabilitiesoffoundationmodelstotacklehuman-leveltasksisavitalaspectoftheirdevelopmentandapplicationinthepursuitofArtificialGeneralIntelligence(AGI).Traditionalbenchmarks,whichrelyonartificialdat......
  • Lua脚本(三)
    Lua字符串字符串或串(String)是由数字、字母、下划线组成的一串字符。Lua语言中字符串可以使用以下三种方式来表示:单引号间的一串字符。双引号间的一串字符。[[与]]间的一串字符。以上三种方式的字符串实例如下:string1="Lua"print("\"字符串1是\"",string1)s......
  • CLIP-S^4:Language-Guided Self-Supervised Semantic Segmentation论文阅读笔记
    摘要作者提出了CLIP-S4,借助自监督像素表示学习和V-L模型实现各种语义分割任务,不需要使用任何像素级别标注以及未知类的信息。作者首先通过对图像的不同增强视角进行像素-分割对比学习来学习像素嵌入。之后,为进一步改善像素嵌入并实现基于自然语言的语义分割,作者设计了由V-L模型指......
  • virtualbox下,/boot/efi 分区启动失败
    启动遇到的问题:/boot/efi分区就是在/dev/disk/uuid为BA83-583A下;使用recoverymode下,也失败; ......
  • quartz定时任务时间设置
    每天凌晨2点002**?和每天隔一小时0**/1**?例1:每隔5秒执行一次:*/5****?例2:每隔5分执行一次:0*/5***?在26分、29分、33分执行一次:026,29,33***?例3:每天半夜12点30分执行一次:0300**?(注意日期域为0不是24)每天凌晨1点执行一次:001**?......
  • Visual Studio快速调试当前页面
    一般项目多个HTML页面,但是调试时只想快速打开当前活动窗口页面默认使用快捷键 ctrl+shift+w但是这样三键并不方便,自定义更改为两键则非常的银杏化。工具--选项--搜索键盘,然后在“显示命令包含”中搜索‘在浏览器查看",选择文件.在浏览器中查看,然后自定义同时按下alt+x快捷键......