So I recently entered into the amazing world of 3D printing, my wife bought me an Ultimaker 2+ for my birthday this year!  It has been a fascinating experience and a whole can of worms I never even knew existed.  I will say, the Ultimaker series is supposed to be the most “plug it in and print” printer out there (or at least among the top in that group) but there was still quite a learning curve and there was a lot of tuning involved.  This world if definitely not ready for non-tinkerers as getting things setup well takes patience and perseverance.  Once you have dialed it in, and are used to tuning and fixing issues it is a very, very fun ride.

The Ultimaker series printers are built by the folks who maintain the open source slicer Cura (the program that translates your 3d models into a file the printer can read) and thus the start you out using that slicer.  It is quite good and eases you into tuning the printer by only exposing the most important settings to you, and a few more in their advanced view, and hiding away some of the more complex settings by making you enable them in the preferences.  I was able to get some pretty decent prints out of it, and used it for quite awhile.  I did eventually find that Cura left some things to be desired.  With it slicing the models every time you move it the process was slow.  I also found the default settings were not optimal, and the built in bed leveling (this is on the Ultimaker) left something to be desired.  There are plenty of free slicers out there, but I decided to go for the gusto and bought Simplify3d.

Immediately I was greeted with more settings, smarter model healing (closing gaps) and much, much better support placement.  S3D also has a better bed leveling run than the printer default, and you are able to control much more of the printer from their application.  Now I have not tried many of the other slicers out there, so take my words with a grain of salt, but S3D immediately helped me get a better understanding of how the printer was working, what it planned to do at each layer, and much greater per layer control over my printer and generated gcode files than Cura could.  Overall I would say it has been worth the cost, though I do wish it let me register more than 2 machines (I currently have 2 desktops, my primary machine and the one I keep next to the printer, and my laptop) without purchasing more than one license, but such is life in the closed source world.

If you are thinking of getting into the world of 3D printing, and are a tinkerer, I would highly recommend it!  Though there are a lot of far more affordable printers out there.  The most highly recommended starter printer is the Prusa i3 MK2, which goes for about $700 for the build kit and ~$1000 for the pre-built unit.  I believe you can find knock offs for about half the price, if you look hard enough.

I will end this post with a complaint about Simplify3d though, and this may only apply to a small percentage of users anyway (Linux only) is that their Linux install leaves a lot to be desired.  It does not put a script or binary in a commonly executeable path, and you need to launch the application from the directory it was installed in.  This is inconvenient, and while I much prefer the CLI for most things, if I am launching an application frequently I’d prefer it to be on the bar somewhere.  So I’ll give you my process for getting it running.

  • First download and run their normal installer (this guide assumes you install to the default location)
  • Go into the install directory0
    • cd /opt/Simplify3D-3.1.1
      • Replace -3.1.1 with your version of S3D
  • Run the AddUserPermissions.sh script with sudo, or type in your password when prompted
    • Note, that this does some not very awesome things, it creates some root owned directories, and sets them to 777, you should go though and fix this with the following commands
    • sudo chown -R $USER:$USER $HOME/.local/share/Simplify3D
      sudo chmod go-w $HOME/.local/share/Simplify3D
      sudo chown -R $USER:$USER $HOME/.config/Simplify3D
      sudo chmod go-w $HOME/.config/Simplify3D
      
  • Create a file called s3d in /home/$USER/bin with the following contents
    • $USER is your username, you might need to create the bin directory
    • #!/bin/bash
      cd /opt/Simplify3D-3.1.1 # Replace 3.1.1 with your version
      ./LaunchScript.sh
      
  • As root create a launcher file (Ubuntu) for the Unity launcher
    • vim /usr/share/applications/s3d.desktop
    • [Desktop Entry]
      Type=Application
      Terminal=false
      Name=Simplify3d
      Icon=/opt/Simplify3D-3.1.1/icon.png
      Exec=/home/$USER/bin/s3d
      
    • Again replacing 3.1.1 with your version, and $USER with your username
  • Open a file explorer window and navigate to /usr/share/applications/
  • Find the s3d.desktop file, and drag it to the Unity launcher.
  • Voila!  You can now launch s3d from the Unity launcher like it is a real application!

I would probably recommend that instead of having the version hardcoded like above you should create a symlink called Simplify3D with no version in it that links to the currently installed version, so you can have more than one installed and switch back and forth by just pointing the symlink at a different directory, and then change the above files by removing the version (e.g. -3.1.1) from them and pointing them at the symlink.