Jump to content

Recommended Posts

Posted · Replacing desiccant in the material manager

I'm thinking it's time to replace the desiccant in my material manager. It doesn't seem to be maintaining the 40% humidity level it is supposed to. 

I have a 5 lb jar of color changing desiccant beads that I could use. Are there any instructions for doing this? I seem to remember something not being shielded that I could zap myself on.  I think my warrantee was out around September so I won't be endangering anything regarding that.. 

 

  • Like 2
Link to post
Share on other sites

Posted · Replacing desiccant in the material manager

I have not disassembled the material station yet. But I almost suspect that there is no desiccant to be found there.

The humidity of the material station is in relation to the environment.


at 80% = 30%

at 70% = 20%


So you have a humidity of 90% (guessed) in the room.


I'm not worried about the MS.

  • Link to post
    Share on other sites

    Posted (edited) · Replacing desiccant in the material manager

    AFAIK there is silica gel in a metal enclosure packed with a heater element to regenerate the desiccant, along with some sensors and valves and a fan this is packed into a separate enclosure within the Material Station.
    it does not seem like it is easy to replace the silica gel inside, but the dehumidifier unit itself is separate unit and should be relatively easy to extract, once you open up the material station far enough which is a bit tricky.

    Edited by robinmdh
    • Like 1
    Link to post
    Share on other sites

    Posted · Replacing desiccant in the material manager

    it looked like molecular sieve not silica gel to me. Very delicate to replace since you have to open and properly reassemble that module @robinmdh mentioned. But the module itself is indeed easy to replace if you have a long or very short hex screwdriver.

  • Link to post
    Share on other sites

    Posted (edited) · Replacing desiccant in the material manager

    @Dim3nsioneer all the documentation I can find mentions silica Gel. which does fit with the heating and valves/fan switching directions when regenerating we see in the code. Even though I worked on the Material Station from the proof of principle onwards (not from the prototype stage), the dehumidifier was mostly handled by a separate team, so I could certainly be wrong.

    Edited by robinmdh
  • Link to post
    Share on other sites

    Posted · Replacing desiccant in the material manager
    On 11/3/2021 at 7:11 PM, kayakbabe said:

    I'm thinking it's time to replace the desiccant in my material manager. It doesn't seem to be maintaining the 40% humidity level it is supposed to. 

    I have a 5 lb jar of color changing desiccant beads that I could use. Are there any instructions for doing this? I seem to remember something not being shielded that I could zap myself on.  I think my warrantee was out around September so I won't be endangering anything regarding that.. 

     

    How do you know the humidity level?  Does the Material Station tell you this?

  • Link to post
    Share on other sites

    Posted (edited) · Replacing desiccant in the material manager
    On 11/21/2021 at 6:56 PM, toofy said:

    How do you know the humidity level?  Does the Material Station tell you this?

     

    On 11/25/2021 at 2:32 AM, UlrichC-DE said:

    I have installed an small air humidity meter. As a reference value is the NiceToHave

    the API does show the humidity value:

    http://<insert printer IP>/material-station-api/v1/material-station/ this returns a block of json data that includes the relative humidity as measured by the material station.
    
    currently for me that is:
    

      "current_humidity": 24.823999,
    the dehumidifier_status will also indicate if it is regenerating or drying

     

    example output:
    
    {
      "status": "operational",
      "current_humidity": 24.823999,
      "dehumidifier_status": "operational_drying",
      "door_opened": 0,
      "slots": [
        {
          "slot_index": 0,
          "material_guid": "44a029e6-e31b-4c9e-a12f-9282e29a92ff",
          "direction": 0,
          "material_selection_source": "RFID",
          "material_insertion_datetime": "2021-09-24T09:48:00",
          "status": "ready",
          "material_empty": 0,
          "material_remaining": 0.7471266666666666,
          "material_remaining_mm": 70836.0302122365
        },
        {
          "slot_index": 1,
          "material_guid": "40a273c6-0e15-4db5-a278-8eb0b4a9e293",
          "direction": 0,
          "material_selection_source": "RFID",
          "material_insertion_datetime": "2019-02-20T11:36:50",
          "status": "ready",
          "material_empty": 0,
          "material_remaining": 0.3941447384117807,
          "material_remaining_mm": 36486.623428299594
        },
        {
          "slot_index": 2,
          "material_guid": "c7005925-2a41-4280-8cdd-4029e3fe5253",
          "direction": 0,
          "material_selection_source": "RFID",
          "material_insertion_datetime": "2021-09-20T11:20:43",
          "status": "ready",
          "material_empty": 0,
          "material_remaining": 0,
          "material_remaining_mm": 0
        },
        {
          "slot_index": 3,
          "material_guid": "eff40bcf-588d-420d-a3bc-a5ffd8c7f4b3",
          "direction": 0,
          "material_selection_source": "RFID",
          "material_insertion_datetime": "2021-09-20T09:57:26",
          "status": "ready",
          "material_empty": 0,
          "material_remaining": 0.8312173333333334,
          "material_remaining_mm": 80100.72045390833
        },
        {
          "slot_index": 4,
          "material_guid": "2433b8fb-dcd6-4e36-9cd5-9f4ee551c04c",
          "direction": 1,
          "material_selection_source": "RFID",
          "material_insertion_datetime": "2021-10-20T11:11:13",
          "status": "ready",
          "material_empty": 0,
          "material_remaining": 0.006547999999999999,
          "material_remaining_mm": 620.8242143184884
        },
        {
          "slot_index": 5,
          "material_guid": "",
          "direction": 0,
          "material_selection_source": "",
          "material_insertion_datetime": "2019-02-16T11:28:58",
          "status": "new",
          "material_empty": 0,
          "material_remaining": -1,
          "material_remaining_mm": -1
        }
      ]
    }

     

    Edited by robinmdh
  • Link to post
    Share on other sites

    Posted · Replacing desiccant in the material manager

    It would be great if there was a way to check the humidity value from the Printer screen.

    This is something I just want to know from time to time.

    Checking the humidity value in general, after I changed a bunch of spools, etc.

    Doesn't feel very intuitive to manually check the API.

    • Like 3
    Link to post
    Share on other sites

    Posted · Replacing desiccant in the material manager

    Gero, has a great point, if the printer screen showed the humidity, it would help with troubleshooting esp when it is  intermittent or weird filament issues.

  • Link to post
    Share on other sites

    Posted · Replacing desiccant in the material manager

    I once had small dial gauges glued into the printer. The parts are quite cheap to buy in packs of five or ten.

     

    IMG_1271.thumb.JPG.fd05b2340982b86d783b55a4fc5f1725.JPG

     

    IMG_1272.thumb.JPG.f525eac89a9b76d192d987ffb86063da.JPG

     

    Had also already put real measuring devices into the station.  I know from this that the measurement results also fit reasonably well with the small humidity gauges.

     

    When the measured value in the station has risen to 40-50%, it takes hours until it drops to minimum again.

    It is also interesting to observe how the humidity behaves to the outside temperature.


    Many greetings

     

     

     

     

    • Like 1
    Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • Help Us Improve Cura – Join the Ultimaker Research Program
        🚀 Help Shape the Future of Cura and Digital Factory – Join Our Power User Research Program!
        We’re looking for active users of Cura and Digital Factory — across professional and educational use cases — to help us improve the next generation of our tools.
        Our Power User Research Program kicks off with a quick 15-minute interview to learn about your setup and workflows. If selected, you’ll be invited into a small group of users who get early access to features and help us shape the future of 3D printing software.

        🧪 What to Expect:
        A short 15-minute kickoff interview to help us get to know you If selected, bi-monthly research sessions (15–30 minutes) where we’ll test features, review workflows, or gather feedback Occasional invites to try out early prototypes or vote on upcoming improvements
        🎁 What You’ll Get:
         
        Selected participants receive a free 1-year Studio or Classroom license Early access to new features and tools A direct voice in what we build next
        👉 Interested? Please fill out this quick form
        Your feedback helps us make Cura Cloud more powerful, more intuitive, and more aligned with how you actually print and manage your workflow.
        Thanks for being part of the community,

        — The Ultimaker Software Team
        • 0 replies
      • Cura 5.10 stable released!
        The full stable release of Cura 5.10 has arrived, and it brings support for the new Ultimaker S8, as well as new materials and profiles for previously supported UltiMaker printers. Additionally, you can now control your models in Cura using a 3D SpaceMouse and more!
          • Like
        • 18 replies
    ×
    ×
    • Create New...