Edges of recengular shapes are OK, but circles are disaster October 29, 2015 02:10PM |
Registered: 9 years ago Posts: 38 |
Re: Edges of recengular shapes are OK, but circles are disaster October 29, 2015 03:03PM |
Registered: 9 years ago Posts: 310 |
Re: Edges of recengular shapes are OK, but circles are disaster October 30, 2015 03:52AM |
Registered: 9 years ago Posts: 5,232 |
Re: Edges of recengular shapes are OK, but circles are disaster October 30, 2015 05:29AM |
Registered: 9 years ago Posts: 38 |
Quote
deaconfrost
you have the Z stepping calibrated properly? and extruder stepping.
it looks like theres a problem on every part of the printed object rather than just the circular part
Quote
deaconfrost
What layer height and nozzle diameter did you use? It looks like you try to print 0.4 layer height with a 0.4 nozzle..
-Olaf
Re: Edges of recengular shapes are OK, but circles are disaster October 31, 2015 06:30AM |
Registered: 9 years ago Posts: 38 |
Re: Edges of recengular shapes are OK, but circles are disaster October 31, 2015 07:11AM |
Registered: 10 years ago Posts: 14,684 |
Re: Edges of recengular shapes are OK, but circles are disaster October 31, 2015 07:54AM |
Registered: 9 years ago Posts: 38 |
Quote
dc42
Looks to me that you have backlash in the mechanism, or too much friction, or too little stepper motor torque. What is the rated current of your Nema 17 motors, and what current are you running them at?
Also, do you see a lot of short pauses during printing?
; Configuration file for RepRap Mendel 3 ; RepRapPro Ltd ; ; Copy this file to config.g if you have a Mendel 3 ; If you are updating a config.g that you already have you ; may wish to go through it and this file checking what you ; want to keep from your old file. ; ; For G-code definitions, see [reprap.org] ; M111 S0 ; Debug off M550 xxxxx ; Machine name (can be anything you like). With DHCP enabled connect to (example) [reprappromendel3] (machine name with no spaces). M551 Preprap ; Machine password (currently not used) M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0x14 ; MAC Address ;M552 P0.0.0.0 ; Un-comment for DHCP M552 P192.168.1.21 ; IP address, comment for DHCP M553 P255.255.255.0 ; Netmask M554 P192.168.1.1 ; Gateway, comment for DHCP M555 P2 ; Set output to look like Marlin G21 ; Work in millimetres G90 ; Send absolute corrdinates... M83 ; ...but relative extruder moves M906 X1400 Y1400 Z1400 E800 ; Set motor currents (mA) M305 P0 R4700 ; Set the heated bed thermistor series resistor to 4K7 M305 P1 R4700 ; Set the hot end thermistor series resistor to 4K7 M569 P0 S0 ; no Reverse the X motor M569 P2 S0 M569 P3 S1 ; Reverse the extruder motor (T0) M569 P4 S0 ; Reverse the extruder motor (T1) M569 P5 S0 ; Reverse the extruder motor (T2) M92 X158 Y158 Z1280 M574 X2 S1 M574 Y2 S1 M574 Z2 S1 M92 E97 ; Set extruder steps per mm M558 P0 ; ;G31 Z0.8 P600 ; Set the probe height and threshold (deliberately too high to avoid bed crashes on initial setup) M556 S75 X0 Y0 Z0 ; Put your axis compensation here M201 X250 Y250 Z50 E500 ; Accelerations (mm/s^2) M203 X7000 Y7000 Z800 E3600 ; Maximum speeds (mm/min) M566 X200 Y200 Z30 E20 ; Minimum speeds mm/minute M563 P0 D0 H1 ; Define tool 0 G10 P0 S-273 R-273 ; Set tool 0 operating and standby temperatures ;M563 P1 D1 H2 ; Define tool 1, uncomment if you have a dual colour upgrade ;G10 P1 S-273 R-273 ; Set tool 1 operating and standby temperatures, uncomment if you have a dual colour upgrade ;M563 P2 D2 H3 ; Define tool 2, uncomment if you have a tri colour upgrade ;G10 P2 S-273 R-273 ; Set tool 2 operating and standby temperatures, uncomment if you have a dual colour upgrade
Re: Edges of recengular shapes are OK, but circles are disaster October 31, 2015 07:55AM |
Registered: 9 years ago Posts: 778 |
Re: Edges of recengular shapes are OK, but circles are disaster October 31, 2015 08:22AM |
Registered: 9 years ago Posts: 38 |
Re: Edges of recengular shapes are OK, but circles are disaster October 31, 2015 08:25AM |
Registered: 10 years ago Posts: 14,684 |
Quote
usen
Yes, I thought about the backlash. I use Nema 17 Stepper Motor (Model:42BYGHM809);
48 n/cm torque
3 Voltage
1.7 Amper
1.8 ohm
G-Code is below:
...
M906 X1400 Y1400 Z1400 E800 ; Set motor currents (mA)
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 03:40AM |
Registered: 9 years ago Posts: 38 |
Quote
dc42
Quote
usen
Yes, I thought about the backlash. I use Nema 17 Stepper Motor (Model:42BYGHM809);
48 n/cm torque
3 Voltage
1.7 Amper
1.8 ohm
G-Code is below:
...
M906 X1400 Y1400 Z1400 E800 ; Set motor currents (mA)
Your motor torque should be OK as you are running your 1.7A motors at 1.4A. Actually, 1.4A for all three axes is rather high for a Duet, so I suggest you use a fan to cool the Duet PCB if you don't already.
Try jogging the head 0.1mm at a time in the X and Y directions. Can you see the head move on each jog, or do you sometimes have to jog it 2 or 3 times before the head moves?
Also I agree with the previous comment that the extrusion looks uneven in volume.
Finally, I see that your print is shorter than the one you are comparing it to. This could indicate that your Z axis is sometimes missing steps. Try reducing the Z max speed from 800 to 250 in the M203 command, and the Z acceleration from 50 to 20 in the M201 command.
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 04:49AM |
Registered: 9 years ago Posts: 778 |
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 04:53AM |
Registered: 10 years ago Posts: 14,684 |
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 05:33AM |
Registered: 9 years ago Posts: 445 |
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 10:43AM |
Registered: 9 years ago Posts: 38 |
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 10:49AM |
Registered: 9 years ago Posts: 445 |
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 11:00AM |
Registered: 9 years ago Posts: 38 |
Quote
Koenig
The round object is it 15mm in all directions?
What are the measurements of the biggest square in both directions?
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 11:16AM |
Registered: 9 years ago Posts: 445 |
Quote
usen
Quote
Koenig
The round object is it 15mm in all directions?
What are the measurements of the biggest square in both directions?
From bottom to top layer: 14.92 - 14.95 - 14.96 - 15 - 14.97 mm
Square size:
10x10x15 mm
20x20x10 mm
30x30x5 mm (I measured 29.63x29.75x4.92 mm)
Cylinder size:
D15xH15
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 11:38AM |
Registered: 9 years ago Posts: 38 |
Quote
Koenig
Quote
usen
Quote
Koenig
The round object is it 15mm in all directions?
What are the measurements of the biggest square in both directions?
From bottom to top layer: 14.92 - 14.95 - 14.96 - 15 - 14.97 mm
Square size:
10x10x15 mm
20x20x10 mm
30x30x5 mm (I measured 29.63x29.75x4.92 mm)
Cylinder size:
D15xH15
So you need to adjust your XY steps some (based on your measurements on the big square)
Perhaps your Z steps as well.
It also looks like some under extrusion on your perimeters, might need to calibrate the extruder as well.
Post your slicer settings to see if there's anything there.
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 12:50PM |
Registered: 10 years ago Posts: 14,684 |
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 12:53PM |
Registered: 9 years ago Posts: 445 |
Re: Edges of recengular shapes are OK, but circles are disaster November 06, 2015 04:51PM |
Registered: 9 years ago Posts: 445 |
Quote
dc42
The reason I suggested printing calibration objects was not to check the sizes, but to look at the print quality. Your calibration object prints show the same holes in some places that you get with the dog.
Re: Edges of recengular shapes are OK, but circles are disaster November 08, 2015 04:37AM |
Registered: 9 years ago Posts: 38 |
Re: Edges of recengular shapes are OK, but circles are disaster November 08, 2015 05:59AM |
Registered: 9 years ago Posts: 778 |
Re: Edges of recengular shapes are OK, but circles are disaster November 15, 2015 10:09AM |
Registered: 9 years ago Posts: 38 |
Quote
Downunder35m
You have to measure what comes out of the extruder and adjust the stepping accordingly.
Works best with the cold extrusion prevent disabled in the firmware as you can play back and forth without the hotend and wasting filament.
Mark the filament and extrude 10mm - measure it.
It is not 10mm +-0.3mm already adjust the stepping a bit.
Extrude 30mm and check again.
If required adjust stepping.
Extrude 50mm and check.
Adjust stepping, check again, adjust stepping until you are spot on.
Re: Edges of recengular shapes are OK, but circles are disaster November 15, 2015 12:51PM |
Registered: 11 years ago Posts: 580 |
Re: Edges of recengular shapes are OK, but circles are disaster November 26, 2015 04:27AM |
Registered: 11 years ago Posts: 444 |
Re: Edges of recengular shapes are OK, but circles are disaster November 26, 2015 05:46PM |
Registered: 8 years ago Posts: 4 |
Re: Edges of recengular shapes are OK, but circles are disaster November 27, 2015 09:10AM |
Registered: 9 years ago Posts: 752 |
Re: Edges of recengular shapes are OK, but circles are disaster November 29, 2015 06:40AM |
Registered: 11 years ago Posts: 444 |