<?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[Calculating a value in page]]></title><description><![CDATA[<p dir="auto">Hello, I have to calculate capacity for a chiller, and I want to know if is possible to calculate this without creating a meta point. I have the following formula:<br />
ChCapacity = (CHW_Flow * (CHW_Return_Temp - CHW_Supply_Temp)*1.8)/24</p>
<p dir="auto">It is possible to calculate this directly on web page and display the result somewhere in page or I have to create a meta point.</p>
]]></description><link>https://forum.mango-os.com/topic/2944/calculating-a-value-in-page</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Apr 2026 13:23:45 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/2944.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 14 Sep 2017 15:32:07 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Calculating a value in page on Fri, 15 Sep 2017 20:13:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jared-wiltshire" aria-label="Profile: jared-wiltshire">@<bdi>jared-wiltshire</bdi></a> Thank you, works well</p>
]]></description><link>https://forum.mango-os.com/post/15512</link><guid isPermaLink="true">https://forum.mango-os.com/post/15512</guid><dc:creator><![CDATA[georgestefan]]></dc:creator><pubDate>Fri, 15 Sep 2017 20:13:35 GMT</pubDate></item><item><title><![CDATA[Reply to Calculating a value in page on Thu, 14 Sep 2017 16:02:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/georgestefan" aria-label="Profile: georgestefan">@<bdi>georgestefan</bdi></a> Its absolutely possible. You can just put your formula into a <code>ng-bind</code> attribute</p>
<p dir="auto">e.g.</p>
<pre><code> &lt;div id="13688a40-881d-4956-b42a-14362bbe73ef" style="position: absolute; left: 480px; top: 142px;" ng-bind="(CHW_Flow * (CHW_Return_Temp - CHW_Supply_Temp)*1.8)/24"&gt;&lt;/div&gt;
</code></pre>
<p dir="auto">However I assume those are actually point values in which case it will probably be more like</p>
<pre><code> &lt;div id="13688a40-881d-4956-b42a-14362bbe73ef" style="position: absolute; left: 480px; top: 142px;" ng-bind="(flowPoint.value * (returnTempPoint.value - supplyTempPoint.value)*1.8)/24"&gt;&lt;/div&gt;
</code></pre>
<p dir="auto">You can also wrap expressions with curly braces <code>{{ }}</code></p>
<pre><code>&lt;div&gt;
{{ (flowPoint.value * (returnTempPoint.value - supplyTempPoint.value)*1.8)/24 }}
&lt;/div&gt;</code></pre>
]]></description><link>https://forum.mango-os.com/post/15470</link><guid isPermaLink="true">https://forum.mango-os.com/post/15470</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Thu, 14 Sep 2017 16:02:16 GMT</pubDate></item></channel></rss>