If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
I have a taction plate but hairspray works on glass.
Make sure your extrusion rate is not too fast or the ABS does not get hot enough on some machines.
I print the coil so there is maximum area in contact with the plate also.
My printer is enclosed and that does help with thermal stability.
I have a taction plate but hairspray works on glass.
Make sure your extrusion rate is not too fast or the ABS does not get hot enough on some machines.
I print the coil so there is maximum area in contact with the plate also.
My printer is enclosed and that does help with thermal stability.
Quickly coming to realise that I need an enclosure. My workshop is not heated and can get cold overnight. ABS and ASA-X are both temperature sensitive. Seems the upper layers are cooling and contracting more quickly than the bottom layers thus causing the warping.
Unfortunately, Mrs B will not allow me to use my printer in the house.
Thanks for your help.
[ATTACH]57941[/ATTACH]
This might give you some idea home brew as you can see.
Regards, Ian.
Thanks Ian
The design I have in mind is very similar to yours. Aluminium angle frame, door at the front and removable sides. Must say that I envy the space you have. My workshop is quite small so the overall size of my enclosure will be just sufficient to house the printer. One challenge that I need to overcome is that the build plate moves forward on completion of the print. I either need to disable this function in software or design an auto opening door
Kind regards
Martin
The design I have in mind is very similar to yours. Aluminium angle frame, door at the front and removable sides. Must say that I envy the space you have. My workshop is quite small so the overall size of my enclosure will be just sufficient to house the printer. One challenge that I need to overcome is that the build plate moves forward on completion of the print. I either need to disable this function in software or design an auto opening door
Kind regards
Martin
You might be able to stop your build plate moving by modifying the gcode before printing file ... this is an example end of print code ... dunno what yours will say.
Edit the G1 Y200 line ??
eg
M104 S0 ;extruder heater off
G91 ;relative positioning
G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
G28 X0 ;move X to min endstop, so the head is out of the way
G90 ;absolute positioning
G1 Y200 ;Move bed forward
M84 ;steppers off
You might be able to stop your build plate moving by modifying the gcode before printing file ... this is an example end of print code ... dunno what yours will say.
Edit the G1 Y200 line ??
eg
M104 S0 ;extruder heater off
G91 ;relative positioning
G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
G28 X0 ;move X to min endstop, so the head is out of the way
G90 ;absolute positioning
G1 Y200 ;Move bed forward
M84 ;steppers off
Thanks moodz,
My first venture into G- Code. Please see comment I have added to line G1 X0 Y220 ;Present print
M140 S0
G91 ;Relative positioning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positioning
G1 X0 Y220 ;Present print I believe it is this one. Do I delete or Edit. If I edit, what do I write?
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bed
You might be able to stop your build plate moving by modifying the gcode before printing file ... this is an example end of print code ... dunno what yours will say.
Edit the G1 Y200 line ??
eg
M104 S0 ;extruder heater off
G91 ;relative positioning
G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
G28 X0 ;move X to min endstop, so the head is out of the way
G90 ;absolute positioning
G1 Y200 ;Move bed forward
M84 ;steppers off
Hi moodz
Think I have just answered my own question.
G1 X0 Y220; If I go into printer settings and change the value of Y to that of the home position, then the bed will not move forwards at the end of print
Comment