{"id":666,"date":"2020-07-29T19:06:44","date_gmt":"2020-07-29T23:06:44","guid":{"rendered":"http:\/\/www.mbeckler.org\/blog\/?p=666"},"modified":"2020-07-29T19:06:44","modified_gmt":"2020-07-29T23:06:44","slug":"3d-printable-blower-adapter-for-platypus-filter-hoses","status":"publish","type":"post","link":"https:\/\/www.mbeckler.org\/blog\/?p=666","title":{"rendered":"3D printable blower adapter for Platypus filter hoses"},"content":{"rendered":"\n<p>I just returned from a trip into the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Boundary_Waters_Canoe_Area_Wilderness\">Boundary Waters Canoe Area Wilderness<\/a>  (BWCA) where we had good luck using my <a href=\"https:\/\/www.rei.com\/product\/849793\/platypus-gravityworks-filter-system-bottle-kit-2-liter\">Platypus gravity water filter<\/a> to easily produce safe water for drinking and cooking. When I return home from such a trip, I want to clean, disinfect, and dry out the bags and hoses to get them ready for the next expedition. I&#8217;ve often thought that it would be useful to have a source of high-volume, low-pressure airflow for drying out these sorts of things (also beer brewing equipment and hoses), but now I&#8217;ve finally found a good solution.<\/p>\n\n\n\n<p><strong>I realized that the little inflator for our air mattress would be a great source of airflow, and that I could probably 3D print a set of adapter nozzles for each type of hose I want to dry out. Here&#8217;s the first adapter, for my Platypus filter hoses.<\/strong><\/p>\n\n\n\n<p>The design is in <a href=\"https:\/\/www.openscad.org\/\">Open SCAD<\/a>, a free and open source parametric 3D modeling program that works great for simple geometric models. Once you install OpenSCAD you can copy\/paste this code into OpenSCAD and build the model and export an STL. Hopefully you should be able to customize the sizes to adjust for a differently-size blower output or hose diameter:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ units = mm\n$fn=64;\n\n\/\/ blower output is 25mm diameter, 12mm along shaft\n\/\/ platypus hose ID is 6mm but the filter barbs are 8.9mm, so... 7mm?\n\n\/\/ Design intent:\n\/\/ Build an outer union and subtract a similar but smaller inner union\n\/\/ Each union is two cylinders connected by a sloping cylinder:\n\/\/ AAAB\n\/\/     B\n\/\/      B\n\/\/       BCCC\n\/\/\n\/\/       BCCC\n\/\/      B\n\/\/     B\n\/\/ AAAB\n\n\/\/ Some variables to adjust the design\nwide_ID = 25; \/\/ Wide end, inner diameter\nwide_OD = 30; \/\/ Wide end, outer diameter\nnarrow_ID = 4; \/\/ Narrow end, inner diameter\nnarrow_OD = 7; \/\/ Narrow end, outer diameter\nwide_h = 12; \/\/ Wide end height before angled part\nangled_h = 12; \/\/ Angled part height\nnarrow_h = 6; \/\/ Narrow end height before angled part\n\ndifference() {\n    \/\/ outer part\n    union() {\n        cylinder(h=wide_h,d=wide_OD);\n        translate(&#91;0,0,wide_h])\n            cylinder(h=angled_h,d1=wide_OD,d2=narrow_OD);\n        translate(&#91;0,0,(wide_h + angled_h)])\n            cylinder(h=narrow_h,d=narrow_OD);\n    };\n\n    \/\/ inner part to be subtracted\n    union() {\n        translate(&#91;0,0,-1])\n            cylinder(h=(wide_h + 1),d=wide_ID);\n        translate(&#91;0,0,wide_h])\n            cylinder(h=angled_h,d1=wide_ID,d2=narrow_ID);\n        translate(&#91;0,0,(wide_h + angled_h)])\n            cylinder(h=(narrow_h + 1),d=narrow_ID);\n    };\n};<\/code><\/pre>\n\n\n\n<p>If you add a <code>#<\/code> before the union for the inner part to be subtracted, the OpenSCAD interface will show that component in translucent red:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"333\" height=\"370\" data-attachment-id=\"667\" data-permalink=\"https:\/\/www.mbeckler.org\/blog\/?attachment_id=667\" data-orig-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image.png\" data-orig-size=\"333,370\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-270x300.png\" data-large-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image.png\" src=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image.png\" alt=\"\" class=\"wp-image-667\" srcset=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image.png 333w, https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-270x300.png 270w\" sizes=\"auto, (max-width: 333px) 100vw, 333px\" \/><\/figure>\n\n\n\n<p>Render the design (<code>F6<\/code> key) and export to STL (<code>F7<\/code> key), then slice and print. <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"662\" height=\"581\" data-attachment-id=\"668\" data-permalink=\"https:\/\/www.mbeckler.org\/blog\/?attachment_id=668\" data-orig-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-1.png\" data-orig-size=\"662,581\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-1\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-1-300x263.png\" data-large-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-1.png\" src=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-1.png\" alt=\"\" class=\"wp-image-668\" srcset=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-1.png 662w, https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-1-300x263.png 300w\" sizes=\"auto, (max-width: 662px) 100vw, 662px\" \/><\/figure>\n\n\n\n<p>You may need to adjust the parameters to obtain a perfect fit with your specific equipment.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"638\" data-attachment-id=\"669\" data-permalink=\"https:\/\/www.mbeckler.org\/blog\/?attachment_id=669\" data-orig-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-2.png\" data-orig-size=\"1183,737\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-2\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-2-300x187.png\" data-large-file=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-2-1024x638.png\" src=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-2-1024x638.png\" alt=\"\" class=\"wp-image-669\" srcset=\"https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-2-1024x638.png 1024w, https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-2-300x187.png 300w, https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-2-768x478.png 768w, https:\/\/www.mbeckler.org\/blog\/wp-content\/uploads\/2020\/07\/image-2.png 1183w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>I just returned from a trip into the Boundary Waters Canoe Area Wilderness (BWCA) where we had good luck using my Platypus gravity water filter to easily produce safe water for drinking and cooking. When I return home from such a trip, I want to clean, disinfect, and dry out the bags and hoses to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[88],"tags":[],"class_list":["post-666","post","type-post","status-publish","format-standard","hentry","category-3d-printing"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p2BznB-aK","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/666","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=666"}],"version-history":[{"count":1,"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/666\/revisions"}],"predecessor-version":[{"id":670,"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/666\/revisions\/670"}],"wp:attachment":[{"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=666"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=666"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mbeckler.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=666"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}