C/C++ C++ modelling of axial turbocharger

AI Thread Summary
A student is seeking assistance with a final year project focused on modeling a counter-rotating axial turbocharger using C++. The discussion highlights the complexities of modeling such a system, particularly the lack of existing equations for counter-rotating blades, which traditionally rely on rotor-stator configurations. Participants emphasize the need to define equations for efficiency metrics, such as total-to-total efficiency and velocity triangles, before programming. While some argue that modern Computational Fluid Dynamics (CFD) methods can handle complex flows, others caution that accuracy may be compromised for a final year project. Suggestions include exploring technical papers, seeking professor guidance for database access, and utilizing free resources online. The conversation underscores the importance of understanding the underlying principles of velocity triangles and encourages innovative thinking to overcome modeling challenges.
chowchekkee
Messages
6
Reaction score
0
HI, i am a student taking final year project in my university, my project title was C++ modelling of axial turbocharger, it was a counter-rotating turbocharger, can anyone help me to get some useful information to complete my project? thanks
 
Technology news on Phys.org
What part of the turbocharger are you modeling? What result are you hoping for? There's a lot that can be looked at but short of writing your own multiphysics finite element code you'll probably need to limit it to a single physical regime, e.g. heat transfer, fluid flow, mechanical dynamic analysis, etc.
 
i am writing the part for the efficiency for the turbocharger, including total to total efficiency, velocity triangle of the rotor blade and smith diagram, stuff like that
 
The first thing you need to do is write some equations that describe everything that you want to model.

Once you have those, you can start thinking about how to write a program to solve them, how to display the results graphically, etc.
 
but the problem is the turbine and compressor blade of the turbocharger was contra rotating, which have no stator row in it. i have search all over the net and books, but still i not able to come out with the eqaution.
 
What excatly do you mean by "counter-rotating"? Two axial fans which are counter-rotating?
 
If you have contra rotating blades in your project you can forget about modeling in C. Modern CFD methods cannot accurately model a flow that complex. In short, there may not be any available analytical equations and you may have to resort to empirical models or highly specialized solvers.
 
Aero51 said:
If you have contra rotating blades in your project you can forget about modeling in C. Modern CFD methods cannot accurately model a flow that complex.

That is nonsesnse. You can make a simple model two contra-rotating blade rows in terms of blade inlet and outlet angles exactly the same way as a rotor followed by a stator.

If your assertion is about CFD methods is true, how do you think people have been designing jet engines with contra-rotating shafts for decades already? They certainly don't do it by experimental trial and error!
 
There's always a simple way, something I'm usually the one suggesting, but in this case it might not be a good idea. Although, I've seen more complicated things modeled in MATLAB that have given ok results. But yeah, CFD can model something like this, if you know what you're doing.
 
  • #10
Aleph, I didnt say it couldn't be modeled, I said it couldn't be done accurately, especially as a final year project. I'm not in the jet engine business but as far as I know both CFD and empirical methods are used. CFD will give you preliminary results while testing is used for confirmation. I also don't believe this model is "simple" since we don't even have a solid theory/model of turbulent flows.
 
  • #11
CFD and empirical methods are used. The turbulent solvers aren't that great, but they're getting better. I used a new one recently, which I can't give details on, that was giving much better turbulent results than other solvers like CFD++. This was comparing the results with experimental results.
 
  • #12
Hi, i have upload the 2D sketch of the axial turbocharger.

it was a 4 stages axial turbocharger.

my problem is i can't solve for the velocity triangle for the counter rotating blade, which mean all are rotor, no stator involved. plus all the pressure drop and rise in the turbine and compressor respectively. i search through all the books for turbomachinery, all the stated theory was only apply for the rotor and stator only. therefore i am stucked.
thanks
 

Attachments

  • axial turbocharger.jpg
    axial turbocharger.jpg
    11.5 KB · Views: 500
  • #13
i search through all the books for turbomachinery, all the stated theory was only apply for the rotor and stator only

If you are a member of a professional society (AIAA, ASME, etc) try searching through technical papers on their websites.
 
  • #14
hi Aero 51, i am not afford to buy the article to read, they cost too much for me.
 
  • #15
I can't tell you what to do step by step - you have to exercise some "outside the box" thinking. As a start, why not ask one of your professors for access to a technical paper database?
 
  • #16
chowchekkee said:
my problem is i can't solve for the velocity triangle for the counter rotating blade, which mean all are rotor, no stator involved. plus all the pressure drop and rise in the turbine and compressor respectively. i search through all the books for turbomachinery, all the stated theory was only apply for the rotor and stator only. therefore i am stucked.
thanks

If you understand how velocity triangles work (compared with just following a method from a book without understanding it) there is no real difference for contra rotating stages.

You don't need CFD software for this. People were designing contra rotating turbomachinery back in the 1950s, before CFD even existed.

Google "contra rotating triangle of velocities" found lots of relevant (and free) documents.
 
Back
Top