OPC UA - Connect MATLAB as Client to an OPC UA Server

조회 수: 25 (최근 30일)
Suria Reddy
Suria Reddy 2019년 9월 26일
편집: Shubham 2023년 9월 25일
Hi,
I want to connect MATLAB as Client to an OPC UA Server . The OPC UA Server is hosted by the software FillControl by PRIAMUS.
I can connect the Server with the UaExpert Client from Unified Automation and read my measurement data from the nodes.
So far it works.
But now I want to use MATLAB as Client and read the measured data from FillControll Software directly via OPC UA into MATLAB.
How can i configure the server acces data in MATLAB?
  • Endpoint URL(s): opc.tcp://192.168.xx.xxx:xxxx/PRIAMUS
  • User: ******
  • Password: ********
Is it possible to make the connection in MATLAB or do I need an Local Discovery Service (LDS)?
  댓글 수: 2
Suria Reddy
Suria Reddy 2019년 9월 26일
If I try to connect to the first server found on the localhost, I get the error message below.
sInfo = opcuaserverinfo('localhost');
uaClient = opcua(sInfo(1));
Warning: Some endpoints could not be retrieved:
PRIAMUS FillControl OpcUa Server: A low level communication error occurred. Ensure that server host is reachable.
> In opc.ua.getServerInfo (line 66)
In opcuaserverinfo (line 27)
Reyhane Mokhtarname
Reyhane Mokhtarname 2020년 9월 24일
Dear Suria
I have the same problem, did you find any solution for that?

댓글을 달려면 로그인하십시오.

답변 (2개)

Timo Schmid
Timo Schmid 2019년 10월 6일
I do have the exact same problem.
Please let me know as soon as you found a solution.

Shubham
Shubham 2023년 8월 29일
편집: Shubham 2023년 9월 25일
Hi,
In MATLAB, you can establish a connection to an OPC UA server using the ICOMM Toolbox. Here's an example of how you can do it:
% Create an OPC UA client object
obj = opcua(serverUrl);
% Connect to the OPC UA server with optional username and password
connect(obj, username, password);
In this code snippet, URL of your OPC UA server. The "opcua" function creates an OPC UA client object, and the "connect" function establishes a connection to the server. You can provide an optional "username" and "password" if your server requires authentication.
For more detailed information on using the OPC Toolbox in MATLAB, you can refer to the official documentation:

카테고리

Help CenterFile Exchange에서 Unified Architecture에 대해 자세히 알아보기

태그

제품


릴리스

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by