Giter Site home page Giter Site logo

Comments (2)

fieldOfView avatar fieldOfView commented on June 29, 2024

That would create a gap (weakness) between the first and the second layer. Here's a visualisation in ASCII art:

A:     B:     C:
---    ___    ---
---    ___    ---
---    ___    ---
---    ___    ___

A is the normal gcode. B is what the Z-Offset plugin does. C is what you propose. Notice the distance between the bottom layer and the first layer above that.

from cura-zoffsetplugin.

cnaslain avatar cnaslain commented on June 29, 2024

I understand what you mean. Thanks for the ASCII art.

Let imagine the initial Z offset is -3.00 with a layer height of 0.20. To squash the 1st layer so it has a better grip with the board, I shift the Z offset using baby stepping by a value of -0.10 to -3.10, then at the end of the 1st layer I shift the z offset from +0.10 to -3.00 to reset the level to the origin.

Such manipulation is ultimately what you describe in ASCII art, isn't it?

Is this nonsense in 3D printing? Maybe a bad workaround to try and fix a stickiness problem?

I did a small print test of a small cylinder with the original plugin gcode:

...
;LAYER_COUNT:5
;LAYER:0
M107
G0 F5400 X111.79 Y115.005 Z0.10 ;adjusted by z offset
G92 Z0.2 ;consider this the original z before offset
;TYPE:SKIRT
...
;MESH:NONMESH
G0 F300 X148.48 Y125.711 Z0.4
...
;LAYER:1
...

The I did another test with adding a G92 just before the layer 1 move:

...
;LAYER_COUNT:5
;LAYER:0
M107
G0 F5400 X111.79 Y115.005 Z0.10 ;adjusted by z offset
G92 Z0.2 ;consider this the original z before offset
;TYPE:SKIRT
...
;MESH:NONMESH
G92 Z0.0 ;Back to original z coordinates system before offset <------------ ADDED -----------
G0 F300 X148.48 Y125.711 Z0.4
...
;LAYER:1
...

With the original code, at the beginning of the 2nd layer, the nozzle is too low and scratches on the 1st.
Adding the G92 Z0.0 before the head movement of the 2nd layer, I find that the impression of the 2nd layer is better.
An explanation?

from cura-zoffsetplugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.