<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Chilled water plant logic]]></title><description><![CDATA[<p dir="auto">Hi guys,<br />
I need a hand to produce some sort of logic (within Mango or DGLux) for the following scenario:</p>
<p dir="auto">I have a chilled water plant that comprises three Water Chillers, I need to setup a logic for the control of this plant as follows:</p>
<ul>
<li>If the ambient temperature is above 17 °C start one unit at 6.00 am.</li>
<li>If the ambient temperature continues to rise and reaches a 25 °C value, start the second unit.</li>
<li>If the ambient temperature continues to rise and reaches a 35 °C value, start the third unit.</li>
<li>This should happen Monday through friday from 6.00 am to 5.00 pm., at this time all running units should shutdown.</li>
<li>Units should cycle weekly (i.e. unit 1 transforms in to unit 2, unit 2 in to unit 3, unit 3 in to unit 1)</li>
<li>There's also an electric boiler that uses the same water loop, and it should start/stop in the same schedule, but only if the ambient temperature goes below 15 °C.</li>
</ul>
<p dir="auto">Any help you can provide will be greatly appreciated.</p>
<p dir="auto">Thanks,<br />
Regards<br />
Rodrigo</p>
]]></description><link>https://forum.mango-os.com/topic/2014/chilled-water-plant-logic</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 00:24:38 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/2014.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 04 Nov 2015 14:41:41 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Chilled water plant logic on Fri, 15 Jan 2016 01:03:47 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">Units should cycle weekly (i.e. unit 1 transforms in to unit 2, unit 2 in to unit 3, unit 3 in to unit 1)</p>
</blockquote>
<p dir="auto">If the reason you want to cycle the units is to keep the operating hours similar between units, if you're tracking their total runtime hours, then rather than starting the "next" unit, you could start the unit with the lowest runtime. If you want the unit to be offline for a week for maintenance, then of course only check the runtime weekly.</p>
]]></description><link>https://forum.mango-os.com/post/10820</link><guid isPermaLink="true">https://forum.mango-os.com/post/10820</guid><dc:creator><![CDATA[Pedro]]></dc:creator><pubDate>Fri, 15 Jan 2016 01:03:47 GMT</pubDate></item><item><title><![CDATA[Reply to Chilled water plant logic on Tue, 01 Dec 2015 18:16:20 GMT]]></title><description><![CDATA[<p dir="auto">Thanks guys! I will give it a try and let you know how it goes,</p>
<p dir="auto">Regards,<br />
Rodrigo</p>
]]></description><link>https://forum.mango-os.com/post/10623</link><guid isPermaLink="true">https://forum.mango-os.com/post/10623</guid><dc:creator><![CDATA[Rodrigo]]></dc:creator><pubDate>Tue, 01 Dec 2015 18:16:20 GMT</pubDate></item><item><title><![CDATA[Reply to Chilled water plant logic on Fri, 13 Nov 2015 17:42:12 GMT]]></title><description><![CDATA[<p dir="auto">Once you look at the scripting and figure it out you should be able to do this with ease. As for the cycling I would create two scripts. The first one as mentioned by Joel but instead of it turning chillers on have it turn virtual stages on (1-3). The second script will just assign stages to physical chillers and every week increment the stage number with loopback to 1 when greater than 4.</p>
<p dir="auto">Week 1: Stage 1 = Chiller 1, Stage 2 = Chiller 2, Stage 3 = Chiller 3<br />
Week 2: Stage 2 = Chiller 1, Stage 3 = Chiller 2, Stage 1 = Chiller 3<br />
Week 3: Stage 3 = Chiller 1, Stage 1 = Chiller 2, Stage 2 = Chiller 3</p>
<p dir="auto">This can all be done in one script, I just prefer a bunch of smaller scripts.</p>
]]></description><link>https://forum.mango-os.com/post/10551</link><guid isPermaLink="true">https://forum.mango-os.com/post/10551</guid><dc:creator><![CDATA[btrombo]]></dc:creator><pubDate>Fri, 13 Nov 2015 17:42:12 GMT</pubDate></item><item><title><![CDATA[Reply to Chilled water plant logic on Wed, 04 Nov 2015 18:09:41 GMT]]></title><description><![CDATA[<p dir="auto">Hi Rodrigo,</p>
<p dir="auto">To start with I'll give you some tips on how you might do this and if you still need help we can look at writing a full script.</p>
<p dir="auto">In the Scripting Data Source create a binary Data Point and you could call it something like Chillers_Active.  I would then create a Scheduled even with a CRON pattern like:   Active at:  <strong>0 0 6 ? * MON-FRI</strong>  Inactive at:  <strong>0 0 17 ? * MON-FRI</strong> Next create an event handler for this Scheduled event to turn the Binary point to true when it's active and false when it's inactive.</p>
<p dir="auto">Now you can write a script like:</p>
<pre><code>if (Chillers_Active &amp;&amp; AT.value &gt; 17)
{
chiller1.set(true);
}
</code></pre>
<p dir="auto">I'll have to think more about cycling the chillers but you can probably do that with another scheduled event and some virtual data pionts.</p>
]]></description><link>https://forum.mango-os.com/post/10534</link><guid isPermaLink="true">https://forum.mango-os.com/post/10534</guid><dc:creator><![CDATA[JoelHaggar]]></dc:creator><pubDate>Wed, 04 Nov 2015 18:09:41 GMT</pubDate></item></channel></rss>