Team 3D
This page is under construction. PLEASE STAND BY.
3D printer construction and maintanance team.
Proposals
This is a list of proposed suggestions, ideas, shenanagins, and other various odities that may be informative.
Proposed projects
TODO
Proposed plans
TODO
Long term print corner operations
TODO
Once most of the 3d printers are working at all well, we will have many working printers
As it is unlikley that all of them will be utilised continuously, and hackspace space isn't exactly in surplus, all of the printers need to serve at least some basic continuous purpose
- [Prusa] - Sitting and being awesome
- [Felix] - Rapid prototyping (IIRC it canout-pace the prusa)
- [BigBox] - MultiMat/Large form factor
- [MendelMax] - Large form factor + Prototyping
Procedures
These are standard procedures needed for printer setup/configuration
PLEASE: Check with a print maintainer before you mess with the printers. We like not returning to a tangled mess of broken printers and dreams.
PID Tuning
This is used to stop the fracking printers from fracking failing to fracking heat up.
MOST 3D printers use PID loops to maintain the hotend and bed temperature. PID loops are used to account for the slew that is heat transfer. If they don't they will laugh at you when you try to mess with PID.
AutoTune
Marlin and The RepRap wiki have some great docs on how to autotune PID.
To summarise so you don't need to read them you GENERALLY call:
M303 C<count> E<tool> S<temp> U1
For this command:
- The count is how many loops of pid tuning to run
- The tool is what you are tuning; Extruder number indexed from zero, OR -1 for bed
- The temp is the temp to calibrate at. I.e. if you are having stabiluity issues at 220C, then you want S220
- The U1 tells the printer to use this value instead of just printing it to console.
You then save with:
M500
If you have EEPROM enabled. Which you should
Pro-Tip: If your temperature plummets when the fans come on, enable the fans before performing a PID tune
Manual Tune
When autotune fails, manually tuning CAN work.
There are 3 pid values each meaning different things:
- The proportional factor - P - How much PID cares about the difference between target and current
- The integral factor - I - How much PID cares about the historical difference from the target
- The derivative factor - D - How much PID cares about the rate of aproach to the target
Some common problems solvable by this:
- Printer never reaches tempreture - Increase P
- Printer overshoots - Decrease P AND/OR Increase D
- TODO: MORE
Calibration Dump
The current printer calibration data can be dumped using an M503 command
This can then be copied to the wiki in a code block, such that any maintainer can access the wiki to restore the calibration, even if the one who calibrated it is no longer there.
TODO: MORE