<?xml version="1.0" encoding="utf-8"?>
	<rss version="2.0">
		<channel>
			<title>Green Building Forum - Copper or plastic pipe for solar thermal</title>
			<lastBuildDate>Thu, 21 May 2026 08:02:19 +0100</lastBuildDate>
			<link>https://www.greenbuildingforum.co.uk/newforum/</link>
			<description></description>
			<generator>Lussumo Vanilla 1.0.3</generator>
			<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130888#Comment_130888</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130888#Comment_130888</guid>
		<pubDate>Thu, 19 Jan 2012 13:06:47 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[By my rather crude approximation, a 10mm pipe with 40 mm of insulation at 60 K above ambient would lose 1 K about every 25 seconds. Obviously at more reasonable temperatures it takes a bit longer. Still, ten minutes of cloud....]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130894#Comment_130894</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130894#Comment_130894</guid>
		<pubDate>Thu, 19 Jan 2012 13:25:27 +0000</pubDate>
		<author>JSHarris</author>
		<description>
			<![CDATA[Interesting; seems surprisingly high to me, even for the steep part at the start of the exponential curve.  What value of decay constant did you use?]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130918#Comment_130918</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130918#Comment_130918</guid>
		<pubDate>Thu, 19 Jan 2012 14:50:12 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[Here's my calculation, all done per metre of pipe:<br /><br />10 mm O/D, 8.8 mm I/D, 61e-6 mÂ² cross-section.<br />Density, 1000 kg/mÂ² and SHC 4180 J/kgÂ·K so linear heat capacity 255 J/mÂ·K.<br /><br />40 mm of insulation with a conductivity of 0.04 W/mÂ·K - wild guess, probably a bit too conductive but also a bit thick. U value 0.04/0.04 = 1 W/mÂ²Â·K.<br /><br />Crude approximation by ignoring the fact that there's less area on the inside of the insulation than the outside: assume the area of the insulation is the area half way out, radius about 25 mm (half 40 mm plus radius of pipe) so 2Â·PIÂ·r = 0.16 mÂ²/m so heat loss is 0.16 W/mÂ·K.<br /><br />At 60 K temperature difference heat loss is 9.6 W/m.<br /><br />(255 J/mÂ·K) / (9.6 W/m) = 26.56 seconds/K]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130932#Comment_130932</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130932#Comment_130932</guid>
		<pubDate>Thu, 19 Jan 2012 15:49:02 +0000</pubDate>
		<author>JSHarris</author>
		<description>
			<![CDATA[The snag I can see there is that the cooling of the pipe when the pump is turned off will follow Newtons Law of Cooling, where the rate of heat loss at any instant is proportional to the temperature differential at that instant.  This will give an exponential curve, where as the pipe cools the rate of heat loss drops, so slowing the rate of cooling.  To solve the differential equation we need the decay constant, k, which short of going and measuring it experimentally it I'm not sure how to derive.]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130953#Comment_130953</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130953#Comment_130953</guid>
		<pubDate>Thu, 19 Jan 2012 16:39:07 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[But we're only looking for rough orders of magnitude.<br /><br />Anyway, supposing we did want a bit more precision then the maths is probably not too hard but using a computer is even easier:<br /><br />&gt; function tempLossRate(temp) { return 0.16/255 * temp; }<br />&gt; var dT = 1.0;<br />&gt; var t = 0.0;<br />&gt; for (var temp = 60; temp &gt; 0; temp -= dT) {<br />...  console.log(temp, t);<br />...  t += dT / tempLossRate(temp);<br />... }<br />60 0<br />59 26.562499999999996<br />58 53.575211864406775<br />57 81.05366014026885<br />56 109.01418645605833<br />55 137.47400788462977<br />54 166.4512806119025<br />53 195.96516950079138<br />52 226.0359242177725<br />51 256.68496267931096<br />50 287.93496267931096<br />49 319.80996267931096<br />48 352.3354728833926<br />47 385.5385978833926<br />46 419.4481723514777<br />45 454.0949114819125<br />44 489.5115781485792<br />43 525.7331690576701<br />42 562.7971225460423<br />41 600.7435511174708<br />40 639.615502336983<br />39 679.459252336983<br />38 720.3246369523677<br />37 762.2654264260518<br />36 805.3397507503762<br />35 849.6105840837096<br />34 895.1462983694239<br />33 942.0212983694239<br />32 990.3167529148784<br />31 1040.1214404148784<br />30 1091.5327307374591<br />29 1144.6577307374591<br />28 1199.6146272891833<br />27 1256.5342701463262<br />26 1315.562047924104<br />25 1376.860124847181<br />24 1440.610124847181<br />23 1507.016374847181<br />22 1576.3098531080504<br />21 1648.7530349262322<br />20 1724.6458920690893<br />19 1804.3333920690893<br />18 1888.2149710164576<br />17 1976.7566376831244<br />16 2070.5066376831246<br />15 2170.1160126831246<br />14 2276.3660126831246<br />13 2390.2052983974104<br />12 2512.801452243564<br />11 2645.613952243564<br />10 2790.5003158799277<br />9 2949.8753158799277<br />8 3126.958649213261<br />7 3326.177399213261<br />6 3553.8559706418328<br />5 3819.4809706418328<br />4 4138.230970641833<br />3 4536.668470641833<br />2 5067.918470641833<br />1 5864.793470641833<br />7458.543470641833<br /><br />So it's down to 40 Â°C after 10 minutes, at 20 Â°C after half an hour and 6 Â°C after an hour.]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130964#Comment_130964</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130964#Comment_130964</guid>
		<pubDate>Thu, 19 Jan 2012 17:05:59 +0000</pubDate>
		<author>JSHarris</author>
		<description>
			<![CDATA[Looks reasonable as an approximation, although I'd still like to measure the rate of cooling to get a feel for the value for the decay constant, k  in the cooling equation, dT/dt  = k.(T1 - T2)]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130972#Comment_130972</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130972#Comment_130972</guid>
		<pubDate>Thu, 19 Jan 2012 17:20:34 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[Doesn't k = 0.16/255 = 0.000627 K/(sÂ·K) = 0.000627 sâ»Â¹ ?]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130975#Comment_130975</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=130975#Comment_130975</guid>
		<pubDate>Thu, 19 Jan 2012 17:34:20 +0000</pubDate>
		<author>JSHarris</author>
		<description>
			<![CDATA[&lt;blockquote&gt;&lt;cite&gt;Posted By: Ed Davies&lt;/cite&gt;Doesn't k = 0.16/255 = 0.000627 K/(sÂ·K) = 0.000627 sâ»Â¹ ?&lt;/blockquote&gt;<br /><br />Yes, possibly, but the reasons I'd like to do a measurement to confirm it are that the U value of the insulation will vary with temperature a bit (the range is outside that where we can presume it's reasonably constant, I think) and the copper pipe will add a small bit of thermal capacity.  It's probably a moot point, anyway, as there are undoubtedly much big sources of performance variation in any given system.<br /><br />I remember calculating the rate of heat loss for a cup of tea years ago (trying to demonstrate that putting the milk in first kept the tea hotter for longer to resolve a small domestic disagreement) only to find that the actual rate of cooling when I did the experiment (two identical mugs filled with hot water one with milk, the other without, and a data logger hooked up to two temperature probes) was quite a lot different in practice to that predicted.]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131004#Comment_131004</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131004#Comment_131004</guid>
		<pubDate>Thu, 19 Jan 2012 22:21:29 +0000</pubDate>
		<author>TimSmall</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: JSHarris</cite>but the saving is so modest when compared to 15 mm pipe that I doubt it's worth worrying about unduly</blockquote><br /><br />It is a small effect overall, but given that (assuming that you've decided to use copper anyway) - the 10mm is both much easier to install than the 15mm and also better performing, why bother with the 15mm?]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131019#Comment_131019</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131019#Comment_131019</guid>
		<pubDate>Thu, 19 Jan 2012 23:33:04 +0000</pubDate>
		<author>djh</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: Ed Davies</cite>13 2390.2052983974104</blockquote><br />Impressive precision!<br /><br /><blockquote >Crude approximation by ignoring the fact that there's less area on the inside of the insulation than the outside</blockquote><br />There's a specific formula for the Y-value of pipe insulation (I think they're called Y-values when they are linear rather than U-values for areas). I expect it's on the Navi site somewhere or else google will throw it up. I do remember there are magic values involved ('critical radius').<br /><br />And Tim, yes!]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131056#Comment_131056</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131056#Comment_131056</guid>
		<pubDate>Fri, 20 Jan 2012 10:34:08 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: djh</cite><br />Impressive precision!</blockquote><br /><br />Well, yes, I did wonder if +/- 1 microsecond would be good enough. <img src="/newforum/extensions/Vanillacons/smilies/standard/bigsmile.gif" alt=":bigsmile:" title=":bigsmile:" /> <br /><br /><blockquote ><br />There's a specific formula for the Y-value of pipe insulation (I think they're called Y-values when they are linear rather than U-values for areas). I expect it's on the Navi site somewhere or else google will throw it up. I do remember there are magic values involved ('critical radius').<br /></blockquote><br /><br />Yes, I have seen that somewhere but was just doing a quick and dirty calculation so didn't bother to search. It's a bit magic as I recall as it only needs the ratio of the inner and outer radii, not the absolute values, as the scale cancels with the circumferences if you see what I mean.<br /><br />Yep, Wikipedia says:<br /><br />http://en.wikipedia.org/wiki/Pipe_insulation#Heat_flow_calculations_and_R-value<br /><br />This has some significance here. 20 mm of insulation on a 10 mm pipe will be coming up to twice as effective (from the W/(mÂ·K) point of view) as 20 mm of insulation on a 22 mm pipe.]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131105#Comment_131105</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131105#Comment_131105</guid>
		<pubDate>Fri, 20 Jan 2012 13:29:23 +0000</pubDate>
		<author>djh</author>
		<description>
			<![CDATA[It's even more magic than that. Adding a bit of insulation to a pipe actually makes it lose MORE heat than before. The rate of heat loss increases up to the 'critical radius' and then starts decreasing. Some extra thickness later it gets back to just losing as much heat as the naked pipe and after that more insulation actually does something useful.<br /><br /><a href="http://www.raeng.org.uk/education/diploma/maths/pdf/exemplars_engineering/2_SteamPipe.pdf" target="_self" rel="nofollow">http://www.raeng.org.uk/education/diploma/maths/pdf/exemplars_engineering/2_SteamPipe.pdf</a><br /><br />(or see p72 of <a href="http://web.mit.edu/lienhard/www/ahtt.html" target="_self" rel="nofollow">http://web.mit.edu/lienhard/www/ahtt.html</a>)<br /><br />and just to illustrate what a dodgy place the internet is, have a look at this one, which gets it totally wrong: <a href="http://www.reviewpe.com/penotes/heat_t/b5_3.htm" target="_self" rel="nofollow">http://www.reviewpe.com/penotes/heat_t/b5_3.htm</a> and even wikipedia gets it partly wrong <a href="http://en.wikipedia.org/wiki/Heat_transfer#Critical_insulation_thickness" target="_self" rel="nofollow">http://en.wikipedia.org/wiki/Heat_transfer#Critical_insulation_thickness</a>]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131118#Comment_131118</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131118#Comment_131118</guid>
		<pubDate>Fri, 20 Jan 2012 14:30:56 +0000</pubDate>
		<author>wookey</author>
		<description>
			<![CDATA[That's quite remarkable, and most unintuitive. The maths in that paper had integrals in it which is where I always lose the plot. Why does a small amount of insulation make things worse?]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131122#Comment_131122</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131122#Comment_131122</guid>
		<pubDate>Fri, 20 Jan 2012 14:52:37 +0000</pubDate>
		<author>JSHarris</author>
		<description>
			<![CDATA[Thanks for posting those links.  Don't you just love it when you find something like that out?  I hadn't for a moment thought about the increase in surface area effect, but having read that I'm now sitting here scratching my head and wondering if dementia is setting in early.............]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131146#Comment_131146</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131146#Comment_131146</guid>
		<pubDate>Fri, 20 Jan 2012 17:24:03 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: wookey</cite>Why does a small amount of insulation make things worse?</blockquote><br /><br />DJH's last link (Wikipedia) explains it very succinctly.]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131163#Comment_131163</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131163#Comment_131163</guid>
		<pubDate>Fri, 20 Jan 2012 19:03:04 +0000</pubDate>
		<author>pmusgrove</author>
		<description>
			<![CDATA[Fascinating stuff but the good man from Rolls-Royce was interested in steam pipes of radii 60mm.  The graph we need to see is that relating to water at about 65C in a pipe of radii 15mm.  Has anyone worked those figures through the formula to find out the critical thickness of insulation?]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131515#Comment_131515</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131515#Comment_131515</guid>
		<pubDate>Sun, 22 Jan 2012 23:18:11 +0000</pubDate>
		<author>wookey</author>
		<description>
			<![CDATA[<blockquote >DJH's last link (Wikipedia) explains it very succinctly.</blockquote><br /><br />True, but he posted that with the caveat that it's 'partly wrong', so I wasn't sure how correct it was. So the explanation is that surface area increases faster than heat-transfer attenuation to start with. Fair enough. Now DJH needs to say what part is wrong.]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131588#Comment_131588</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131588#Comment_131588</guid>
		<pubDate>Mon, 23 Jan 2012 14:13:50 +0000</pubDate>
		<author>djh</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: wookey</cite>Now DJH needs to say what part is wrong.</blockquote><br />I already did, on the Talk page <img src="/newforum/extensions/Vanillacons/smilies/standard/bigsmile.gif" alt=":bigsmile:" title=":bigsmile:" /><br /><br />The description on this page is wrong.This sentence has the logic reversed "The point where the added resistance of increasing insulation thickness becomes overshadowed by the effect of increased surface area is called the critical insulation thickness." It should read "The point where the added resistance of increasing insulation thickness overcomes the effect of increased surface area is called the critical insulation thickness."]]>
		</description>
	</item>
	<item>
		<title>Copper or plastic pipe for solar thermal</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131678#Comment_131678</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=8426&amp;Focus=131678#Comment_131678</guid>
		<pubDate>Mon, 23 Jan 2012 19:59:05 +0000</pubDate>
		<author>crusoe</author>
		<description>
			<![CDATA[Pedantic semantics aside, plastic pipe (mlcp) is used in places with as much sun as Mallorca, and has survied several seasons to my knowedge.  I've had to add to such systems, and had to use the same material, to avoid ripping out and starting again.  But in principle, copper or ss - depending on your ideology - neither has massive advantages - are the materials for the job.<br /><br />Many panels stop at a max 180C, (30C direct sun, not your usual UK conditions) many have drainback, with oversize storage so temps can't reach stagnation levels, so use of plastic in some parts (return) of a system may be countenanced in future legislation.  But to be safe here, for all classes of reader, we're better sticking to metal.]]>
		</description>
	</item>
	
		</channel>
	</rss>