<?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>CuttingEdgeData</title>
	<atom:link href="https://cuttingedgedata.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>https://cuttingedgedata.com</link>
	<description>My WordPress Blog</description>
	<lastBuildDate>Sun, 21 Mar 2021 16:56:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Prevent &#8220;Elephant&#8217;s Foot&#8221; on 3D Prints with this openSCAD script</title>
		<link>https://cuttingedgedata.com/?p=231</link>
		<comments>https://cuttingedgedata.com/?p=231#comments</comments>
		<pubDate>Sun, 21 Mar 2021 16:56:27 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[3D Modeling]]></category>
		<category><![CDATA[3D Printing]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=231</guid>
		<description><![CDATA[Elephant&#8217;s Foot Compensator Elephants Foot: Have you ever had a model that refused to print without Elephants Foot? Have you [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="https://www.thingiverse.com/thing:4800868" rel="noopener" target="_blank">Elephant&#8217;s Foot Compensator</a></p>
<p>Elephants Foot:</p>
<p>Have you ever had a model that refused to print without Elephants Foot? Have you tried PrusaSlicer or Curas first layer compensation, but you still get Elephants Foot that extends several layers up into your print? This openSCAD script will take your existing model and will offset the bottom of your print for &#8220;n&#8221; number of layers. In other words, it will effectively make a custom chamfer around all perimeters. It will make outer perimeters &#8220;smaller&#8221; and inner perimeters (holes) &#8220;bigger&#8221;.</p>
<p>Note: This is an openSCAD script. To use it, you must have openSCAD installed on your computer. There will be an online version &#8220;soon&#8221; but for now, the openSCAD works well.</p>
<p>Note: This assumes you have an otherwise calibrated printer. It assumes that if, for example, you are printing a 20mm x 20mm x 20mm test cube that your results are really close to the desired measurements. But now, you have a specific model or specific filament that is causing you issues with Elephants Foot.</p>
<p>Note: Once you have this script running in openSCAD, literally drag your desired STL into the openSCAD Editor in the place that says &#8220;// LITERALLY DRAG and DROP your STL here&#8221;.</p>
<p>Note: There is a &#8220;customizer&#8221;. First, make sure that in &#8220;View&#8221;, &#8220;Hide Customizer &#8221; is not checked. Then make sure that the arrow where it says Parameters is pointed down and you will see the list of adjustable parameters.</p>
<p>Note: openSCAD has no idea where your STL is in 3d space. So, I recommend saving your model from Cura or PrusaSlicer. If it was centered in the slicer and saved from there, then this script &#8220;knows&#8221; where it is. So, save your model once from the slicer as a .STL file. Additionally, this script can compensate for several models at once. So, if you have 2 or 3 or more models on your build plate in Cura, select them all, and &#8220;save selected&#8221; as .STL, then all will be saved as one model</p>
<p>Note: This script uses &#8220;Offset&#8221; in openSCAD. It is totally possible, in the case of fine lines, that this could create ares of the model which no longer exist.</p>
<p>PARAMETERS</p>
<p>Number of Affected Layers &#8211; This is the number of layers that are seemingly affected by Elephants Foot. The script has a default of 4 but you can set this value to 1 or as high as you like. Please note that the higher the value, the longer it will take to render.</p>
<p>First Layer Height &#8211; Your Slicer Setting for First Layer. Default is 0.2, but it should work with any reasonable layer height.</p>
<p>LayerHeight &#8211; Your Slicer Setting for Layer Thickness. Default is 0.2, but it should work with any reasonable layer height.</p>
<p>Amount_To_Compensate = How Much Elephants Foot. Default is 0.4 but should work with nearly any reasonable value.</p>
<p>Printer_X_Dimension &#8211; Your Slicer Setting for Printer X Dimension. Default is 220, but should work for other printer bed dimensions. Use what ever value you use in your slicer.</p>
<p>Printer_Y_Dimension &#8211; Your Slicer Setting for Printer Y Dimension. Default is 220, but should work for other printer bed dimensions. Use what ever value you use in your slicer.</p>
<p>HOW TO USE:<br />
1 Determine the amount of compensation needed</p>
<p>I would load model into Cura or PrusaSlicer. Other slicers should work. Make a test print with No Elephants Foot Compensation. Now measure the bottom. If the bottom is larger than it is supposed to be, then you have Elephants Foot and that is why you are here.</p>
<p>Let&#8217;s say the model is supposed to measure 30mm directly across the X dimension. But the measured amount is 30.8mm, so we&#8217;d take the 30.8mm and subtract 30.00mm to get a total difference of 0.8mm. Since 0.8mm represents an amount on both sides of the model, we divide that by 2 to get an amount of elephants foot of 0.4mm. So 0.4 is the amount to compensate.</p>
<p>Now look at the test print from the side. Roughly, how many layers does that elephants foot creep up into the print? The worst I&#8217;ve had is 5 layers, but common is 3 or 4 layers. Just make a guess. 3 or 4 layers seem to render pretty fast, but much higher and it could take minutes to render. Still faster than trying to manually add a chamfer on any otherwise complex model</p>
<p>2 &#8211; Load model into openSCAD and set values</p>
<p>Now launch openSCAD. Once you have this script running in openSCAD, literally drag your desired STL into the openSCAD Editor in the place that says &#8220;// LITERALLY DRAG and DROP your STL here&#8221;.</p>
<p>There is a &#8220;customizer&#8221;. Make sure that the arrow where it says Parameters is pointed down and you will see the list of adjustable parameters.</p>
<p>-Set NumberOfAffectedLayers to the number of layers affected. Try 3 or 4 to start.</p>
<p>-Set FirstLayerHeight to the same value you use in your slicer. Mine is 0.2mm but set this to whatever value you will be slicing the model with.</p>
<p>-Set LayerHeight to the same value you use in your slicer. Mine is 0.2mm but set this to whatever value you will be slicing the model with.</p>
<p>-Set Amount_To_Compensate to the amount you calculated. I often use 0.4mm</p>
<p>-Set Printer_X_Dimension &#8211; Your Slicer Setting for Printer X Dimension. Default is 220</p>
<p>-Set Printer_Y_Dimension &#8211; Your Slicer Setting for Printer Y Dimension. Default is 220</p>
<p>3 &#8211; Render</p>
<p>Press F6 to render (or click on Design, then Render). Depending on the values, this may take several seconds or several minutes to render. But, it will create a new model with effectively a chamfer at the bottom</p>
<p>4 &#8211; Save model as STL</p>
<p>Be Sure to SPECIFY a NEW NAME so that you don&#8217;t overwrite your original model.</p>
<p>Now you are done compensating. You can go back to PrusaSlicer or Cura and load the new model and print it.</p>
<p>All the best &#8211; PLAnkles be gone!</p>
<div ><form target='_blank' action='https://www.paypal.com/cgi-bin/webscr' method='post'><input type='hidden' name='cmd' value='_donations' /><input type='hidden' name='business' value='KM2VYC2NERZ66' /><input type='hidden' name='item_name' value='' /><input type='hidden' name='item_number' value='' /><input type='hidden' name='currency_code' value='USD' /><input type='hidden' name='amount' id='amount_9d093858e58c2c3c551f7960212a91bb' value='' /><input type='hidden' name='no_note' value='0'><input type='hidden' name='no_shipping' value='1'><input type='hidden' name='notify_url' value='https://cuttingedgedata.com/wp-admin/admin-post.php?action=add_wpedon_button_ipn'><input type='hidden' name='lc' value='EN_US'><input type='hidden' name='bn' value='WPPlugin_SP'><input type='hidden' name='return' value='http://cuttingedgedata.com/?page_id=137' /><input type='hidden' name='cancel_return' value='http://cuttingedgedata.com' /><input class='wpedon_paypalbuttonimage' type='image' src='https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif' border='0' name='submit' alt='Make your payments with PayPal. It is free, secure, effective.' style='border: none;'><img alt='' border='0' style='border:none;display:none;' src='https://www.paypal.com/EN_US/i/scr/pixel.gif' width='1' height='1'></form></div>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=231</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nursing Tools scissors now available on Amazon</title>
		<link>https://cuttingedgedata.com/?p=222</link>
		<comments>https://cuttingedgedata.com/?p=222#comments</comments>
		<pubDate>Sat, 01 Sep 2018 20:41:41 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[3D Modeling]]></category>
		<category><![CDATA[3D Printing]]></category>
		<category><![CDATA[Nursing Tools]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=222</guid>
		<description><![CDATA[This was a very cool project that figuratively fell onto my doorstep. Actually, it knocked on my front door. My [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This was a very cool project that figuratively fell onto my doorstep. Actually, it knocked on my front door. My neighbor, Paul, who knew I was &#8220;into 3D printing and designing stuff&#8221; asked for my help with making a prototype for an idea. He wanted to incorporate a few concepts, like a light, ruler, and pupil measurement scale, along with an almost pliers like scalloped opening, into a pair of scissors. Together, we designed, made a prototype and got a design patent. The prototype was then modified slightly and is now in production and is available at Amazon.</p>
<p>Here is a photo showing the original in the upper left and the *almost* production version on the lower right.<br />
<a href="http://cuttingedgedata.com/wp-content/uploads/2018/09/NursingTools_Original_and_final.jpg"><img src="http://cuttingedgedata.com/wp-content/uploads/2018/09/NursingTools_Original_and_final-300x225.jpg" alt="NursingTools_Original_and_final" width="300" height="225" class="alignnone size-medium wp-image-223" /></a><br />
And see the listing at Amazon:<br />
<a href="https://www.amazon.com/Nursing-Scissors-Rechargable-intergated-Measurement/dp/B07DX8XTZ6/ref=sr_1_1_sspa?ie=UTF8&#038;qid=1533408375&#038;sr=8-1-spons&#038;keywords=Nursing+tools&#038;psc=1" target="_blank">https://www.amazon.com/Nursing-Scissors</a></p>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=222</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I LOVE 3D Printing</title>
		<link>https://cuttingedgedata.com/?p=215</link>
		<comments>https://cuttingedgedata.com/?p=215#comments</comments>
		<pubDate>Fri, 17 Feb 2017 19:38:47 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[3D Printing]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=215</guid>
		<description><![CDATA[I enjoy the process of engineering complex designs and printing them. I also enjoy sharing the process with others, whether [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I enjoy the process of engineering complex designs and printing them. </p>
<p><a href="http://cuttingedgedata.com/wp-content/uploads/2015/05/GearedPolyDone.jpg"><img src="http://cuttingedgedata.com/wp-content/uploads/2015/05/GearedPolyDone-293x300.jpg" alt="GearedPolyDone" width="293" height="300" class="alignnone size-medium wp-image-151" /></a></p>
<p>I also enjoy sharing the process with others, whether it&#8217;s a high school Project Make class, an Elementary School class or anyone else who has the genuine desire and interest to design and make things.</p>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=215</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making SVG files from gcode</title>
		<link>https://cuttingedgedata.com/?p=183</link>
		<comments>https://cuttingedgedata.com/?p=183#comments</comments>
		<pubDate>Sun, 12 Feb 2017 06:22:08 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=183</guid>
		<description><![CDATA[NEW SCRIPT &#8220;gCodeToSVG&#8221; Allows user upload gcode and make stepped grayscale svg images. To start using it, here is the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>NEW SCRIPT  &#8220;gCodeToSVG&#8221;<br />
Allows user upload gcode and make stepped grayscale svg images.</p>
<p>To start using it, here is the link:<br />
<a href="http://cuttingedgedata.com/gCodeToSVG/gCodeToSVG.html" target="_blank">gCodeToSVG.html</a></p>
<p>For description and instruction, click here:<br />
<a href="http://cuttingedgedata.com/?page_id=126">About gCodetoSVG</a></p>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=183</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gear Creation</title>
		<link>https://cuttingedgedata.com/?p=180</link>
		<comments>https://cuttingedgedata.com/?p=180#comments</comments>
		<pubDate>Sun, 12 Feb 2017 06:21:10 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=180</guid>
		<description><![CDATA[GearCreate2.0 allows user to create gears and save desired gear as .OBJ, .SVG and .PLT To start using it, here [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>GearCreate2.0 allows user to create gears and save desired gear as .OBJ, .SVG and .PLT</p>
<p><a href="http://cuttingedgedata.com/GearCreate/GearCreate.html"><img src="http://cuttingedgedata.com/form/20T_4TPI_20Ang_Gear_WithCent.svg" /></a></p>
<p>To start using it, here is the link:<br />
<a href="http://cuttingedgedata.com/GearCreate/GearCreate.html">http://cuttingedgedata.com/GearCreate/GearCreate.html</a></p>
<p>For description and instruction, click here:<br />
<a href="http://cuttingedgedata.com/?page_id=122" target="_blank">About GearCreate</a></p>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=180</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programs and Scripts</title>
		<link>https://cuttingedgedata.com/?p=177</link>
		<comments>https://cuttingedgedata.com/?p=177#comments</comments>
		<pubDate>Sun, 12 Feb 2017 06:17:53 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=177</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><iframe src="http://cuttingedgedata.com/me/StevePerlTk.html" width="100%" height="4000" frameborder="0" scrolling="no"></iframe></p>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=177</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gear Hearts on Etsy</title>
		<link>https://cuttingedgedata.com/?p=170</link>
		<comments>https://cuttingedgedata.com/?p=170#comments</comments>
		<pubDate>Sun, 12 Feb 2017 05:47:10 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=170</guid>
		<description><![CDATA[A few items now available on Etsy:]]></description>
				<content:encoded><![CDATA[<p>A few items now available on Etsy:</p>
<p><a href="https://www.etsy.com/shop/CuttingEdgeData" target="_blank"><img src="http://cuttingedgedata.com/wp-content/uploads/2015/05/Screen-shot-2017-02-09-at-3.33.32-PM-300x147.png" alt="Screen shot 2017-02-09 at 3.33.32 PM" width="300" height="147" class="alignnone size-medium wp-image-145" /></a></p>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=170</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Valentine&#8217;s Day Project</title>
		<link>https://cuttingedgedata.com/?p=157</link>
		<comments>https://cuttingedgedata.com/?p=157#comments</comments>
		<pubDate>Sun, 12 Feb 2017 05:12:57 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[3D Modeling]]></category>
		<category><![CDATA[3D Printing]]></category>
		<category><![CDATA[CNC]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=157</guid>
		<description><![CDATA[Here is a project for my wife-to-be that I just published on Inventables projects site. Valentine&#8217;s Day Project on Inventables [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Here is a project for my wife-to-be that I just published on Inventables projects site.</p>
<p><a href="http://cuttingedgedata.com/wp-content/uploads/2017/02/ValentineWaveHeart.jpg"><img src="http://cuttingedgedata.com/wp-content/uploads/2017/02/ValentineWaveHeart-300x225.jpg" alt="ValentineWaveHeart" width="300" height="225" class="alignnone size-medium wp-image-158" /></a></p>
<p><a href="https://discuss.inventables.com/t/a-project-for-valentines-day/33975" target="parent" >Valentine&#8217;s Day Project on Inventables Site</a></p>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=157</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOME</title>
		<link>https://cuttingedgedata.com/?p=1</link>
		<comments>https://cuttingedgedata.com/?p=1#comments</comments>
		<pubDate>Wed, 27 May 2015 17:37:40 +0000</pubDate>
		<dc:creator><![CDATA[strator]]></dc:creator>
				<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://cuttingedgedata.com/?p=1</guid>
		<description><![CDATA[With a passion for digital design and digital fabrication, Cutting Edge Data is your home for digital production. From 3D [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>With a passion for digital design and digital fabrication,<br />
Cutting Edge Data is your home for digital production. From 3D design to 3D printing, I can make your ideas come to life.</p>
<p>There will continue to be many changes and updates throughout the site, as I post pictures and links. Be sure to check back frequently.<br />
<a href="https://www.youtube.com/channel/UCmjUgSQDXMpUoDIHYbtlKnw" " target="_blank">Videos now on Youtube</a></p>]]></content:encoded>
			<wfw:commentRss>https://cuttingedgedata.com/?feed=rss2&#038;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
