Microsoft Word - ETASR_V12_N6_pp9697-9702 Engineering, Technology & Applied Science Research Vol. 12, No. 6, 2022, 9697-9702 9697 www.etasr.com Benaouda & Benaouda: An Original Approach for Translating Grafcet into C/Unix Code for Validation … An Original Approach for Translating Grafcet into C/Unix Code for Validation Purposes Nacera Benaouda Department of Computer Science Ferhat Abbas University Setif I Setif, Algeria nacbenaouda@univ-setif.dz Abdelhafid Benaouda Department of Computer Science Ferhat Abbas University Setif I Setif, Algeria ahbenaouda@univ-setif.dz Received: 19 September 2022 | Revised: 3 October 2022 | Accepted: 6 October 2022 Abstract-This paper proposes an approach to simulate the function of the control part of a Grafcet model, translating it into C code in a Unix environment. First, the Grafcet/C generation schemes are established. The Grafcet model, described in graphic or text form, is transformed in an internal form and then to C code by a generation algorithm based on the previously found diagrams. The result is a program that simulates the operation of the automation in question and makes it possible to validate the functional specifications of sequential automation. This validation can be used for educational purposes, such as the learning of the Grafcet formalism, or corrective or evolutionary maintenance. Once the configuration, testing, and validation of the program are complete, it is possible to implement the object code on the microcontroller of the control system. Keywords-C/Unix; Grafcet; process; sequential automation I. INTRODUCTION Equipment manufacturers and automation engineers responsible for automated industrial installations should master the programs that drive their installations to perform preventive [1, 2], corrective, adaptive, and evolutionary maintenance tasks [3]. These programs are often outsourced, use a variety of libraries, and depend not only on the problem to be solved but also on the past of their provider. Grafcet [4, 5] is a graphic formalism for describing automatisms, accepted by mechanical automation engineers who consider it to represent the right level of specification without much complexity. In an automated system, the control part is the image of the operative part that represents the automated machine. Simulation and validation of the operation of an automated system are necessary before its implementation in the actual installation. Simulating the operation of Grafcet is equivalent to translating it into appropriate languages, which generate programs with the same semantics. These programs have shown their usefulness for maintenance or educational purposes. This study chose C/Unix as the target language and system for the Grafcet translation. This choice was motivated by two reasons; the C language extended by the Unix libraries has all the necessary tools for the translation of Grafcet, and the required hardware and software configuration for the application is very simple, just a personal computer with a Linux distribution. II. RELATED WORK Several studies achieved to formalize Grafcet. In [6], Grafcet translation schemes were designed in the Occam2 language, which is executable on transputers, exploiting the possibilities of expressions of parallel tasks offered in Occam2 to express the respective representation in Grafcet. The resulting program could run on a parallel machine and simulate the actual operation of an automated system. This work could obtain the equivalent Occam2 program from a Grafcet in graphical or textual form. Being a parallel language, Occam2 possesses the necessary tools to translate Grafcet, but the resulting program can only be exploited if a parallel machine existed. Since parallel machines are only available in certain research laboratories or specific industrial settings, such a program may have limited use. In [7], a semi-coarse ontology was defined and tested by integrating it into an existing educational tool to teach Grafcet for use in programmable logic controllers. This ontology was OWL (Web Ontology Language) DL based, a specific decidable fragment of first- order logic applied to OWL markup language. The objective of this method was to complement previous studies and promote this type of technique in the formalization of Grafcet. The advantages of ontologies are numerous, as they make collaboration and sharing of knowledge easier, provide better reliability, and assure to handle automatically any input change without having to recompile the processing code. This approach was validated according to two criteria, accuracy and completeness. A new vision was adopted in [8], by proposing a systematic implementation of the control software in IEC 61499. This constituted a key advantage over previous Grafcet implementations because it allowed engineers to implement models distributed over several devices and also kept the initial centralized design. IEC 61499 has all the translation tools for most of the Grafcet elements. This work made it possible to systematically translate Grafcet and introduced several translation models. The disadvantages of this method lied in the fact that it was not possible to model the structuring mechanisms such as fences or forcing steps, and the macros- steps that could be implemented were limited to simple sequences. Corresponding author: Nacera Benaouda Engineering, Technology & Applied Science Research Vol. 12, No. 6, 2022, 9697-9702 9698 www.etasr.com Benaouda & Benaouda: An Original Approach for Translating Grafcet into C/Unix Code for Validation … III. MOTIVATION FOR CHOOSING C LANGUAGE Grafcet is a logical automatism description formalism that allows expressing competing processes. A language to translate Grafcet has to preferably be parallel [6] and/or real-time. The duration of the task's installation or its switching time is decisive in choosing such a language. C and Unix [9] were chosen due to their portability, universality, and control by most computer scientists. Its disadvantage lies in the fact that Unix is not quite real-time, because its slow temporal primitives were defined according to the only problems of the timeshare. C language is a High-Level Machine-Oriented Language (HLMOL) that allows defining bit-close fields, and expanded by Unix libraries can provide the illusion of simultaneous execution of tasks on uniprocessor machines, as shown by functions such as fork, wait, sleep, kill [9]. Pipes are the main means of communication between Unix processes [9]. Several synchronization means are available in Unix. This study used the wait function, which is the most basic mean of synchronization and can be used to synchronize a parent process on the termination of its children. Time management was carried out using the sleep() function, as the call to the sleep(n) function suspends the calling process for n seconds. Since the seconds are not useful for many real-time scenarios, the macro tempo() was used to allow timers in microseconds: #define tempo(n){ clock_t reveil = clock()+n; while(clock()