Plant Model Generator from Digital Twin for Purpose of Formal Verification

Total Page:16

File Type:pdf, Size:1020Kb

Plant Model Generator from Digital Twin for Purpose of Formal Verification Plant Model Generator from Digital Twin for Purpose of Formal Verification Johannes Håkansson Computer Science and Engineering, master's level 2021 Luleå University of Technology Department of Computer Science, Electrical and Space Engineering ii Abstract English This master thesis will cover a way to automatically generate a formal model for plant verification from plant traces. The solution will be developed from trace data, stemming from a model of a digital twin of a physical plant. The final goal is to automatically generate a formal model of the plant that can be used for model checking for verifying the safety and functional properties of the actual plant. The solution for this specific setup will be generalized and a general approach for other systems will be discussed. Furthermore, state machine generation will be introduced. This includes generating state machine data from traces, and in the future is planned be used as an intermediate step between the trace data and model generation. The digital twin solution used in this project is a joint setup in Visual Components and nxtSTUDIO. The symbolic model checker NuSMV is utilized in order to verify the functional properties of the plant. Svenska I detta examensarbete utforskas ett s¨attatt generera formella modeller av en process via inspelningar av dennes beteende. L¨osningen¨arutvecklad fr˚andata ¨over processens beteende, som tas upp av en digital tvilling. Det slutgiltliga m˚alet¨aratt med hj¨alp av den digitala tvillingen automatiskt generera en modell som kan anv¨andasf¨oratt verifiera s¨akerhet och funktioner f¨orden riktiga processen. L¨osningenblir sedan gen- eraliserad f¨oratt i framtiden kunna bli applicerad p˚aandra processer. Ett s¨attatt generera tillst˚andsmaskinerkommer l¨aggasfram. Detta s¨attkommer generera data f¨or tillst˚andsmaskinernagenom den digitala tvillingens beteende och i framtiden planeras att anv¨andassom ett mellansteg f¨oratt generera de slutliga modellerna. Den digitala tvillingen som anv¨andsi det h¨arprojektet ¨arimplementerat av Aalto universitet, och i flera program. Den visuella delen, som ¨aven spelar in tvillingens be- teende, ¨arimplementerad i Visual Components. En kontroll f¨orden digitala tvillingen ¨argjord i nxtSTUDIO. Verktyget f¨oratt verifiera modellens s¨akerhet och funktioner ¨ar gjord i NuSMV. iii iv Contents Chapter 1 { Thesis Introduction 1 1.1 Background . .1 1.2 Problem Definition . .1 1.3 Methodology . .2 1.4 Related Work . .3 Chapter 2 { Theory 5 2.1 Industrial Automation . .5 2.1.1 Introduction . .5 2.1.2 Model Driven Engineering . .6 2.2 Programmable Logic Controller . .6 2.3 Simulation Techniques . .7 2.4 Digital Twin . .8 2.4.1 Drawbacks and Advantages of Digital Twins . .8 2.4.2 Traces from Digital Models . 10 2.5 IEC Standards . 10 2.5.1 IEC 61131-3 and 61499 . 10 2.5.2 History of IEC 61499 . 11 2.5.3 Software implementation . 11 2.6 Design and Verification for Industrial Control Systems . 12 2.6.1 Verification of Logic . 13 2.6.2 Model Checking With the Help of a State Machine . 15 2.6.3 Partial-Order Reduction . 16 2.6.4 Kripke Structure . 16 2.6.5 Abstraction . 18 Chapter 3 { Setup and Material 19 3.1 Complete Plant Setup . 19 3.1.1 Physical Plant . 19 3.1.2 Digital Twin . 19 3.2 Other Components . 20 3.2.1 Python . 20 3.2.2 NuSMV . 21 Chapter 4 { Results 23 4.1 Implementation . 23 4.1.1 Digital Twin Component Isolation . 23 v 4.1.2 Visual Components Requirement Example . 27 4.1.3 Models of a System . 28 4.1.4 Trace Manipulation Method . 28 4.1.5 Generalized Model from a Generated Trace . 28 4.1.6 Implementation . 29 4.1.7 NuSMV Simulation . 32 4.1.8 Behavior . 33 4.1.9 Connections Between State Machine and NuSMV Model . 33 4.1.10 Solution . 35 4.1.11 Pseudo Code . 37 4.2 General Solution . 41 4.2.1 Structure of the Generalized Solution . 41 4.2.2 New Ideas to Complement Existing Ones . 43 Chapter 5 { Analysis 45 5.1 Test Cases . 45 5.1.1 CTL Test Cases . 45 5.1.2 Model Generated from a Different Trace . 47 Chapter 6 { Discussion 49 6.1 Conclusion and Future Work . 49 References 53 Chapter 7 { Appendix 57 vi Chapter 1 Thesis Introduction 1.1 Background Industrial automation has been around for many decades. The field is vastly explored and today's systems are very intricate and complex. With the increased complexity of systems, it's only natural that the frequency or magnitude of issues increases as well. These issues can cause problems, so it is important to identify them as early as possible. Model checking offers a solution to this, by evaluating a model of a plant in regards to the functional properties of the plant. An interesting field to explore is if we can generate these plant models automatically. There are a lot of existing plants in industrial settings, and to replace these will be far to costly. Replacing entire plants is therefore not a suitable approach. Therefore, the approach needs to be done in such a way that updates to existing plants needs to be developed. For these existing plants and systems, it is required that they can be updated in a reasonable manner. Since every system that has been created has been done so in different ways, an issue is to apply a general solution that is relevant to the majority. Models for any given plant should be generated and result in a suitable solution. This thesis work builds upon previous work from [1]. The key differences are related to state machine generation. Their work is about state machine generation for a controller using traces from a real controller, whereas this master thesis takes a look at state machines and formal model generation of plant model using traces from a digital twin model of a plant. 1.2 Problem Definition Mass customization is a field more and more sought after in industrial automation. Ef- fective resource management as well as quick reconfiguration are byproducts of this ad- vancement. Control systems that are reconfigured needs to be verified and tested in order to make sure they function properly. The main target of a possible solution is existing 1 Figure 1.1: Workflow during the project. systems. Can we use the functionality of an existing plant to extract a model based of the current behavior of the plant? An approach to automatically generate plant models of control systems will be ex- plored. These models will be used to evaluate the performance. By verifying the func- tional properties of the plant, correctness and accuracy of the generated model is decided. There needs to be a way so that desired plant behavior can be entered into the model to verify that it has been generated correctly. There needs to be a plan in order to answer if there exists a way to extract these models from older behavior and in theory, save time and effort for a reconfigured system. A digital twin will be used as a base in order to create the models used for the verification process. The digital twin field will be thoroughly explored and the knowledge will be used in the confines of this thesis. By creating a solution with the help of a digital twin, can a good general solution be derived from this? In order to make a general solution that works for most systems, knowledge about the inner workings of a digital twin is paramount. It is crucial in order to enable the possibility to draw conclusions about common traits of any system. Is general understanding of the digital twin field, coupled with the specifics of an actual digital twin, enough to derive a general solution? 1.3 Methodology This master thesis project workflow was divided into different stages. They are visualized in figure 1.1. In the introduction stage, we have literature review, report structuring and initial writing, as well as architecture, method, framework and tool decision. In the literature review stage, relevant research was acquired and studied thoroughly. Research articles were mostly searched out by me, the student, and further supplemented by my supervisor Sandeep Patil. With this research taken to heart, report writing commenced with relevant data and a solid core was formed. For the architecture, method, framework and tool decision stage, the proper architecture, methods, frameworks and tools were decided that would supply me with the possibility to reach my goals. The implementation and analysis stages are closely related and are alternated between in an iterative process. The implementation stage starts of with an idea. The idea is made 2 a reality before being put through the analysis stage. Here, issues with the approach are surfaced and the implementation stage is revisited with this new information in mind. Improvements are made every iteration until a satisfactory result is reached. For the conclusion stage, the solution produced from implementation and analysis stage will be discussed in regards to the questions presented in section 1.2. How well did the solution live up to the goals set beforehand? How well does the solution answer the questions presented in 1.2? 1.4 Related Work The authors of [1] proved that they could identify a state machine controller from noisy PLC (Programmable Logic Controller, a computer specifically created for industrial ap- plications) traces. They found that their controller had the same behavior from the traces as the actual PLC controller. What they could not guarantee was if the generated controller was identical in every sense to the original.
Recommended publications
  • Lean Manufacturing in a High Containment Environment
    IPT 32 2009 11/3/10 15:48 Page 74 Manufacturing Lean Manufacturing in a High Containment Environment By Georg Bernhard A case study of how Pfizer’s Right First Time strategy helped overcome at Pfizer Global daunting capacity challenges at its new large-scale containment facility Manufacturing at Illertissen, Germany, while Six Sigma and Lean strategies enabled the site to achieve previously unknown levels of efficiency. In late 2006, Pfizer launched its smoking cessation film-coated tablets. All of the process stages (granulation, product varenicline, known as Chantix® in the US tableting and coating) are controlled and monitored from and Champix® across Europe. According to IMS a separate control room so that employees do not come benchmarks, Champix® was the fastest product launch in into contact with dust that might be generated during the the European pharmaceutical industry, with marketing tablet production run. Transport is handled by automated, in 16 European countries in a five-month period. As well and entirely robotic, laser-guided vehicles. Operators as creating rapid and unprecedented consumer demand, monitor and control all containment room activities from the product launch also brought capacity challenges for a separate control room. Pfizer Inc’s small-scale IllertissenCONtainment (ICON) facility in Illertissen, Germany. The facility’s innovative IT systems integration enabled an extraordinary 85 per cent level of automation (LoA), A strategic site in Pfizer’s global manufacturing network, outstripping even the ICON facility’s extremely high 76 per Illertissen is focused on oral solid dosage forms and is a cent LoA. Thus, in NEWCON, all process sequences centre of excellence in containment production.
    [Show full text]
  • Automationml 2.0 (CAEX 2.15)
    Application Recommendation Provisioning for MES and ERP – Support for IEC 62264 and B2MML Release Date: November 7, 2018 ID: AR-MES-ERP Version: 1.1.0 Compatibility: AutomationML 2.0 (CAEX 2.15) Provisioning for MES and ERP Author: Bernhard Wally [email protected] Business Informatics Group, CDL-MINT, TU Wien AR-MES-ERP 1.1.0 2 Provisioning for MES and ERP Table of Content Table of Content .............................................................................................................................................. 3 List of Figures .................................................................................................................................................. 6 List of Tables .................................................................................................................................................... 7 List of Code Listings ..................................................................................................................................... 11 Provided Libraries .................................................................................................................. 12 I.1 Role Class Libraries ............................................................................................................................ 12 I.2 Interface Class Libraries ..................................................................................................................... 12 Referenced Libraries .............................................................................................................
    [Show full text]
  • Implementation of Lean Six Sigma Methodology on a Wine Bottling Line
    MASTER THESIS The implementation of Lean Six Sigma methodology in the wine sector: an analysis of a wine bottling line in Trentino Master Thesis in Industrial Engineering by Sergio De Gracia Directed by Prof. Roberta Raffaelli Academic Year 2013-2014 Table of Contents Abstract ......................................................................................................................................... 9 Acknowledgements ..................................................................................................................... 10 Introduction ................................................................................................................................ 11 Lean Manufacturing .................................................................................................................... 14 1. Lean Manufacturing ................................................................................................................ 14 1.1. TPS in Lean Manufacturing.......................................................................................... 15 1.2. Types of waste and value added ................................................................................. 16 1.2.1. Value Stream Mapping (VSM) ................................................................................... 18 1.3. Continual Improvement process and KAIZEN ............................................................. 19 1.4. Lean Thinking .............................................................................................................
    [Show full text]
  • Manufacturing Execution Systems (MES)
    Manufacturing Execution Systems (MES) Industry specific Requirements and Solutions ZVEI - German Electrical and Electronic Manufactures‘ Association Automation Division Lyoner Strasse 9 60528 Frankfurt am Main Germany Phone: + 49 (0)69 6302-292 Fax: + 49 (0)69 6302-319 E-mail: [email protected] www.zvei.org ISBN: 978-3-939265-23-8 CONTENTS Introduction and objectives IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII5 1. Market requirements and reasons for using MES IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII6 2. MES and normative standards (VDI 5600 / IEC 62264) IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII8 3. Classification of the process model according to IEC 62264 IIIIIIIIIIIIIIIIIIIIIIIIII 12 3.1 Resource Management IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII13 3.2 Definition Management IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII14 3.3 Detailed Scheduling IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII14 3.4 Dispatching IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII15 3.5 Execution Management IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII15 3.6 Data Collection IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII16 IMPRINT 3.7 Tracking IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII16 3.8 Analysis IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII17 Manufacturing Execution Systems (MES) 4. Typical MES modules and related terms IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII18
    [Show full text]
  • JANNE HARJU PLANT INFORMATION MODELS for OPC UA: CASE COPPER REFINERY Master of Science Thesis
    JANNE HARJU PLANT INFORMATION MODELS FOR OPC UA: CASE COPPER REFINERY Master of Science Thesis Examiner: Hannu Koivisto Examiner and topic approved in the Council meeting of Depart of Auto- mation Science and Engineering on 5.11.2014 i i TIIVISTELMÄ TAMPEREEN TEKNILLINEN YLIOPISTO Automaatiotekniikan koulutusohjelma HARJU, JANNE: PLANT INFORMATION MODELS FOR OPC UA: CASE COPPER REFINERY Diplomityö, 59 sivua Tammikuu 2015 Pääaine: Automaatio- ja informaatioverkot Tarkastaja: Professori Hannu Koivisto Avainsanat: OPC, UA, ISA-95, CAEX, mallinnus, ADI Isojen laitosten informaation rakenne on usein hankala ihmisen hahmottaa silloin, kun kaikki tieto on yhdessä listassa. Jotta laitoksen informaatiosta saadaan parempi koko- naiskuva, tarvitsee se mallintaa jollakin tekniikalla. Kun laitoksen mallintaa hierarkki- sesti, pystyy sen rakenteen hahmottamaan helpommin. Lisäksi, kun malliin saadaan tuotua mittaussignaaleja ja muuta mittauksiin ja muihin arvoihin liittyvää dataa, saadaan se tehokkaaseen käyttöön. Nykyään paljon käytetty klassinen OPC tuo datan käytettäväksi ylemmille lai- toksen tasoille. OPC tuo mittaukset pelkkänä listana, eikä se tuo mittausten välille mi- tään metatietoa. Tässä työssä on tarkoitus tutkia, miten mallintaa esimerkki laitokset käyttäen klassisen OPC:n seuraajaa OPC UA:ta. Työn tavoitteena on tutkia eri OPC UA:n mallinnustyökaluja, menetelmiä ja itse mallinnusta. Työssä tutustutaan OPC UA:n lisäksi ISA-95:n ja sen OPC UA- malliin ja miten tätä mallia pystyy käyttämään oikean laitoksen mallinnuksessa hyödyksi. ISA-95 lisäksi tutustutaan toiseen malliin nimeltä CAEX. CAEX on alun perin suunniteltu suunnitteludatan tallentamiseen stan- dardoidulla tavalla. CAEX:sta on olemassa myös tutkimuksia OPC UA:n kanssa käytet- täväksi ja tässä työssä tutustutaan, onko mallinnettavien tehtaiden kanssa mahdollista käyttää CAEX:ia hyödyksi. Virallista OPC UA CAEX- mallia ei ole vielä tosin julkais- tu.
    [Show full text]
  • Total Quality Management Course Code: POM-324 Author: Dr
    Subject: Total Quality Management Course Code: POM-324 Author: Dr. Vijender Pal Saini Lesson No.: 1 Vetter: Dr. Sanjay Tiwari Concepts of Quality, Total Quality and Total Quality Management Structure 1.0 Objectives 1.1 Introduction 1.2 Concept of Quality 1.3 Dimensions of Quality 1.4 Application / Usage of Quality for General Public / Consumers 1.5 Application of Quality for Producers or Manufacturers 1.6 Factors affecting Quality 1.7 Quality Management 1.8 Total Quality Management 1.9 Characteristics / Nature of TQM 1.10 The TQM Practices Followed by Multinational Companies 1.11 Summary 1.12 Keywords 1.13 Self Assessment Questions 1.14 References / Suggested Readings 1 1.0 Objectives After going through this lesson, you will be able to: Understand the concept of Quality in day-to-day life and business. Differentiate between Quality and Quality Management Elaborate the concept of Total Quality Management 1.1 Introduction Quality is a buzz word in our lives. When the customer is in market, he or she is knowingly or unknowingly very cautious about the quality of product or service. Imagine the last buying of any product or service, e.g., mobile purchased last time. You must have enquired about various features like RAM, Operating System, Processor, Size, Body Colour, Cover, etc. If any of the features is not available, you might have suddenly changed the brand or have decided not to purchase it. Remember, how our mothers buy fruits, vegetables or grocery items. They are buying fresh and look-wise firm fruits, vegetable and groceries. Simultaneously, they are very conscious about the price of the fruits, vegetable and groceries.
    [Show full text]
  • Kpis As the Interface Between Scheduling and Control
    Preprint, 11th IFAC Symposium on Dynamics and Control of Process Systems, including Biosystems June 6-8, 2016. NTNU, Trondheim, Norway KPIs as the interface between scheduling and control Margret Bauer1, Matthieu Lucke2,3, Charlotta Johnsson3, Iiro Harjunkoski2, Jan C. Schlake2 1University of the Witwatersrand, Johannesburg 2050, South Africa (email: [email protected]) 2ABB Corporate Research, Wallstadter Str. 59, 68526 Ladenburg, Germany (email:[email protected]) 3Department of Automatic Control, Lund University, 22100 Lund, Sweden (email [email protected]) Abstract: The integration of scheduling and control has been discussed in the past. While constructing an integrated plant model that may still seem out of reach, scheduling and control systems are increasingly more intertwined. We argue that they are in fact already integrated and give the example of two key performance indicators (KPIs) that are defined in the recent international standard ISO 22400. The focus of this study is on KPIs that consider both planned times and actual times. An amino acid production plant is used in the study, and the production is described from both the scheduling and the control perspective. To illustrate the integration, a schedule is computed containing the planned production times. Resulting measurements from the control system are analyzed for their actual production times using a proposed procedure that detects the start and end time of batches. Using KPIs as the interface between scheduling and control can be used as a strategy for maximizing the plant performance. The study focuses on the process industry. Keywords: Integration between scheduling and control, key performance indicator, distributed control system, planning and scheduling, batch process.
    [Show full text]
  • Building a Foundation for Proactive Quality Management
    Building a foundation for proactive quality management Analysis and improvement of a manufacturing process using Lean Six Sigma Master’s thesis in Engineering Mathematics and Computational Science, and Quality and Operations Management HENRIK EDMAN JOAR HUSMARK DEPARTMENT OF INDUSTRIAL AND MATERIAL SCIENCE CHALMERS UNIVERSITY OF TECHNOLOGY Gothenburg, Sweden 2020 www.chalmers.se i Building a foundation for proactive quality management Analysis and improvements of a manufacturing processes using Lean Six Sigma © HENRIK EDMAN, 2020. © JOAR HUSMARK, 2020. Department of Industrial and Material Science Chalmers University of Technology SE-412-96 Gothenburg Sweden Telephone + 46 (0)31-772 1000 Gotheburg, Sweden 2020 ii Acknowledgements We would like to thank our supervisor Peter Hammersberg for his support and guidance throughout the project. Since the project utilized the Six Sigma methodology, his expertise and experience helped us greatly. We would also like to direct a special thanks to our supervisor and company contact at the case company for his continuous help and support. Although busy, he always made time to help us when needed. Furthermore, we would like to thank all who participated, in one way or another, making this project possible. Especially the employees from Company A, who willingly shared and discussed their experience with us. Finally, we want to thank our friends and family for their moral support throughout the entire project. This was especially important considering the abnormal circumstances caused by the Covid-19 pandemic. iii iv Building a foundation for proactive quality management Analysis and improvements of a manufacturing processes using Lean Six Sigma HENRIK EDMAN JOAR HUSMARK Department of Industrial and Material Science Chalmers University of Technology Abstract Imagine a manufacturing process where there will always be material available with flawless quality at the right time in the process sequence.
    [Show full text]
  • Control System
    Control system A control system is a device, or set of devices to manage, command, direct or regulate the behavior of other devices or system. There are two common classes of control systems, with many variations and combinations: logic or sequential controls, and feedback or linear controls. There is also fuzzy logic, which attempts to combine some of the design simplicity of logic with the utility of linear control. Some devices or systems are inherently not controllable. Overview The term "control system" may be applied to the essentially manual controls that allow an operator, for example, to close and open a hydraulic press, perhaps including logic so that it cannot be moved unless safety guards are in place. An automatic sequential control system may trigger a series of mechanical actuators in the correct sequence to perform a task. For example various electric and pneumatic transducers may fold and glue a cardboard box, fill it with product and then seal it in an automatic packaging machine. In the case of linear feedback systems, a control loop, including sensors, control algorithms and actuators, is arranged in such a fashion as to try to regulate a variable at a setpoint or reference value. An example of this may increase the fuel supply to a furnace when a measured temperature drops. PID controllers are common and effective in cases such as this. Control systems that include some sensing of the results they are trying to achieve are making use of feedback and so can, to some extent, adapt to varying circumstances. Open-loop control systems do not make use of feedback, and run only in pre-arranged ways.
    [Show full text]
  • Principles of Total Quality, Third Edition
    PRINCIPLES OF otal uality THIRD EDITION Vincent K. Omachonu, Ph.D. Joel E. Ross, Ph.D. CRC PRESS Boca Raton London New York Washington, D.C. This edition published in the Taylor & Francis e-Library, 2005. “To purchase your own copy of this or any of Taylor & Francis or Routledge’s collection of thousands of eBooks please go to www.eBookstore.tandf.co.uk.” Library of Congress Cataloging-in-Publication Data Omachonu, Vincent K. Principles of total quality / Vincent K. Omachonu, Joel E. Ross.--3rd ed. p. cm. Rev. ed. of: Principles of total quality / J.A. Swift, Joel E. Ross, Vincent K. Omachonu. Includes bibliographical references and index. ISBN 0-57444-326-7 (alk. paper) 1.Total quality management. 2. Quality control. 3. Quality control--standards. I. Ross, Joel E. II. Swift, J.A. Principles of total quality. III. Title. HD62.15.O43 2004 658.4′.013--dc22 2004041857 This book contains information obtained from authentic and highly regarded sources. Reprinted material is quoted with permission, and sources are indicated. A wide variety of references are listed. Reasonable efforts have been made to publish reliable data and information, but the author and the publisher cannot assume responsibility for the validity of all materials or for the consequences of their use. Neither this book nor any part may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, microfilming, and recording, or by any information storage or retrieval system, without prior permission in writing from the publisher. The consent of CRC Press LLC does not extend to copying for general distribution, for promotion, for creating new works, or for resale.
    [Show full text]
  • 2500 Series® Classic Programmable Automation Control System
    Classic 2500 Series® Classic Programmable Automation Control System PAC Performance, PLC Usability The 2500 Series® Classic Programmable Automation Control (PAC) system is a powerful, flexible, multi- application controls system with unmatched reliability and ease of use. Its modular design and robust process control capability including built-in communications ports and considerable I/O capacity deliver PAC performance, while its operational simplicity and ease of use provide PLC-like usability. For machine control or for small- to large-scale process ® OVERVIEW control, the CTI 2500 Series Classic PAC System offers: The 2500 Series® Classic Programmable Automation Control System is designed for use in a broad range of Full-featured performance supporting up to 8192 applications, including those that require both discrete and I/O points*, including both digital and analog I/O, analog control. 2500 Series® products can be found and hundreds of PID loops and alarms. worldwide in numerous industries, including food and beverage, oil and gas, air separation, pulp and paper, mining Advanced functionality and foundry, building products, printing equipment, chemicals, pharmaceuticals, semiconductor, and ® Multiple remote I/O network options wastewater/water treatment. CTI designed the 2500 Series with a focus on operational simplicity, ease of use, and ® compatibility across successive product generations to Easy connection to other 2500 Series products deliver unsurpassed reliability and the performance you as well as to many other manufacturers’ need at the lowest total cost. products Continuous Evolutionary Improvement *Additional I/O expansion possible using ECC1 and ACP1 coprocessors The 2500 Series® has its roots in the “ahead-of-its-time” Texas Instruments/Simatic 505® Series system known for its robust performance, intuitive design, and elegantly simple PID and special function programming.
    [Show full text]
  • A Systematic Framework for Data Management and Integration in a Continuous Pharmaceutical Manufacturing Processing Line
    processes Article A Systematic Framework for Data Management and Integration in a Continuous Pharmaceutical Manufacturing Processing Line Huiyi Cao 1, Srinivas Mushnoori 2, Barry Higgins 3, Chandrasekhar Kollipara 4, Adam Fermier 4, Douglas Hausner 1, Shantenu Jha 2, Ravendra Singh 1, Marianthi Ierapetritou 1 and Rohit Ramachandran 1,* 1 Department of Chemical and Biochemical Engineering, Engineering Research Center for Structured Organic Particulate Systems (C-SOPS), Rutgers, The State University of New Jersey, Piscataway, NJ 08854, USA; [email protected] (H.C.); [email protected] (D.H.); [email protected] (R.S.); [email protected] (M.I.) 2 Department of Electrical & Computer Engineering, Rutgers, The State University of New Jersey, Piscataway, NJ 08854, USA; [email protected] (S.M.); [email protected] (S.J.) 3 Johnson & Johnson, Co., Cork, Ireland; [email protected] 4 Janssen Research & Development, Spring House, PA 19002, USA; [email protected] (C.K.); [email protected] (A.F.) * Correspondence: [email protected]; Tel.: +1-848-445-6278 Received: 28 March 2018; Accepted: 4 May 2018; Published: 10 May 2018 Abstract: As the pharmaceutical industry seeks more efficient methods for the production of higher value therapeutics, the associated data analysis, data visualization, and predictive modeling require dependable data origination, management, transfer, and integration. As a result, the management and integration of data in a consistent, organized, and reliable manner is a big challenge for the pharmaceutical industry. In this work, an ontological information infrastructure is developed to integrate data within manufacturing plants and analytical laboratories. The ANSI/ISA-88.01 batch control standard has been adapted in this study to deliver a well-defined data structure that will improve the data communication inside the system architecture for continuous processing.
    [Show full text]