Program vs State Machines|OPC UA Standard|Forum|OPC Foundation

Avatar
Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
Lost password?
sp_Feed sp_PrintTopic sp_TopicIcon
Program vs State Machines
Avatar
Aydin Homay
Member
Members
Forum Posts: 22
Member Since:
04/22/2021
sp_UserOfflineSmall Offline
1
08/13/2021 - 00:41
sp_Permalink sp_Print sp_EditHistory

Hi,

Programs allow having PFSM which enables a program to handle a state machine and then the OPC UA 1.05 introduced State Machines independently which allows building a state machine and each state is capable of running certain algorithms implemented as methods. Now my question is when to use Programs and when to use State Machines? Why was necessary to have a state machine as an independent chapter in OPC UA.  

Avatar
Randy Armstrong
Admin
Forum Posts: 1457
Member Since:
05/30/2017
sp_UserOfflineSmall Offline
2
08/13/2021 - 02:27
sp_Permalink sp_Print

The StateMachines are not new.

They used to be in an Appendix in Part 5 (https://reference.opcfoundatio.....Part5/B.1/)

StateMachines are a generic construct that can be be used in many contexts. For example, Alarms use StateMachine Objects (https://reference.opcfoundatio.....rt9/5.8.2/) or MachineVision (https://reference.opcfoundatio.....ocs/8.2.2/)

Programs are built with StateMachine and represent a long running task.

You would only use Programs to when it fits with your use case:

https://reference.opcfoundatio.....t10/4.2.1/

Programs are complex Functions in a Server or underlying system that can be invoked and managed by a Client. Programs can represent any level of functionality within a system or process in which Client control or intervention is required and progress monitoring is desired. Figure 2 illustrates the model.

Avatar
Akileswaran Karthikeyan
Member
Members
Forum Posts: 3
Member Since:
07/15/2021
sp_UserOfflineSmall Offline
3
10/29/2021 - 03:31
sp_Permalink sp_Print

what do long-running tasks mean? and How should these long-running tasks be implemented inside the Programs? For example, if I have a timer in my state machine that is monitoring the value of an OPC UA variable and triggers a transition based on that, would this be considered a long-running task? (should I call it a program?)

Avatar
Randy Armstrong
Admin
Forum Posts: 1457
Member Since:
05/30/2017
sp_UserOfflineSmall Offline
4
10/29/2021 - 05:08
sp_Permalink sp_Print

A long running task is something that takes a long time to complete and it does not make sense for a client to block waiting for it to finish. An example is the start up sequence for a boiler in a coal generation plant which takes several hours.

Avatar
Aydin Homay
Member
Members
Forum Posts: 22
Member Since:
04/22/2021
sp_UserOfflineSmall Offline
5
10/29/2021 - 05:29
sp_Permalink sp_Print

@Randy: So here long means several hours right? So if a task takes a shorter time like 10 min this can be implemented inside state machines and no need for PFSM. Is this what you are saying? 

Avatar
Randy Armstrong
Admin
Forum Posts: 1457
Member Since:
05/30/2017
sp_UserOfflineSmall Offline
6
10/29/2021 - 07:42
sp_Permalink sp_Print

The definition of "long running" depends on the application and should be based on understanding of the process being modelled. There is no standard rule. Some applications could decide that 5mins counts as "long running".

Avatar
Aydin Homay
Member
Members
Forum Posts: 22
Member Since:
04/22/2021
sp_UserOfflineSmall Offline
7
11/02/2021 - 03:01
sp_Permalink sp_Print

So according to your replies:

  1. The definition of "long" depends on the application, in some applications this could be 1ms or 1s or 1h or several hours. 
  2. We use PFSM whenever we have a long-running task and we do not need to wait for it. 

From the above facts, I can conclude that we are using PFSM when we have a task (a method in the program) that could be invoked/executed asynchronously so we do not need to wait for the completion of this task. But the point is that what prevents us from not being able to have a long-running task in FSM? Only an agreement in specification level? 

 

Some more backgrounds:

What we are more interested to know is to learn how this differentiation between PFSM and FSM has been considered in the OPC UA stacks. From our experiments on different OPC UA stacks, we have noticed that similar to PFSM we can also have a method that is running asynchronously in OPC UA FSM so when we look at the difference between FSM and PFSM at the implementation level we see that in both options we could have defined long-running tasks. 

Avatar
Randy Armstrong
Admin
Forum Posts: 1457
Member Since:
05/30/2017
sp_UserOfflineSmall Offline
8
11/02/2021 - 05:40
sp_Permalink sp_Print

A Program is an object that can be used to model long running tasks supported by the Server.

A StateMachine is simply a state machine that has no implied application specific semantics. StateMachines get their semantics when they are added to Objects such as a Program.

While a StateMachine can use used for long running tasks you server will have to supply all the semantics needed to tell the client that this particular StateMachine is intended to represent a long running task. OTOH, if you used a Program the client would immediately know that it represents a long running task because that is what Programs represent.

Forum Timezone: America/Phoenix
Most Users Ever Online: 510
Currently Online: aamre khalil
Guest(s) 35
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Forum Stats:
Groups: 2
Forums: 10
Topics: 1354
Posts: 4590