<?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[[gelöst] Annäherungswert, Wasserverdunstung Sktipt]]></title><description><![CDATA[<p dir="auto">Hallo, hat sich von euch schon mal einer mit Wasserverdunstung beschäftigt?<br />
Vielleicht hat einer von euch schon ein Sktipt geschrieben ... der vielleicht besser in diesem Thema ist (Physik) als ich...</p>
<p dir="auto">Hab's mal damit probiert... <a href="https://energie.ch/verdunstung/" rel="nofollow ugc">Verdunstung</a>, aber ich bekomme da Werte raus die nicht wirklich stimmen können ... Gebe auch zu, Physik ist echt nicht mein Fachgebiet...</p>
<p dir="auto">Also meine Versuche sind kläglich gescheitert...<br />
Habe letztendlich zur Verfügung stehende Werte: Lufttemperatur, Wassertemperatur, Luftfeuchte %rF</p>
<p dir="auto">Vielleicht hat schon mal einer sowas berechnet?</p>
<p dir="auto">Viele Grüße<br />
M</p>
<p dir="auto">EDIT: Luftsättigung habe ich nur in Form von relative Feuchte...</p>
]]></description><link>https://forum.iobroker.net/topic/42846/gelöst-annäherungswert-wasserverdunstung-sktipt</link><generator>RSS for Node</generator><lastBuildDate>Thu, 21 May 2026 19:17:39 GMT</lastBuildDate><atom:link href="https://forum.iobroker.net/topic/42846.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 03 Mar 2021 06:29:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [gelöst] Annäherungswert, Wasserverdunstung Sktipt on Fri, 05 Mar 2021 09:47:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/paul53" aria-label="Profile: paul53">@<bdi>paul53</bdi></a> ...hier das Ergebnis...</p>
<p dir="auto">Nochmals meinen Dank!</p>
<p dir="auto">Eine Frage... von einem "unwissenden" was Physik angeht. Spielt bei einer Wasser-Verdampfung nicht eigentlich der Luftdruck eine Rolle? Die Wasserdichte in Abhängigkeit der Wassertemperatur?</p>
<p dir="auto">Viele Grüße</p>
<p dir="auto"><img src="/assets/uploads/files/1614928214629-io1.png" alt="io1.PNG" class=" img-fluid img-markdown" /></p>
<p dir="auto">...wenn es einen interessiert... so sieht meine Teichsteuerung aus.<br />
<img src="/assets/uploads/files/1614937671275-io1.png" alt="io1.PNG" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/592490</link><guid isPermaLink="true">https://forum.iobroker.net/post/592490</guid><dc:creator><![CDATA[michl75]]></dc:creator><pubDate>Fri, 05 Mar 2021 09:47:54 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst] Annäherungswert, Wasserverdunstung Sktipt on Thu, 04 Mar 2021 15:26:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/paul53" aria-label="Profile: paul53">@<bdi>paul53</bdi></a> Hallo !  Also erst mal vielen herzlichen Dank!! Physik ist leider echt nicht mein Thema... Ich habe das eben erfolgreich umgesetzt und ... kann nur sagen, vielen Dank!</p>
<p dir="auto">Viele Grüße<br />
M.</p>
]]></description><link>https://forum.iobroker.net/post/592203</link><guid isPermaLink="true">https://forum.iobroker.net/post/592203</guid><dc:creator><![CDATA[michl75]]></dc:creator><pubDate>Thu, 04 Mar 2021 15:26:36 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst] Annäherungswert, Wasserverdunstung Sktipt on Wed, 03 Mar 2021 17:11:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/michl75" aria-label="Profile: michl75">@<bdi>michl75</bdi></a> sagte: Habe letztendlich zur Verfügung stehende Werte: Lufttemperatur, Wassertemperatur, Luftfeuchte %rF</p>
<p dir="auto">Habe mal die verlinkte Formel in Javascript umgesetzt.</p>
<pre><code>// IDs und Wasserfläche eintragen!
const idTempLuft = ''; 
const idTempWasser = '';
const idHum = '';
const idVerdunstung = '';
const A = 1; // Wasserfläche in m²

const DP = require('dewpoint'); // NPM-Modul "dewpoint" muss in JS-Config eingetragen sein
const xdp = new DP(70); // 70 m über NN

var tl = getState(idTempLuft).val;
var tw = getState(idTempWasser).val;
var rh = getState(idHum).val;

function x(t, h) {
    return xdp.Calc(t, h).x; // Wassergehalt in g/kg
}

function verdunstung() {
    let v = A * (x(tw, 100) - x(tl, rh)) / 40; // kg/h
    setState(idVerdunstung, Math.round(v * 100) / 100, true);
}

verdunstung(); // Script start
on(idTempLuft, function(dp) {
    tl = dp.state.val;
    verdunstung();
});
on(idTempWasser, function(dp) {
    tw = dp.state.val;
    verdunstung();
});
on(idHum, function(dp) {
    rh = dp.state.val;
    verdunstung();
});
</code></pre>
]]></description><link>https://forum.iobroker.net/post/591731</link><guid isPermaLink="true">https://forum.iobroker.net/post/591731</guid><dc:creator><![CDATA[paul53]]></dc:creator><pubDate>Wed, 03 Mar 2021 17:11:59 GMT</pubDate></item></channel></rss>