<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://emersonexchange365.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>PLC, PACSystems &amp;amp; Industrial Computing Forum - Recent Threads</title><link>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum</link><description>Discussions and questions around PLCs, PACs and Industrial Computers for machine automation and other applications.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 29 Aug 2024 17:33:09 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum" /><item><title>Questions about 90-30 in process of upgrading</title><link>https://emersonexchange365.com/thread/11107?ContentTypeID=0</link><pubDate>Thu, 29 Aug 2024 17:33:09 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:53f1e813-64cb-4f9d-a3f5-b1031f1429d1</guid><dc:creator>Matthew Love</dc:creator><slash:comments>1</slash:comments><comments>https://emersonexchange365.com/thread/11107?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/11107/questions-about-90-30-in-process-of-upgrading/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have the task of updating an old PLC in a plant. I have a copy of the old program, but it is absent of any names and comments. Given that the cabinet is nearly 35 years old, documentation is also scarce.&lt;/p&gt;
&lt;p&gt;It is a somewhat simple LD program with 150 rungs. I do know what the hard-wire I/O are (thanks for wire labels!), so I have filled in those names for %I and %Q variables respectively, then using those knowns to back-fill unknown memory variables.&lt;/p&gt;
&lt;p&gt;The existing machine is a 90-30, model 331.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In trying to decipher the old program, a few things I cannot quite wrap my head around.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The biggest head-scratcher for me (likely because I lack old school experience) is the use of BIT_SEQ. I&amp;#39;ve read the description several times, but the concept (or perhaps the implementation here) doesn&amp;#39;t click for me.
&lt;ul&gt;
&lt;li&gt;&lt;img style="max-height:480px;max-width:640px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/1280x960/__key/communityserver-discussions-components-files/489/pastedimage1724951791697v3.png" /&gt;&lt;/li&gt;
&lt;li&gt;I understand the enable, reset, and direction, but the N and ST parameters escape me a bit, or at least the ones used here. N is a constant, and a large number at 393. The description says that N is &amp;quot;the value that the step number is set to when R is energized&amp;quot; and that N must be between 1 and Length, while Length&amp;#39;s legal values are 1-256. Given this, 393 is input very specifically, but it would just default to 256 (max Length) or the Length value of 5 here, unless I&amp;#39;m missing something.
&lt;ul&gt;
&lt;li&gt;I believe the 393 is specifically linked to the start of a cluster of 5 (Length&amp;#39;s parameter) BOOLs in %M, from 393-397, which are then linked to %Q outputs.&lt;/li&gt;
&lt;li&gt;Following this, it seems that they used the BIT_SEQ to turn on the Qs via a crank-style bit manipulation vs traditional LD rung logic.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Second, the ST argument. When compiling the program, PAC ME gives warnings on all BIT_SEQ (4 of them) in the program, citing a type mismatch on the ST arguments, as they are all provided as BOOL, but expecting BYTE, WORD, or DWORD.
&lt;ul&gt;
&lt;li&gt;I&amp;#39;m assuming that BYTE, WORD, or DWORDs are just suggestions, and really all that matters is the numerical address provided, in this case marked by SV1_V variable, which is address %M00393 - matching the N argument.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Are my assumptions correct here? It looks like they gave the BIT_SEQ the starting address of 393, which is also the address of the ST argument. The BIT_SEQ cranks through the bits to turn on 5 BOOLs. I can understand the effective/technical result here, but I&amp;#39;m not sure why you would choose this method to activate coils rather than traditional rung logic? Perhaps to minimize number of rungs/instructions for sake of memory limitations?&lt;/p&gt;
&lt;p&gt;Another question:&lt;br /&gt;Several times throughout the program, a variable will be OR&amp;#39;d with NOT-itself. Like &lt;em&gt;(if VAR1 == TRUE OR VAR1 != TRUE) THEN ....&lt;/em&gt;&lt;br /&gt;Again, given that this, at first glance, seems obtuse, I have to assume this might be some facet/restriction of programming in times long ago that I&amp;#39;m not familiar with. My best guess is adding this chunk in as a sort of marker for human visualization purposes, in lieu of a comment.&lt;br /&gt;&lt;img style="max-height:480px;max-width:640px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/1280x960/__key/communityserver-discussions-components-files/489/pastedimage1724951622111v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;Another peculiar thing I&amp;#39;ve found is the use of %Qs in addresses far above where the hard-wired inputs stop.&lt;br /&gt;For example, this application&amp;#39;s I/O cards stop at %Q00036, but there exists %Q00203, 204, and 210 in the program. I assume these are used in place of %M, but why? I do not believe %M memory was exhausted... I understand these may simply be idiosyncrasies of a rouge programmer, but curious of there might be some reason (from before I was born!) giving legitimate cause for this.&lt;/p&gt;
&lt;p&gt;One more question: this program has pervasive use of ONDTR TENTHS instruction. I understand the purpose of a delay-on-make function, of course, but the kicker is that ONDTR (as I read it) has a&amp;nbsp;&lt;em&gt;cumulative&lt;/em&gt; timer, so that it does&amp;nbsp;&lt;strong&gt;not&lt;/strong&gt; reset to the specified parameter when power flow is broken - it holds its value.&lt;br /&gt;I can understand the utility of this in certain applications, but I&amp;#39;m surprised at the exclusive use of this instruction for&amp;nbsp;&lt;strong&gt;all&lt;/strong&gt; timer functions in the program. A few times, the input trigger is inverted, causing it to auto-reset upon power break, or the output will be wrapped around to the Reset.&lt;br /&gt;Given its exclusive use and occasional go-arounds, I can only assume that a plain delay-on-make might not have existed in this era?&lt;/p&gt;
&lt;p&gt;Lastly, can I connect to this PLC live via PAC ME? There is some doubt with my colleagues that PAC ME cannot be connected to a 90-30 of fear that it will &amp;#39;update&amp;#39; something in the PLC, causing it to no longer work with the old software (MS-DOS style stuff). Is there any validity this? To clarify, we (technicians) have PAC ME, the customer only has old software (LogicMaster? I believe?) so do not want to leave site causing unknown problems for customer.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks for the help and tolerance of my many questions.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>QuickPanel Plus History Alarms to CSV</title><link>https://emersonexchange365.com/thread/11089?ContentTypeID=0</link><pubDate>Tue, 13 Aug 2024 14:03:08 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:1a914074-913e-4c6b-a32c-89617e686a73</guid><dc:creator>Gabriele Corrieri</dc:creator><slash:comments>10</slash:comments><comments>https://emersonexchange365.com/thread/11089?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/11089/quickpanel-plus-history-alarms-to-csv/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;I&amp;#39;m very newbie to Emerson products, I need a way (script?) to write on USB memory a CSV of all historical alarms:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve not found any resource, on manuals, on web (also here) that explain how to do this (I think) relative simple task.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Using Kepware to connect to Rx3i and QuickPanel+ HMI</title><link>https://emersonexchange365.com/thread/11073?ContentTypeID=0</link><pubDate>Wed, 24 Jul 2024 13:17:57 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:0e1b04bf-d497-4ad9-9535-35a74bac9e16</guid><dc:creator>sanchit.sahay</dc:creator><slash:comments>1</slash:comments><comments>https://emersonexchange365.com/thread/11073?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/11073/using-kepware-to-connect-to-rx3i-and-quickpanel-hmi/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I am looking to connect to an Rx3i PLC, and a QuickPanel+ HMI (separate applications) using Kepware as proof of concept.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Which&amp;nbsp;communication technology/driver would be optimal for communication and reading data from both these systems?&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have had success with the GESRTP driver for Rx3i, and I see SNMP can be used for QuickPanel+ HMIs but the Emerson/GE documentation on SNMP configurations is quite complicated and does not address any potential security risks or how to configure the panel&amp;nbsp;with cyber safety in mind.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Is there an optimal way to connect to both of these devices?&amp;nbsp; Any documentation/example videos (not specific to Kepware but any software would work)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>A question about the applicability of PAC3I and PAC8000 products to high-altitude areas</title><link>https://emersonexchange365.com/thread/11038?ContentTypeID=0</link><pubDate>Tue, 04 Jun 2024 08:32:19 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:64e45063-cec7-44e3-8153-26c6086841b1</guid><dc:creator>Jack.Zhang</dc:creator><slash:comments>3</slash:comments><comments>https://emersonexchange365.com/thread/11038?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/11038/a-question-about-the-applicability-of-pac3i-and-pac8000-products-to-high-altitude-areas/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I only saw a description about the product&amp;#39;s operating temperature in the manuals of Pac3i and PAC8000, but what I want to ask is whether high altitude areas have any impact on our products. Where can I find this relevant information?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Does PAC ME support logic debugging, breakpoints, step execution, etc?</title><link>https://emersonexchange365.com/thread/11021?ContentTypeID=0</link><pubDate>Thu, 09 May 2024 13:48:26 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:b034d816-5f01-4b0d-8fb0-f8ba095306fb</guid><dc:creator>Matthew Love</dc:creator><slash:comments>3</slash:comments><comments>https://emersonexchange365.com/thread/11021?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/11021/does-pac-me-support-logic-debugging-breakpoints-step-execution-etc/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I&amp;#39;m working on a product with PAC ME v10.2 and PACSystems RX3i devices.&lt;/p&gt;
&lt;p&gt;I am trying to test and debug the logic. I am used to other software tools that allow a user to pause execution of the logic, set breakpoints, and proceed with execution on a literal step-by-step timeline.&lt;/p&gt;
&lt;p&gt;Does any of this exist within PAC ME/RX3i? I do not see anything obvious in the tool ribbons.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Any way to force Analog Inputs for RX3i?</title><link>https://emersonexchange365.com/thread/10984?ContentTypeID=0</link><pubDate>Tue, 19 Mar 2024 15:11:27 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:01bf3316-d9d8-49c8-8ca8-63f6187906df</guid><dc:creator>Matthew Love</dc:creator><slash:comments>5</slash:comments><comments>https://emersonexchange365.com/thread/10984?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10984/any-way-to-force-analog-inputs-for-rx3i/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I would like to simulate an analog input signal for simulation purposes.&lt;/p&gt;
&lt;p&gt;I see I can easily do this for DIs, DOs, and AOs, but cannot see how to do it for AIs.&lt;/p&gt;
&lt;p&gt;Is this possible?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>A historical issue with a product</title><link>https://emersonexchange365.com/thread/10972?ContentTypeID=0</link><pubDate>Tue, 05 Mar 2024 01:42:55 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:74b11bc8-5bb5-4b8c-b60a-e1262f034c49</guid><dc:creator>Jack.Zhang</dc:creator><slash:comments>3</slash:comments><comments>https://emersonexchange365.com/thread/10972?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10972/a-historical-issue-with-a-product/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;span&gt;Today, a client asked me when 9030, 9070, PAC3i, and PAC7i were launched respectively? I really don&amp;#39;t know how to answer this. Does anyone know the launch time of these four product series? Thank you!&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Regarding the issue of a screw hole at the bottom of IC695CPE310</title><link>https://emersonexchange365.com/thread/10909?ContentTypeID=0</link><pubDate>Thu, 30 Nov 2023 06:44:37 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:f7ee6772-75b4-4aa3-b220-da8d2aa5b9e2</guid><dc:creator>Jack.Zhang</dc:creator><slash:comments>1</slash:comments><comments>https://emersonexchange365.com/thread/10909?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10909/regarding-the-issue-of-a-screw-hole-at-the-bottom-of-ic695cpe310/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;There is a screw hole at the bottom of the B-version IC695CPE310 without any identification. I want to know if this place needs to be grounded? There is no description in the manual, could anyone help me? Thank you.&lt;/p&gt;
&lt;p&gt;B型IC695CPE310底部有一个螺丝孔，没有任何标识。我想知道这个地方是否需要接地？手册中没有描述，谁能帮我？谢谢。&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://emersonexchange365.com/resized-image/__size/1280x960/__key/communityserver-discussions-components-files/489/1701326434686.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Solar Power Company Enhances Performance and Image with Emerson Control Technology</title><link>https://emersonexchange365.com/thread/10850?ContentTypeID=0</link><pubDate>Fri, 29 Sep 2023 22:28:37 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:05cf5af5-4fa0-40f6-ac78-6fac408e4e26</guid><dc:creator>Manish Sharma</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10850?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10850/solar-power-company-enhances-performance-and-image-with-emerson-control-technology/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-components-multipleuploadfilemanager/9f96955c_2D00_a3f0_2D00_4f4b_2D00_ab07_2D00_f4f1200cc17a-49069-complete/Nor_2D00_Cal-Mustang-sm.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:220px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/440x960/__key/communityserver-discussions-components-files/489/Nor_2D00_Cal-Pavant2-copy.png" /&gt;Sometimes having outdated technology not only holds back productivity and efficiency, but it can also make a company less attractive as an investment or purchase. That was the case with this western U.S. solar power plant that was looking to transfer ownership to a new company, but its outmoded legacy control systems made the power plant less attractive to a potential owner, as well as increased the complexity of transferring operations and maintenance functions to them when and if a sale occurred.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-pacsystems-rx3i-used-for-solar-power-plant-retrofit-en-9249158.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;In this interesting case study, read how Emerson control technology significantly increased the functionality of the system and made the upgrade fast and highly affordable.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Super-fast Installation of Production Supervision System in 115 Worldwide Plants Needs a Flexible, Modular, Scalable Software Platform – Case Study</title><link>https://emersonexchange365.com/thread/10848?ContentTypeID=0</link><pubDate>Thu, 28 Sep 2023 23:50:20 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:13c204ba-aaeb-43a6-96de-5d7056cbdd0a</guid><dc:creator>Andrea di Talia</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10848?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10848/super-fast-installation-of-production-supervision-system-in-115-worldwide-plants-needs-a-flexible-modular-scalable-software-platform-case-study/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/Greif3.jpg" /&gt;A global leader in industrial packaging launched a worldwide search for a software provider that could implement a unified and coherent production supervision and management system in 115 production plants globally. The manufacturer required a system that would allow a targeted investment with sustainable costs and, above all, velocity and installation standard. Another key goal was to obtain easy access to global or local data analysis by means of a cloud platform. After a false start with a North American software company, the manufacturer not only needed a fully integrated system that could meet its performance requirements, it also needed a partner that could implement and install the system fast. The company selected Emerson.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How this manufacturer was able to achieve a record-breaking installation time of 4-5 days for each of its 115 locations makes a very interesting case study. &lt;/strong&gt;&lt;a href="https://www.emerson.com/documents/automation/optimizing-productivity-for-global-company-movicon-enus-en-9285644.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;Read about it here.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Solar Energy Plant Uses PACSystems™︎ Control Solutions to Meet Fast-Changing Needs</title><link>https://emersonexchange365.com/thread/10845?ContentTypeID=0</link><pubDate>Wed, 27 Sep 2023 23:01:44 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:99a2603c-d4bb-4fcf-a505-fe8624399c7a</guid><dc:creator>Manish Sharma</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10845?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10845/solar-energy-plant-uses-pacsystems-control-solutions-to-meet-fast-changing-needs/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/Nor_2D00_Cal-Mustang-sm.jpg" /&gt;The need to meet upcoming changes in regulations impacts a lot of industries, but none more than solar energy plants that have to comply with the new CAISO (California Independent System Operator) and NERC regulations. One such power company constructed a 100 MWac solar project, which employed a 75 MW / 300 MWh battery energy storage system (BESS) retrofit to the site. The control systems for the existing installation were not able to meet the demands of the new regulations, plus could not sustain the company&amp;rsquo;s anticipated growth and expansion. They turned to their energy solutions provider, Nor-Cal Controls, which in turn decided to use the Emerson PACSystems RX3i control solution for its power, flexibility and scalability.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-pacsystems-used-for-solar-power-site-transformation-en-9469838.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;Learn more about this interesting case study.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Offshore Wellhead Company Reduces Flare Gas and Increases Sustainability with Carbon Offset Credits Using PACSystems Technologies</title><link>https://emersonexchange365.com/thread/10842?ContentTypeID=0</link><pubDate>Tue, 26 Sep 2023 00:41:18 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:a74be63a-0c18-47c5-9470-83eb5916b006</guid><dc:creator>Manish Sharma</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10842?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10842/offshore-wellhead-company-reduces-flare-gas-and-increases-sustainability-with-carbon-offset-credits-using-pacsystems-technologies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/Egypt-Wellhead-_2D00_-2-copy.jpg" /&gt;As the drive for sustainability increases along with pressures to maintain or increase profitability, the need to take advantage of carbon credits likewise increases. In a recent case study, engineering systems integrator Drakken was selected for a project with a large oil and gas company to engineer an offshore wellhead monitoring project at the Gulf of Suez. The task was to collect, analyze and distribute information to earn carbon credits and, since the carbon credits would be generated from flare gas reduction, the company would have to quantify and verify the exact volume of equivalent greenhouse gas emissions reduced by the gas conservation equipment per the quantification methodology. This entails the need for continuous flare gas conservation data, so Drakken had to record standardized volumetric flow rates for the conserved gas and store it to the cloud application.&lt;/p&gt;
&lt;p&gt;Tasked with providing a solution for data transfer from an energy meter, installed on a gas compressor, and flow meters to a remote cloud-based data management system, Drakken selected Emerson&amp;rsquo;s PACSystems&lt;sup&gt;TM&lt;/sup&gt; RX3i CPL410 edge controller, PACEdge&lt;sup&gt;TM&lt;/sup&gt; software, an RSTi-EP network adapter, communication card, digital input card for alarm signals, and QuickPanel+ HMI.&amp;nbsp;&lt;strong&gt;To learn how Drakken was able to fulfill the requirements of this demanding project, &lt;a href="https://www.emerson.com/documents/automation/case-study-pacsystems-provides-remote-offshore-wellhead-data-en-9569856.pdf" rel="noopener noreferrer" target="_blank"&gt;read the full case study&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You&amp;rsquo;ll find additional information on the unique &lt;a href="https://www.emerson.com/en-us/catalog/emerson-sku-ic695cpl410" rel="noopener noreferrer" target="_blank"&gt;Emerson PACSystems CPL410 edge controller here.&lt;/a&gt; &lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>FEI Foods Goes “Beyond SCADA” in Automating Their New Plant Using Movicon.NExT Platform</title><link>https://emersonexchange365.com/thread/10839?ContentTypeID=0</link><pubDate>Fri, 22 Sep 2023 23:21:10 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:aeacd0f4-0e50-43dd-a23b-cb020c4e6507</guid><dc:creator>Andrea di Talia</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10839?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10839/fei-foods-goes-beyond-scada-in-automating-their-new-plant-using-movicon-next-platform/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/FEIfoods2-small.jpg" /&gt;For a company that had been so busy meeting demand they couldn&amp;rsquo;t slow down to implement automation, just the prospect of installing a SCADA system in their new plant sounded like the solution to a lot of challenges. But they were informed enough to choose Movicon.NExT&lt;sup&gt;TM&lt;/sup&gt; software for their plant and got way more than they expected.&lt;/p&gt;
&lt;p&gt;The Movicon.NExT platform interconnects all the new automation equipment over the factory data communication network. In addition, it interfaces with the FEI Foods&amp;rsquo; enterprise resource planning (ERP) and inventory control systems, as well as printing, labeling and applicators. This enables automatic production declarations to be performed at the end of every batch. To eliminate the inefficiency and inconvenience of a manual inventory system, which their previous facilities had used, Emerson worked with PLATCON to develop a webservices interface to allow the Movicon.NExT platform to communicate with the inventory control system. And that&amp;rsquo;s just the beginning.&lt;/p&gt;
&lt;p&gt;To learn how FEI Foods went beyond SCADA functionality to increase their production output, improve its OEE and more, &lt;a href="https://www.foodmanufacturing.com/capital-investment/blog/22871862/emerson-advanced-scada-helps-a-convenience-food-producer-meet-increasing-demand" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;this article in &lt;em&gt;Food Manufacturing&lt;/em&gt; shares more details.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.emerson.com/en-us/automation/control-and-safety-systems/movicon/" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;And click here to learn more about Movicon.NExT software.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Untrap Your Data to Improve OEE – Video</title><link>https://emersonexchange365.com/thread/10835?ContentTypeID=0</link><pubDate>Wed, 20 Sep 2023 23:10:36 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:41629ae7-e0e2-41df-b543-0567f3d20f41</guid><dc:creator>Eldin Cooper</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10835?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10835/untrap-your-data-to-improve-oee-video/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://event.on24.com/wcc/r/4257383/9C63AABA06C3F33AC9703327FC72E315" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:150px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/300x960/__key/communityserver-discussions-components-files/489/5315.OEE-video.png" /&gt;&lt;/a&gt;Industry professionals know that the greater use of smart sensors and systems has significantly increased the data that can be collected on every aspect of industrial applications. Where once users might be able to tell that a specific machine was operating more slowly or with less output than others, they can now determine the cause of the problem down to the specific measurement or function. Operators can discover when a machine might fail and the optimal time to perform maintenance. And all this data becomes input for rapid decision-making that can up efficiency, increase productivity, reduce downtime and save money by improving overall equipment effectiveness (OEE).&lt;/p&gt;
&lt;p&gt;Achieving these goals begins with untrapping data and making it available as input for OEE, meaning getting it out of the machines and into the hands of those who can actually use it &amp;ndash; fast and cost-effectively. Not the job of any single hardware or software system, making efficient use of previously trapped data requires effective integration from the floor to the cloud &amp;ndash; from the machine to all decisionmakers, be they in maintenance, operations, finance, or the boardroom.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://event.on24.com/wcc/r/4257383/9C63AABA06C3F33AC9703327FC72E315" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;This interesting video&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; features a discussion between two of Emerson&amp;rsquo;s technical experts who speak on improving OEE by gaining access to trapped or new data. &lt;/strong&gt;&lt;a href="https://event.on24.com/wcc/r/4257383/9C63AABA06C3F33AC9703327FC72E315" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;Take a look.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Air Conditioning Manufacturer Tripled Production Using Emerson PLCs and Movicon.NExT™︎ Platform</title><link>https://emersonexchange365.com/thread/10830?ContentTypeID=0</link><pubDate>Fri, 15 Sep 2023 19:54:25 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:3975cbf3-f67f-428a-82ba-6922d687d9ff</guid><dc:creator>Andrea di Talia</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10830?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10830/air-conditioning-manufacturer-tripled-production-using-emerson-plcs-and-movicon-next-platform/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-air-conditioning-company-triples-productivity-movicon-en-9252312.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/Maxa3.png" /&gt;&lt;/a&gt;Imagine that you have a major rise in market demand for your products and you can&amp;rsquo;t meet it! What do you do? Often modularity and flexibility win the day. That&amp;rsquo;s what this interesting case study from Maxa Air Conditioning shows when the company realized that their facilities were restricted by the existing heat-pump testing production line that consisted of two testing stations with a maximum throughput of only 19 units per shift.&lt;/p&gt;
&lt;p&gt;In order to increase production capacity, Maxa needed to automate its heat-pump testing process and expand to add more testing stations. The solution also needed to be modular to improve efficiency and enable the plant to grow and scale for the future. Maxa succeeded in a big way by increasing test capacity to over 60 units per shift. They combined a PLC from Emerson and the Movicon.NExT&lt;sup&gt;TM&lt;/sup&gt; software.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To learn how the company accomplished its goal&amp;nbsp;&lt;a href="https://www.emerson.com/documents/automation/case-study-air-conditioning-company-triples-productivity-movicon-en-9252312.pdf" rel="noopener noreferrer" target="_blank"&gt;in&amp;nbsp;the case study here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.emerson.com/movicon" rel="noopener noreferrer" target="_blank"&gt;And visit the Movicon page&lt;/a&gt; to explore steps that your plant might take to increase production and efficiency.&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Oil Lubricant Manufacturer Increases Productivity with Movicon.NExT™︎</title><link>https://emersonexchange365.com/thread/10825?ContentTypeID=0</link><pubDate>Thu, 07 Sep 2023 18:19:51 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:b4477231-06a7-4b7a-bc00-344e7587b4b2</guid><dc:creator>Andrea di Talia</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10825?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10825/oil-lubricant-manufacturer-increases-productivity-with-movicon-next/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-italian-oil-lubricant-manufacturer-improves-production-line-control-using-movicon-next-scada-software-en-7553460.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/Oil-lubricant4.png" /&gt;&lt;/a&gt;The drive to improve productivity and efficiency in manufacturing plants is a major step in improving a company&amp;rsquo;s bottom line but can be difficult to achieve without significant disruption and expense, especially when production data is needed from a range of disparate machines.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-italian-oil-lubricant-manufacturer-improves-production-line-control-using-movicon-next-scada-software-en-7553460.pdf" rel="noopener noreferrer" target="_blank"&gt;In a recent case study&lt;/a&gt;&lt;/strong&gt;, an oil lubricant manufacturer was able to implement a new supervision system for its production line, which included a number of different, proprietary machines, each controlled by its own PLC. They achieved cost-effective data collection, aggregation and analysis that led to easy detection of problems causing production losses and downtime using the &lt;a href="http://www.emerson.com/movicon" rel="noopener noreferrer" target="_blank"&gt;Emerson Movicon.NExT platform.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To learn how they got such excellent results, &lt;/strong&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-italian-oil-lubricant-manufacturer-improves-production-line-control-using-movicon-next-scada-software-en-7553460.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;read the case study here.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Is Air Costing You a Lot of Money? Here’s How to Reduce Air and Energy Consumption Easily &amp; Affordably</title><link>https://emersonexchange365.com/thread/10814?ContentTypeID=0</link><pubDate>Fri, 01 Sep 2023 01:52:53 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:7fadf4ae-4664-4ca9-9275-63bcf9cd73b7</guid><dc:creator>Eldin Cooper</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10814?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10814/is-air-costing-you-a-lot-of-money-here-s-how-to-reduce-air-and-energy-consumption-easily-affordably/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://event.on24.com/wcc/r/4257368/DDF9B32E98D1FC873A0D07F13CC90E99" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/How-Monitoring-Utilities-Help-_5F00_-play.png" /&gt;&lt;/a&gt;Industrial companies are caught between the energy crisis on the one hand and the environmental crisis on the other. The need to reduce energy consumption while simultaneously lowering impact on the environment is a constant challenge.&lt;/p&gt;
&lt;p&gt;In a recent video, two Emerson experts, Eugenio Silva of the Intelligent Automation Group, and David Kraft, VP of Emerson Discrete Automation, discuss how monitoring utilities can help companies achieve net-zero goals &amp;ndash; an affordable, efficient way to positively affect both energy and the environment. Industrial plants can start by taking a proactive approach to reducing compressed air loss and move on to other utilities. &lt;strong&gt;&lt;a href="https://event.on24.com/wcc/r/4257368/DDF9B32E98D1FC873A0D07F13CC90E99" rel="noopener noreferrer" target="_blank"&gt;Find out how in this video.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Give Your Machine Builder Customers the Edge</title><link>https://emersonexchange365.com/thread/10813?ContentTypeID=0</link><pubDate>Thu, 31 Aug 2023 18:43:51 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:8f585d69-eeb6-4857-be8a-da6f1b360d62</guid><dc:creator>Andrea di Talia</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10813?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10813/give-your-machine-builder-customers-the-edge/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-kosme-enhances-visualization-reduces-engineering-time-by-standardizing-on-emerson-scada-hmi-platform-en-7553492.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/Kosme3.png" /&gt;&lt;/a&gt;&lt;strong&gt;&lt;a href="https://www.emersonautomationexperts.com/2023/digital-transformation/movicon-scada-hmi-reduces-engineering-time-and-costs-for-italian-packaging-machine-builder/" rel="noopener noreferrer" target="_blank"&gt;Here&amp;rsquo;s a new blog on Emerson Automation Experts&lt;/a&gt;&lt;/strong&gt; that details how a machine builder cut their costs and engineering time using Movicon&lt;sup&gt;TM&lt;/sup&gt; SCADA/HMI.&lt;/p&gt;
&lt;p&gt;Take a look. It makes some interesting points that may apply to your customers.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;And use the below content to share &lt;a href="https://www.emerson.com/documents/automation/case-study-kosme-enhances-visualization-reduces-engineering-time-by-standardizing-on-emerson-scada-hmi-platform-en-7553492.pdf" rel="noopener noreferrer" target="_blank"&gt;this case study&lt;/a&gt; with your customers and prospects on social media and in your newsletters:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Case study: Movicon SCADA/HMI reduces engineering time and costs for Italian packaging machinery builder &amp;gt; &lt;a href="http://emr.as/oLqY50PGxlx" rel="noopener noreferrer" target="_blank"&gt;http://emr.as/oLqY50PGxlx&lt;/a&gt;&amp;nbsp;#Movicon #SCADA #IIoT #Packaging #FoodandBeverage&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Read how creating a standardized supervisory system using #Movicon SCADA/HMI saved time and money and helped set this machine builder apart &amp;gt;&amp;nbsp;&lt;a href="http://emr.as/oLqY50PGxlx" rel="noopener noreferrer" target="_blank"&gt;http://emr.as/oLqY50PGxlx&lt;/a&gt; #SCADA #IIoT #Packaging #FoodandBeverage&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&amp;ldquo;By using the Movicon platform, projects can be centralized or distributed, allowing us to deploy fewer resources to planning and maintenance of our various machines.&amp;rdquo; Learn how this machine builder saved time and money &amp;gt;&amp;nbsp;&lt;a href="http://emr.as/oLqY50PGxlx" rel="noopener noreferrer" target="_blank"&gt;http://emr.as/oLqY50PGxlx&lt;/a&gt; #Movicon #SCADA #IIoT #Packaging #FoodandBeverage&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Movicon SCADA/HMI offers support for dynamic language, user and password protection management compliant with FDA CFR21 Part 11 regulations, and important alarm notifications by SMS or email, plus much more &amp;gt;&amp;nbsp;&lt;a href="http://emr.as/oLqY50PGxlx" rel="noopener noreferrer" target="_blank"&gt;http://emr.as/oLqY50PGxlx&lt;/a&gt; #Movicon #SCADA #IIoT #Packaging #FoodandBeverage&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Edge Control Technology Lowers Risk and Saves Money in Water Distribution System at the World’s Largest New City</title><link>https://emersonexchange365.com/thread/10808?ContentTypeID=0</link><pubDate>Tue, 29 Aug 2023 23:16:43 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:59df22f4-3ca1-48c9-8aa0-ac0219c40241</guid><dc:creator>Eldin Cooper</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10808?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10808/edge-control-technology-lowers-risk-and-saves-money-in-water-distribution-system-at-the-world-s-largest-new-city/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/ControlEng-_5F00_NEOM-article-_2D00_-PACSystems-Controllers-Protocols.jpg" /&gt;Many of you have read or heard about edge controllers &amp;ndash; a relatively new technology that combines deterministic and non-deterministic real-time control in one hypervised platform, providing the capabilities of a programmable logic controller (PLC) and an edge computer system in one device, saving costs, space and integration time and complexity. In existing projects where PLCs are already well in place, industrial professionals may choose not to use edge controllers but rather opt for edge computing devices added to the existing machine-level control in order to bring analytic capability to the plant floor. On the other hand, in greenfield projects, those where the PLC technology is out-of-date or where space or integration complexity is an issue, the choice of an edge controller is optimum.&lt;/p&gt;
&lt;p&gt;A truly dramatic example of the use of edge controller technology along with advanced SCADA-based software and other innovations can be seen in &lt;a href="https://www.controleng.com/articles/edge-controllers-save-money-lower-risk-for-water-pipeline-pumping-storage/" rel="noopener noreferrer" target="_blank"&gt;this article about the water distribution system in the world&amp;rsquo;s largest new city, NEOM in Saudi Arabia.&lt;/a&gt; An exceptional challenge, the NEOM system extends over approximately 65 km (40.4 miles) of coastal terrain and 75 km (46.6 miles) of mountains, providing a wide range of environmental stresses. A water desalination plant is the freshwater source, and the system includes pipelines, pumping stations and storage tanks. With the city under construction, the water system delivers more than 50,600 m&lt;sup&gt;3&lt;/sup&gt;/day (1.787 million ft&lt;sup&gt;2&lt;/sup&gt;) of bulk desalinated water to the core development area for construction and human consumption.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.controleng.com/articles/edge-controllers-save-money-lower-risk-for-water-pipeline-pumping-storage/" rel="noopener noreferrer" target="_blank"&gt;Read this interesting article&lt;/a&gt;. And learn more about how PACSystems edge technology can help in a wide range of applications by visiting &lt;a href="http://www.Emerson.com/PACSystems" rel="noopener noreferrer" target="_blank"&gt;Emerson.com/PACSystems&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Integrated Compressed Air Monitoring Solution Means Big Energy Savings for Global Consumer Goods Manufacturer</title><link>https://emersonexchange365.com/thread/10799?ContentTypeID=0</link><pubDate>Thu, 17 Aug 2023 22:32:32 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:afc10f05-a802-4cfb-a0aa-a11f6607c0bb</guid><dc:creator>Ajay Singh Rana </dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10799?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10799/integrated-compressed-air-monitoring-solution-means-big-energy-savings-for-global-consumer-goods-manufacturer/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-pacsystems-reduces-energy-in-compressed-air-monitoring-en-9269752.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/Colgate1.png" /&gt;&lt;/a&gt;The use and leakage of compressed air in any industrial plant represents a significant energy footprint and is a problem for a company that is either pursuing a net zero carbon target or one that is simply trying to reduce energy expenditure.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-pacsystems-reduces-energy-in-compressed-air-monitoring-en-9269752.pdf" rel="noopener noreferrer" target="_blank"&gt;In an interesting case study&lt;/a&gt;, a major consumer goods manufacturer succeeded in reducing their compressed air consumption and thereby energy usage by 22% through the use of an integrated compressed air monitoring solution from Emerson. The system includes sensors, edge computers, OPC-UA servers and software. One of the case&amp;rsquo;s big challenges, which is common to many manufacturers, was overcoming the fact that most inline sensors do not have real-time clocks, so there is no clear way to determine timing of events. The monitoring system needed an elegant, scalable and efficient way to overcome this problem. In addition, the solution had to scale to 38 global manufacturing centers using a single central monitoring and control system.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-pacsystems-reduces-energy-in-compressed-air-monitoring-en-9269752.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;To see how Emerson met and exceeded the requirements of this company, read the case study.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Solve Time-to-Market Slowdowns with Modern Machine Control</title><link>https://emersonexchange365.com/thread/10794?ContentTypeID=0</link><pubDate>Thu, 10 Aug 2023 23:03:32 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:4634bd33-7306-4107-a196-ed46d27c55cf</guid><dc:creator>Eldin Cooper</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10794?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10794/solve-time-to-market-slowdowns-with-modern-machine-control/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:220px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/440x960/__key/communityserver-components-multipleuploadfilemanager/b1304a86_2D00_b733_2D00_481e_2D00_a0c7_2D00_4732a46b7358-49575-complete/Data-Acquisition-for-CEMS-flyer2.jpg.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/flyer-oems-solve-slowdowns-modern-machine-control-pacsystems-en-9247612.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:180px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/360x960/__key/communityserver-discussions-components-files/489/Machine-Builder-Flyer.png" /&gt;&lt;/a&gt;If you&amp;rsquo;re a machine builder, you know all the stresses you&amp;rsquo;re under that have the potential to slow your time to market &amp;ndash; and reduce your bottom line. Daily, you experience the challenges of the programmer shortage, getting stuck designing in outdated technology, being attacked by hackers, and worse, having your customers suffering cyberattacks.&lt;/p&gt;
&lt;p&gt;A new flyer from Emerson addresses some of these stresses and offers new ways of thinking about PLC technology that can have a positive impact on your productivity.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/flyer-oems-solve-slowdowns-modern-machine-control-pacsystems-en-9247612.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;Download the flyer here.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>See How this Power Station Operator Solved a Wide Range of Operating Problems with a Single Movicon.NExT Platform</title><link>https://emersonexchange365.com/thread/10791?ContentTypeID=0</link><pubDate>Wed, 09 Aug 2023 02:42:00 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:f0e3c0da-b7a4-4ba4-afcd-fd6f4f3dc781</guid><dc:creator>Andrea di Talia</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10791?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10791/see-how-this-power-station-operator-solved-a-wide-range-of-operating-problems-with-a-single-movicon-next-platform/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-movicon-scada-software-provides-enhanced-supervision-of-large-solar-parks-in-south-africa-brazil-movicon-en-8192820.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:360px;max-width:220px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/440x720/__key/communityserver-discussions-components-files/489/Delin.4.png" /&gt;&lt;/a&gt;Solving a large number of supervision and control problems in a complex industrial installation with a single platform, requiring only a single license, can be a great boon to a user. That&amp;rsquo;s what happened when the operator of 11 photovoltaic power stations in Brazil and South Africa set out to replace their decade-old SCADA system with new technology that would provide superior graphics for better ease-of-use as well as much-needed scalability. The power stations had a total capacity of 825 MW and the SCADA system was required to collect from 5,000 to 10,000 I/O of data at each station and then process, aggregate and visualize the collected data and communicate with the distributed control system or third-party systems.&lt;/p&gt;
&lt;p&gt;When the systems integrator selected Movicon.NExT&lt;sup&gt;TM&lt;/sup&gt; software from Emerson, the user got way more than they expected and everything they wanted, all in one platform. To learn how the Movicon.NExT platform brought exceptional visualization, flexibility, scalability and more to this power station operator,&amp;nbsp;&lt;strong&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-movicon-scada-software-provides-enhanced-supervision-of-large-solar-parks-in-south-africa-brazil-movicon-en-8192820.pdf"&gt;check out this case study.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Imagine Emissions Monitoring Made Easy</title><link>https://emersonexchange365.com/thread/10788?ContentTypeID=0</link><pubDate>Thu, 03 Aug 2023 22:10:06 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:603157d8-038c-4202-bf9c-a89e18cb7d9a</guid><dc:creator>Eldin Cooper</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10788?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10788/imagine-emissions-monitoring-made-easy/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:220px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/440x960/__key/communityserver-discussions-components-files/489/Data-Acquisition-for-CEMS-flyer2.jpg.png" /&gt;All industrial companies know the critical need to report stack emissions correctly and promptly. Large fines or even plant shutdowns can result from noncompliance. But actually monitoring and reporting those emissions is hard, especially with data acquisition systems (DAS) assembled from bits and parts of a lot of disparate technologies never made to integrate easily.&lt;/p&gt;
&lt;p&gt;But you can change all that in your plant with a quick look at &lt;a href="https://www.emerson.com/documents/automation/flyer-data-acquisition-solutions-for-cems-applications-pacsystems-en-9250886.pdf" rel="noopener noreferrer" target="_blank"&gt;this informative flyer&lt;/a&gt; that tells you all about a fully integrated DAS created by Emerson and designed to make emissions monitoring fast and easy.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/flyer-data-acquisition-solutions-for-cems-applications-pacsystems-en-9250886.pdf" rel="noopener noreferrer" target="_blank"&gt;Get your copy and &lt;strong&gt;Meet Demanding Emissions Monitoring Requirements Quickly, Easily and Cost Effectively.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Emerson Floor to Cloud Solutions at PACK EXPO 2023, Sept 11-13 (Get Your FREE Ticket!)</title><link>https://emersonexchange365.com/thread/10784?ContentTypeID=0</link><pubDate>Tue, 01 Aug 2023 01:23:29 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:e07441ae-d7ae-4864-9739-0f280b28d09b</guid><dc:creator>Eldin Cooper</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10784?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10784/emerson-floor-to-cloud-solutions-at-pack-expo-2023-sept-11-13-get-your-free-ticket/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Transform raw data into actionable information and then put that knowledge to work immediately, saving you time, upping your productivity, lowering costs, increasing product quality, utilizing every resource to the max, and getting the most from all your workforce. You can do this fast and cost effectively when you start at the machine level, solve your highest priority problems first, gain insights and ROI right away and scale seamlessly all the way to the cloud as fast as you require. Sound good?&lt;/p&gt;
&lt;p&gt;A particularly good time to learn all this transformational knowledge up close and personal is coming September 11-13 at &lt;strong&gt;&lt;a href="https://www.emerson.com/en-us/automation/fluid-control-pneumatics/floor-to-cloud-the-future-of-automation" rel="noopener noreferrer" target="_blank"&gt;PACK EXPO 2023&lt;/a&gt;&lt;/strong&gt;&amp;nbsp;in Las Vegas when Emerson will show you how data holds the key to improvement and how you can drive transformation across your operations with our Floor to Cloud&lt;sup&gt;TM&lt;/sup&gt; solutions at our booth #SL-6107.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://go.emersonautomation.com/pack-expo-2023" rel="noopener noreferrer" target="_blank"&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;max-height:480px;max-width:640px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/1280x960/__key/communityserver-discussions-components-files/489/_7B00_c53046e9_2D00_303b_2D00_4461_2D00_ab20_2D00_ffe433604484_7D005F00_FoodandBeverage_5F00_Reliability_5F00_600x150pxGreenlines_5F002800_1_2900_.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="https://go.emersonautomation.com/pack-expo-2023" rel="noopener noreferrer" target="_blank"&gt;Want a FREE ticket? Make an appointment to meet an Emerson expert for an up-close exploration of new, problem-solving technologies and platforms.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Emerson Floor to Cloud solutions wall&lt;/strong&gt; will be an exciting display where you can learn how solving problems from the machine level to the enterprise with full integration can save you time, money and mistakes. Delve into solutions from the floor to the cloud that increase energy efficiency, reduce waste, improve OEE, create safer operations and improved record-keeping, and eliminate islands of automation, freeing trapped data.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://go.emersonautomation.com/pack-expo-2023" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:200px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/400x960/__key/communityserver-discussions-components-files/489/1321.Screenshot-2023_2D00_07_2D00_31-182610.png" /&gt;&lt;/a&gt;In addition, other exciting demonstrations include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Multi-media monitoring&lt;/li&gt;
&lt;li&gt;Electric linear displays&lt;/li&gt;
&lt;li&gt;Compressed air monitoring&lt;/li&gt;
&lt;li&gt;Filling demonstrations&lt;/li&gt;
&lt;li&gt;Welding line automation&lt;/li&gt;
&lt;li&gt;Clean-in-place monitoring and automation&lt;/li&gt;
&lt;li&gt;Cascade leak detection&lt;/li&gt;
&lt;li&gt;A demonstration of the practical uses of augmented reality in maintenance and operations&lt;/li&gt;
&lt;li&gt;And more&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Another exciting event to be aware of is the Packaging &amp;amp; Processing Women&amp;rsquo;s Leadership Network Breakfast sponsored by Emerson being held on September 12&lt;sup&gt;th&lt;/sup&gt; from 7:30 to 9:00am, where you&amp;rsquo;ll learn how Manjit Minhas turned an idea into a beer empire.&lt;/p&gt;
&lt;p&gt;And while all these things are going on, you&amp;rsquo;ll be able to cheer on the college, trade school and university teams that will be running around the exhibit halls completing tasks in the Amazing Packaging Race, also sponsored by Emerson.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;PACK EXPO 2023 will be an exciting event. &lt;a href="https://go.emersonautomation.com/pack-expo-2023" rel="noopener noreferrer" target="_blank"&gt;Get your free ticket now.&lt;/a&gt; Make an appointment&amp;nbsp;with an expert to discuss how &lt;a href="https://www.emerson.com/en-us/automation/fluid-control-pneumatics/floor-to-cloud-the-future-of-automation" rel="noopener noreferrer" target="_blank"&gt;Emerson&amp;nbsp;Floor to Cloud solutions&lt;/a&gt; can help your operations. Plan now to be in Las Vegas from Sept 11 - 13 and we will see you at booth #SL-6107.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Open Architecture and Protocol Support Win the Day for This Solar Plant</title><link>https://emersonexchange365.com/thread/10778?ContentTypeID=0</link><pubDate>Thu, 27 Jul 2023 03:02:36 GMT</pubDate><guid isPermaLink="false">cd40bb2b-3d49-4868-939d-417119b40291:ea4246ee-79f0-454a-bf30-cd34d79a1922</guid><dc:creator>Manish Sharma</dc:creator><slash:comments>0</slash:comments><comments>https://emersonexchange365.com/thread/10778?ContentTypeID=0</comments><wfw:commentRss>https://emersonexchange365.com/community-hubs/deltav-community-connect/f/plc-pac-systems-industrial-computing-forum/10778/open-architecture-and-protocol-support-win-the-day-for-this-solar-plant/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://www.emerson.com/documents/automation/case-study-pacsystems-rx3i-used-for-solar-power-plant-retrofit-en-9249158.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;img class="align-right" style="float:right;max-height:480px;max-width:220px;" alt=" " src="https://emersonexchange365.com/resized-image/__size/440x960/__key/communityserver-discussions-components-files/489/Nor_2D00_Cal-Pavant_5F00_sm.jpg" /&gt;&lt;/a&gt;The need to deal with legacy technology is a challenge that almost every industrial company faces at some time. Upgrading and/or replacing systems without taking too much time or spending too much money becomes job #1. An interesting example of just such a case study occurred in a solar power plant in the western U.S. The founders of the solar plant were looking to transfer ownership to a new company, but the presence of proprietary control systems made the plant less desirable to the new owner as well as complicated the transfer of operations and maintenance responsibilities to the new entity. This meant the changeover to new control technology had to happen fast.&lt;/p&gt;
&lt;p&gt;To read the whole story of how Nor-Cal Controls, the systems integrator for the project, used the PACSystems&lt;sup&gt;TM&lt;/sup&gt; RX3i control solution to make the changeover smooth and fast as well as to expand capabilities far beyond the customer&amp;rsquo;s expectations,&amp;nbsp;&lt;a href="https://www.emerson.com/documents/automation/case-study-pacsystems-rx3i-used-for-solar-power-plant-retrofit-en-9249158.pdf" rel="noopener noreferrer" target="_blank"&gt;&lt;strong&gt;check out this case study.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>