Giter Club home page Giter Club logo

Comments (72)

necro-nemesis avatar necro-nemesis commented on August 12, 2024 2

printunderway

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024 1

pump design
pump design2
After doing some additional research I came across a design that was built and tested using a brushless RC motor. I suggest moving down this avenue. The drawing files and test footage are available.

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024 1

Hello, I'll just dump some notes here, maybe you find it helpful.

Nice overview of quadcopter motors:
https://oscarliang.com/quadcopter-motor-propeller/

wrt to the controller wonder it there would be benefit in using an Nodemcu vs Arduino in order to add in wifi capability possibly for monitoring and ota programming.

I think it's a good idea to have a ventilator controller MCU running code that is as simple to reason about as possible (having less code also helps). This means you can be more certain that you bug-free software. Software for flight control is written without any interrupts, as far as I know. You have simple loops, where tasks are done in sequence, and you can calculate the maximum possible running time for each task, so you won't run out of CPU time. Running a Wifi stack on FreeRTOS, for example, it's a pretty complex system. I made a proposal here: https://docs.google.com/document/d/1KpPWYRb1A637Cp5KIhhKtuGFS8Cdm5fGra3TTwwrBKo/edit#
I suggested having an control MCU, that can send and recieve simple binary messages over a UART. You could then connect an ESP32 up, and that could relay messages over Wifi or ethernet.

Also specs on the motor would be beneficial.

It's a bit tricky that drone motors come in all kinds of sizes. Best if a very common size can be used, as these will be easier to source. A notes:

CPAP motor is rated for 25W (Mike's blog).

See page 244 here:
https://www.aarc.org/wp-content/uploads/2014/11/19802-001-F-LTV-1200-and-1150-Ops-Manual.pdf
It's the specification for a centrifugal compressor ventilator. It says:
Nominal Power Draw. Startup: 66 watts. Running: 36 - 48 watts
By the specification, most any small quadcopter motor should be able to put out enough power, in terms of watts.

Bigger motors may have larger bearings that will deal with sustained use better. I think it's not easy to buy lousy bearings these days, it's a solved problem. But, 25k RPM, day in/day out..

Bigger motors have larger casings and may be able to dissipate heat better.
"when the motor overheats, the coating on the coil will start melting and causing electrical shorts inside the motor."

I see there are two formats for screw patterns on the base, 16x16 and 16x19mm. Easy solution, support both by putting holes for both in the turbine base, with one pattern offset 90 degrees to the other.

There are different propeller mounting arrangements on the motors. Perhaps choose M5 threaded shaft with locking nut? Four screws would also be ok, if the pattern is standard across motors. These little motors can put out terrific power though, that could tear appart 3d printed parts that have screw holes too tightly spaced together. A metal plate on top of the 3d printed part, that spreads the pressure from the screw heads over the surface of the 3d printed part, could help. In the case of the M5 shaft, a large washer could work.

RE no. of poles: "Different sizes motors have different number of poles, 22XX and 23XX motors generally have 12 poles and 14 magnets." Good if we can stick with one type, as the motor controller won't need to be configured for different types.

Regarding cost, I was hoping your design could be used in project I had in mind, described in the google doc (improved $50 ventilator, https://docs.google.com/document/d/1KpPWYRb1A637Cp5KIhhKtuGFS8Cdm5fGra3TTwwrBKo). If the motor is $10 or less online, retail, that's on target.

Browsing banggood.com, 2207 seems very common and inexpensive, on gearbest.com.. 2205 seems at the top. Perhaps a design that can accomodate either of these sizes (with a shim at the base of the motor?). Lot's of 3D models available for these motors: https://grabcad.com/library?utf8=%E2%9C%93&query=2205

Regarding aerodynamic design of the turbine, there's lots of information online. There are scaling laws about how to scale up a rotor design. I'm very rusty on this stuff. Here's a complete course for example: https://nptel.ac.in/courses/101101058/
And there are lots of textbooks.

However, there's a lot to pick up. If you aren't already familiar with it, here's a suggestion. Order one of every suitable compressor design you can find (ok, within reason). Mark knows the next step :-). Don't shed too many tears, you can be fairly sure the rotor design is a product of the same process. Then, benchmark the different rotors, in terms of output, noise, efficiency etc. Please allow me to contribute/cover the costs, email me on [email protected]

I assume the power requirements of the motor will dictate the supply voltage and the Arduino would be powered at 5vdc using a buck converter off that supply to keep things simple.

I think there's a good argument for operating at 12V, as it's easy to find 12V lead acid motorcycle battery with 1km of anyone who would need a $50 ventilator. On the other hand, Laptop power supplies are fairly good quality and everywhere, I think they output 18-22V usually. So not sure. I think maybe 12V is a better bet.

Cooling. Drawing air though the motor is important. The entry to the turbine is an area of low pressure.. behind the rotor, high pressure. You can use this to draw air through the motor, with the right design. Try make something that works with different motor can designs.

Focus on the design of the turbine 'bowl' and rotor.. the outer casing we can consider later as part of the overall design of the ventilator. For know, the outer casing could be minimal, to speed up printing. Maybe adjust overall dimensions slightly if it allows fitting more bowls/rotors on typical 200x200mm bed. There may be some stress concentrations near the root/center of the rotor, where it attaches to the motor. Add extra material here, use stress relief radiuses, and do FEA analysis, if you know how. I can also help with this later.

Is vibration an issue btw?

I suggest building a couple of devices, setting them up in front of a webcam, and running at 200% anicipated maximum load, and 400%, for example. Leave them running as long as possible, (probably noisey). See how it fails.

I hope there is something useful here. Thank you for your efforts.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024 1

You need to be more specific about what you want. The files as far as they are along are there. I'm not following this topic intently anymore to go back and see what you want in the context of any discussion. Probably this one I'm assuming. https://github.com/necro-nemesis/open-ventilator-centrifugal-pump/tree/dev/2205%20alternative. There's a whole thread on Slack with an open invite above if you want to read yourself in on where this went.

from ventilator.

Diodeus avatar Diodeus commented on August 12, 2024

Huh. I always expected the blower to be a positive-displacement vane pump.

from ventilator.

jcl5m1 avatar jcl5m1 commented on August 12, 2024

yes, this should work. Will add a link to the README.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

It appears a centrifugal pump has been used for this application. I concur with exploring the use of off an off the shelf brushless DC motor and 3d printed pump solution. I can see limited access to sufficient CPAP pumps being a criticial factor. Brushless DC motors though should be more readily available as is access to 3d printed parts.

wrt to the controller wonder it there would be benefit in using an Nodemcu vs Arduino in order to add in wifi capability possibly for monitoring and ota programming.

I don't have a CPAP pump in hand to try and 3d model and adapt a brushless dc motor to the design. If anyone comes up with drawings I can work to adapt a brushless motor to I'd appreciate it. Also specs on the motor would be beneficial. I am scouring the internet now looking for something I can work with.

Other designs I have looked at incorporate 3 electrically controlled check values with the pump inflating a diaphragm. Not certain this is requirement if the Arduino can reasonably moderate the flow but in other designs it appear on exhale the airflow goes out a separate route through a value unobstructed. Would there be the need to add a separate route? Is it possible to stop the centrifugal pump rotor at a position in it's rotation during exhale to allow a passageway in the pump to be open at that point in rotation?

https://www.cpap-supply.com/Articles.asp?ID=134

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

This design may be worthy of consideration. https://www.thingiverse.com/thing:39755

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

I couldn't find the exact specs on the original motor used in the CPAP blower I copied, but I was able to find something close by the same manufacturer and determined that it was a 24W motor. I can modify my CAD file to accommodate any motor you might have, can scale up the rotor and housing for more air flow, too.

That Thingiverse design looks like it's made to pump water, and uses a brush-type motor- bad news around O2 because of sparks. Brush type motors wear out quickly. In the CPAP blower, the motor was located inside the blower with the moving air which probably helped to keep the motor running at a low temperature.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

It was designed for air. You have a CAD design for the blower on the go?

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

https://a360.co/2I2Jz3Z

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

Yes for this to work I believe the approach has to be brushless motor for various reasons.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

https://a360.co/2I2Jz3Z

Brilliant I'll have a look. How can I assist you? BTW I am able to 3d print in addition to work in CAD so if you need something physically built to check fitment and operation I am able to do that.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I also code and am conversant with Arduino.

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

The motor linked on amazon is rated 1120kV, 2-4S. If you use 14V to drive it (~4S), you'll only get it up to 16k rpm or so. The motor from the CPAP machine was at least 2000kV. The impeller needs to spin at 20-25krpm at maximum output (to match the CPAP blower- but was that sufficient output for a ventilator?). You want to find a motor that's rated for 2000-4000kV, and uses 3S or 4S battery, preferably with ball bearings for long operating life.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

That sounds like a typical drone motor 2500kV if memory serves. I assume the power requirements of the motor will dictate the supply voltage and the Arduino would be powered at 5vdc using a buck converter off that supply to keep things simple. I was able to bring in your CAD files to work with them. I need to see if the motor is capable of 20-25krpm sustain operation. Unsure on this aspect.

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

I think this motor might be good: https://hobbyking.com/en_us/multistar-v-spec-1304-3100kv-multi-rotor-motor-ccw.html Not sure if the CW or CCW version is better- one of them has a left hand threaded prop mount...

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

Ha ha. You were looking over hobbyking at the same time I was. The issue with kv is that it doesn't take into account load so I'm not sure at this point how to calculate and apply the load to the equation. It may come down to some experimentation with a prototype pump. Should I commence building one from the drawings? I'm sure there will be several iterations built to get it adapted to ultimately the motor required. I have a couple here and an ESC to give me a baseline.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I have to dig. I have motor for an RC electric plane that might be suitable for testing. It has a single channel ESC with it I can hook to a receiver and run through it's paces on a bench. The drone motors I have on hand are 2250kv and 2600kv but I have a feeling this other one is bigger if I recall. Hard to imagine a CPAP machine would be as potent as what these motors deliver but possibly. I just have no basis to go by.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

@mrehorst is there a bearing in the housing or are you just utilizing the bearings within the motor?
exploded

I'm just looking at the 2 parts I've marked in blue. I am assuming they are part of the housing and spindle from a motor?

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

Those two parts are the motor assembly. The one on the bottom is the piece that the discs used to screw onto, and now the printed impeller screws onto it. I think I modeled them separately because I was considering separating them to mount the impeller directly on the motor shaft, which I never did. There are no extra bearings- just those that are built into the motor.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

For the proof of concept I was considering removing those two components. Sizing the inner diameter of the motor hole + clearances then using the screw in base mount configuration and collet used for propellers. The base and collet could be modeled in or just considered required items. See pic.
RC motor base and collet_

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

That sounds reasonable. I'd keep the motor body inside the blower to help cool the motor, and just add a hole for the wires. The hole can be sealed with a drop of silicone once the motor is installed.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

There are vanes on the tops of motor cases as the case rotates with the spindle. Some appear not to have vanes. I can look at having slots down the sides of the motor mount area to allow for air to flow around the motor. I am also assuming some pressure will be generated by the impeller that will leak between the impeller and the case and push down along the motor. In the process of re-drawing the base atm. Hope to post something reflecting this concept shortly.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I'm also going to have to make several design changes to make this 3d printable. I am hoping to arrive at a design that will not require support material. It will take a few iterations to get this broken down into that but that is the end state I am aiming for.

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

The procedure I used to copy the impeller is here.

The outrunner type motors are built inside out. I don't think you have to do anything special to cool them other than keep the motor inside the blower housing. There's probably enough air movement there to keep it cool.

I broke the original design into multiple pieces so that no support material would be needed. The nozzle prints as a separate piece so that different size nozzles could be used.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

Base revision 1 1b
Base revision 1 1a

I can't upload an .stl to the comment area to allow you to manipulate the drawing. There's a 3d repo under master branch. Suggest we either clone and PR it or start a separate repo where the designs can be shared.

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

I find it best in situations like this to model the motor first, then design the printed parts around it. I wouldn't bump out the housing that way, I extend the bottom of the housing to keep the whole motor inside it. Those slots on the sides are going to leak a lot of the air you're trying to push with the unit.

Can you post a model of the motor, or just a drawing with dimensions?

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

The motors seem to vary in length. The one I modeled around is 35mm tall from RC plane. The quadcopter ones appear to be 18mm tall. Both seem to be 28mm in diameter. To model the motor I just used a cylinder. I need to do some research to see if 28mm diameter is standard but yes a shorter motor would not protrude as far. 35mm is on the long side of these motors. I am thinking the motor house should thread into the case for two reasons. First this would allow for clearance adjustment and secondly it appears that this would allow the design to meet the no support critera. Let me see if refactoring for a shorter motor can achieve the requirement to not protrude from the case.

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

I thought you had a specific motor in-hand to try out. I guess it doesn't matter how long the motor is- just move the entire bottom of the case downward and you won't need any support material to print it.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

motorbase
motorbase2

Yes I'm prototyping around a motor in hand. At any rate here's a couple of pics using a shorter more drone specific motor to appreciate the proportions. This brings up the question of how universal to make the pump design and leads back to my original observations. The base plate cross pattern for the screws is common. The diameter's appear to be relatively common; additional clearance can be added to accomodate. The height of the motor may vary depending on which motor is acquired. Recommend the motor mount thread into the case and that motor mount designs of different lengths be available or the length of customizable simply by changing the length in CAD. If this seems satisfactory then I will go about drawing the thread for the motor to screw into the case.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

thread in mount3
thread in mount2
thread in mount

from ventilator.

fireb0lt avatar fireb0lt commented on August 12, 2024

Excellent work so far! Most ventilators use Micronel blowers, could we learn anything from their design? The trick is getting high static pressure. https://www.micronel.com/products/u-line/

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

exploded

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

https://www.youtube.com/watch?v=LQTW7RxqRWc

https://www.youtube.com/watch?v=-jO_tKHpZec

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

base design printable
I've modified the base design to make it printable without support by removing unneeded details and ensuring there isn't uprintable overhangs.

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

If you want to discuss on slack, I created a group. There are some people knowledgeable about aerodynamics and CFD on helpfulengineering.slack.com , they could be invited too.
https://join.slack.com/t/open-ventilator/shared_invite/zt-cwh6py1x-C5tO4JewMUf2tRN7rwWB~g

I'm trying to gather useful information here in doc, that allows people to get quickly up to speed. It's publically editable, you can record any important results or findings if you like:
https://docs.google.com/document/d/1KpPWYRb1A637Cp5KIhhKtuGFS8Cdm5fGra3TTwwrBKo/edit#

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I'm nearing the point of prototyping a unit. If you wouldn't mind I will press on as I'm spending most of my time with this design. I would like input on the impeller as the housings for centrifugal pumps appear to be rather consistent but if there's any recommendations regarding the impeller that is where I could use assistance. The remainder of my work is simply adapting the RC brushless type motor to the case which is nearing completion at this time. What has not been established is the required output of the pump. At least with a prototype in hand I can appreciate what may be required to obtain the required output.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

BTW the libs for various WiFi functionality, webserver, wifimanager etc. on an esp8266 are very fleshed out due to significant interest in it's use in IoT. I have used them and they have proven to be extensive, easy to use and reliable. If it's unnecessary complexity then I would say leave it but I certainly wouldn't be reluctant to use those libs.

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

Sure.
Impeller design, I would use Mark's technique with existing designs, unless you are familiar with the design of turbomachinery. I'm not, really.
Required output, I have read on a comment on helpfulengineering.slack.com , is 240L/min at 40cm H20. This really needs some research, looking at the specifications for ventilators and other soruces. Some effort will need to go into creating tooling to measuring turbine output. Further pressure drops will occur when passing air through tubing and other fittings.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I intend to 3d print this design to get some data from it. I have that capability.

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

Ok. The controller mcu is maybe a different issue, can be discussed elsewhere. I'll dissapear now and try help another group. Thanks.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

It is. I saw enough action on that front that I put myself to this task.

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

One more relevant specification here: https://www.britishchambers.org.uk/media/get/Specification%20For%20RMVS%20Challenge.pdf

Deliver at least 400ml of air/air 02 mix in no more than 1.5 seconds. The ability to change the
rate at which air is pushed into the patient is desirable but not essential.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

Removed extra bits a bobbles that didn't add to functionality. Trimmed the shell where it was disproportionately thick at the top. Re designed the top flat thus printable and stripped extra outer rings to reduce print time. Base has the legs removed flattened on the bottom. I've resized the dimensions to accommodate the RC motor I have on hand for testing purposes. Radius add for lofting to overhangs iot to print out without support. Time will tell if this will print without support or require any additional modification to to design. My experience tells me it should.
Revsied design

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

It looks pretty. So maybe we have a showdown. Does it walk the walk? :-)

Pressure is easy to measure with a column of water. Current use will a depend a bit on the ESC used, but maybe not too much. Noise meters are very cheap.. better if the same meter type (or same meter) is used to measure both designs. I was trying to think of a good way to measure the flow rate.

Maybe a 'peak flowrate meter' could give some idea.. cheap enough on Amazon.
image

Mark's design is perhaps a bit more compact? Around 10x10cm, so maybe 4 could be printed on a 20x20cm bed.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

Marks design (mrehorst?) would be faster to replicate. My concern with the design is wrt to the impeller in relation to the volute casing. Here's a pic of using transparency to showing how the impeller is located in relation to the case. Maybe Mark can chime in on the design and I can continue to work with it. I was ready to rework the impeller when I noted how much volume was open below it figuring he was still working the design.

profilepic

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

It's a working design, check out some posts on his blog: https://app.slack.com/client/TUTSYURT3/C010AM8S0D6

The extra space.. perhaps it helps reduces pressure fluctuations at the ouput a bit, by having a larger volume? Having a smaller space would even drop the efficiency a little, as the air would flow less easily from the edge of the rotor to the output. I don't think it harms anything, the air that passes the rotor blade is only going one place.. the output. :-)

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I'd like to hear more about that decision. I would have thought the impeller would sit lower and occupy more of the open volume within the volute casing. Where's James Dyson when you need him?

This:

lower impeller

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

increased iimpeller area

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

When I copied the CPAP blower, I copied the whole thing- the impeller (including the slope of the blades and the slope of the "roof", the case/volume, etc., with changes made to accommodate the motor I used. The original impeller was thin and fit in the top cover with a large, empty volume below it (except for the motor).

This thing is spinning at 20-30krpm. If the printed blades are tall, they may break due to centrifugal force. In the final design, there had better be something that will capture shards of plastic if the impeller disintegrates. You wouldn't want it blowing plastic bits into the patient's lungs...

I don't know how to design a turbine of this sort, but it isn't hard to believe they may have compromised output volume/pressure for quiet operation- it's for a machine that is used by people when they are asleep.

I have a couple other blowers I can take apart, photograph, and model just to get some idea of how they look. I'll be back in a couple hours.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I see. So based on a working design the open area below the impeller was already incorporated in the design. I'm thinking the only enhancement to the rotor may then be to leave the blades stout but more closely contour them to the volute casing profile. I know it axial flow turbines this case clearance is critical to performance but this is a centrifugal air pump it probably trades off flow for pressure and may be more reliant on centrifugal force to than creating a tight tolerance to the case. If you think there's merit in recontouring the blades to the case profile I can give that a shot and leave the rest as it stands with the motor adaptation. As was stated earlier the lower area would ultimately exit out mind you there may be some explanation wrt to turbulent airflow which would likely have been modeled and tested for mass production of such a pump.

What are all the laterally placed holes in the case for? A specific mounting application?

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

FWIW I prefer your design as it meets a critical requirement in terms of time to reproduce. The other design does not even with me trimming the design down.

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

@necro-nemesis I see you're really fast with CAD. Would you be interested in helping me develop concepts for the overal packing for 'open-ventilator' (https://github.com/hobodrifterdavid/open-ventilator/blob/master/README.md)? I made a channel on slack to discuss. I'll just take a bit of downtime first. https://join.slack.com/t/open-ventilator/shared_invite/zt-cwh6py1x-C5tO4JewMUf2tRN7rwWB~g

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I was. I'm troubleshooting my computer atm. I'll let you know when I'm up again. Software issue. Looks to be Windows update related. Way prefer Debian but my CAD is on this piece of crap.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

Ok. fixed my issue. Something with roaming data corruption it appeared. I'm back up and running. Joined Slack. With mrehorst's input on my impeller concern I believe the course of action I would like to take is the follow:

-Complete the RC motor mount redesign using the motor I have in hand using the stout impeller of the initial design.

-Examine where I can trim the design to reduce material and print time. (possibly post prototype)

-Revise where necessary to print without support material.

-Commence building of prototype to collect data on operation.

-Source a suitable anemometer to measure flow.

*If collected data provides satisfactory results.

-Model various suitable common RC motors.

-Generate versions of mount to accommodate a range of motors.

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

I took apart another CPAP machine made by ResMed. The blower is quite small and power input for the machine was 12V @ 2.5A, so the motor would probably be no more than 18-20W. The impeller design is quite different from the first one that I modeled and printed. The motor is an out-runner that is exposed to the moving air inside the housing. I've been messing around for an hour trying to model the case - it's a snail-like spiral that I can't figure out how to model with any accuracy. The impeller diameter is 52 mm and the inside diameter of the housing is 64.8 mm, so there's lots of room between the impeller and the case. The input port (the hole in the top cover) is 17.4 mm. The exit port is 15.5 mm ID, but it's flared a bit- I think the diameter of the exit at the inner surface of the housing is about 9.5 mm, but the shape is complex.

Here's a CAD model of the impeller and motor: https://a360.co/33BGX5u

Pictures here: https://drive.google.com/open?id=1hQaCXwzunUPwm1Hkt-IuBgTkKlh1zWyR

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

Can you take pic of the case convert it to an SVG, clean up the SVG sufficiently then import that. Extrude the 2d SVG to use to give you some proportions to model around? You may have to do that in two dimensions of X, Y or Z axis to get the proportions right. I assume the snail like spiral is going to require some lofting between two separate circles of different diameters around an center axis. Possible more than two circles depending on how linearly the dimensions change over the length.

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

You can generate a coil in Fusion360, but the problem is matching the shape of the blower housing. It may not be all that critical anyway, since we don't have original specs on the blower. Approximating the housing without the coil will still work. I can generate that in a few minutes.

The impeller design doesn't really lend itself to 3D printing- I think you'd have to print it in two pieces, one mostly flat with recesses to receive the blades, and the other flat with blades, and cement them together. Not sure I'd trust that to hold together spinning at 30k rpm.

Car painting and spray tanning use something called HVLP turbine pumps to move lots of air. It might be better to think in terms of hooking 10 people up to one blower than to make a separate blower for each person...

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

Hi, we started a dicussion on packaging on open-ventilator.slack.com , 'design-packaging' channel.

,

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

@mrehorst while you work out the other pump internals I am focusing on parts that can be reused for mounting an RC motor which can be incorporated into whatever design. I have this collet arrangement in mind given the relatively high rpm of the stator. I will just print the collet to ensure it will print as it's rather finely detailed. I may have to make it more reliant on the flexibility of the material and reduce the level of detail to make it printable.

motor shaft collet

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

@mrehorst Mark how are you making out with reverse engineering the other pump? I would like to prototype one to test brushless motor performance. I am nearing having the required changes to the initial one you modeled. Which of the two in hand are you currently favoring?

from ventilator.

hobodrifterdavid avatar hobodrifterdavid commented on August 12, 2024

Hi. I'm bouncing around between channels here, I can't contribute too much appart from some thoughts and ideas.

There are many eager volunteers on the helpfulengineering slack group (and elsewhere) who might be able to contribute usefuly (I saw one person who works with CFD), so, maybe you can move this discussion to new Github repo ('open-cpap-blower' or something), or, you can use the slack channel here for discussion: https://join.slack.com/t/open-ventilator/shared_invite/zt-cwh6py1x-C5tO4JewMUf2tRN7rwWB~g ('design-motor' channel). I can then direct anyone useful to that repo/channel. Maybe even get lucky with a turbomachinary guy.

Also, I really encourage you guys to put all interesting findings into a google doc (I think you have one) or a GitHub repo. The information in that document may save the time of people who come after you, and will allow others to contribute more effectively to the project. I know Mark (mrehorst) has a really nice blog. It's a bit annoying to write stuff down, but worth it.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

@hobodrifterdavid I'm in there. I can't post design files to comments on github. There is a 3d design repo on the main repo that could be forked and PR'd but until we start to get more people interested in revising designs using the PR process then it's easier to simply post to Slack. I prefer Github in this regard for version control when it comes to collaboration but we aren't there yet with the number of people I see working the physical pump. Not sure the main repo is the best place to have design review carried out. Someone needs to take charge of a separate repo. Possibly mrehorst and I should be reviewing and approval authority for commits? When it starts to get out of hand I agree use a separate repo and get version control in hand using the PR process with a main and dev branch.

from ventilator.

mrehorst avatar mrehorst commented on August 12, 2024

I have finished the modeling of the resmed blower as accurately as I can- that snail curve was a real tricky thing to do! https://a360.co/33BGX5u

This design does not really lend itself to FDM printing due to the complexity of the structures.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

Great Mark I'll have a look at it. I think the FDM aspect may be a show stopper but I will see if I can arrive at a way and whether or not it merits doing it.

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

I think it could be reproduced if it's sectioned and the sections are slotted together for containment of the pressure but definitely more complex to assemble and longer to produce. Typical issue when considering the FDM over injection molding. I'm not sure injection molding has been ruled out for production but these are considerations. Going on the basis of it being available open source and replicated I am leaning towards the first pump. If the idea is to spool up production on pumps commercially then I see not need to present a 3d printable design and the focus goes to what can be produced in a mold. I see merit from the open source perspective to pursue a printable design as the original concern over access to commercially available pumps. On that basis recommend testing the theory of operation at the moment for the aforementioned reasons I'd go with the first design utilizing readily available brushless DC motors i.e. RC.

from ventilator.

nlambuca avatar nlambuca commented on August 12, 2024

necro-nemesis
where are those files? I am trying to test it also instead of bag system.
thx

from ventilator.

necro-nemesis avatar necro-nemesis commented on August 12, 2024

necro-nemesis
where are those files? I am trying to test it also instead of bag system.
thx

https://github.com/necro-nemesis/open-ventilator-centrifugal-pump/tree/dev

from ventilator.

nlambuca avatar nlambuca commented on August 12, 2024

pump design
pump design2
After doing some additional research I came across a design that was built and tested using a brushless RC motor. I suggest moving down this avenue. The drawing files and test footage are available.

Where?

from ventilator.

nlambuca avatar nlambuca commented on August 12, 2024

I was talking about the round clear design above. I found your design already. Looking good, but wanted to check that round one.
Big Thanks.

from ventilator.

gaurav12294 avatar gaurav12294 commented on August 12, 2024

Hello everyone, I had built a working prototype with a commercial inflator pump which had a brushed DC motor; but it gave a maximum of 15 cm H2O. I want to improve it by keeping the same housing of the pump and replacing the motor by a better brushless or brushed DC motor.

Can you guys help me with the specifications required for the motor to get pressure of 40 cm H2O. I did not find a concrete motor which was selected in this thread. Any links will be very helpful.

from ventilator.

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.