Close



Results 1 to 10 of 38

Thread: This could work

Hybrid View

  1. #1
    Technologist
    Join Date
    Oct 2013
    Posts
    110
    Great, sounds like we are indeed getting somewhere. As you've said, A_inner,internal = A_inner,external is the key requirement for it to work using the original syphon system. Unfortunately that means that the walls of the inner container need to have zero thickness - impossible.


    However, I did a quick check and actually it's not as bad as it looks. An old margarine container or something similar as the inner container gives you a wall thickness under 0.5mm. Say A_inner,internal = 100x100mm = 10,000mm². Then A_inner,external is 10,100.25mm² (assuming 0.5mm wall thickness). The resulting equation looks like:
    Code:
    h_print = V_transfer * 0.000001 + h_constant
    If you transfer 1L of water between the containers (V_transfer = 100*100*100 = 1000,000mm³) then the print height changes by a whole 1mm. In the mean time, the bottom of the container has fallen 100mm, so you've printed a 100mm high object. The focus change with a 1mm change in height isn't worth worrying about.




    The new idea is intruiging. I hadn't thought about using different density water in the containers. I think that'll definitely work, although getting the right densities could be rather painful (measuring density to high accuracy is difficult if you can't measure volume perfectly).

    For avoiding waves from the droplets, maybe what you need is a sort of Z-bend near the end of the pipe. That way, if a drop is falling freely down the middle of the pipe, it now gets attached to the wall and slides down there at a reasonably low speed.

  2. #2
    Quote Originally Posted by Slatye View Post
    Great, sounds like we are indeed getting somewhere. As you've said, A_inner,internal = A_inner,external is the key requirement for it to work using the original syphon system. Unfortunately that means that the walls of the inner container need to have zero thickness - impossible.


    However, I did a quick check and actually it's not as bad as it looks. An old margarine container or something similar as the inner container gives you a wall thickness under 0.5mm. Say A_inner,internal = 100x100mm = 10,000mm². Then A_inner,external is 10,100.25mm² (assuming 0.5mm wall thickness). The resulting equation looks like:
    Code:
    h_print = V_transfer * 0.000001 + h_constant
    If you transfer 1L of water between the containers (V_transfer = 100*100*100 = 1000,000mm³) then the print height changes by a whole 1mm. In the mean time, the bottom of the container has fallen 100mm, so you've printed a 100mm high object. The focus change with a 1mm change in height isn't worth worrying about.




    The new idea is intruiging. I hadn't thought about using different density water in the containers. I think that'll definitely work, although getting the right densities could be rather painful (measuring density to high accuracy is difficult if you can't measure volume perfectly).

    For avoiding waves from the droplets, maybe what you need is a sort of Z-bend near the end of the pipe. That way, if a drop is falling freely down the middle of the pipe, it now gets attached to the wall and slides down there at a reasonably low speed.

    So, if we calculate with a 500*500*700mm inner container, with 5mm wall, then
    Code:
    V_transfer = 500*500*700 = 1.75*10^8 mm^3
    h_print = V_transfer * (1/A_internal - 1/A_external) + h_constant
    V_transfer * (1/A_internal - 1/A_external) = 1.75*10^8 * (1/250000 - 1/255025) = 13.79mm
    If we assume the avarage "focus distance" at the middle of the surface is 500mm, then at the side of the surface its (500^2+250^2)^0.5 = 559.02mm, and at the corner its 612.37mm. (Its even worse if the printer is closer to the surface)
    In other words, the distance change from moving in the x-y pane is much more than what comes from the z-axis. So theres no point in making my second type, its too complex anyway.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •