Go Back   Rotary Car Club > Tech Discussion > Rotary Tech - General Rotary Engine related tech section..

Rotary Tech - General Rotary Engine related tech section.. Tech section for general Rotary Engine... This includes, building 12As, 13Bs, 20Bs, Renesis, etc...


Welcome to Rotary Car Club.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Reply
 
Thread Tools Display Modes
Old 02-02-2010, 04:32 PM   #16
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

so... my original understanding of the formula was flawed so I did a little research, properly solved for L and then plotted it as a function of RPM. Here's a picture of the plot I was able to derive.


I also had the program pump out the minimum length at an 8k redline. Here's what I had the program pump out:

Quote:
>> runnerlength()
Assumed redline of 8000
Min Runner Length: 0.162229 m
Consequently I think it will require a little tweeking in order to be extremely accurate. But assuming that there's about 10 cm or so inside the engine itself it makes absolute sense that a 11 cm intake manifold at redline is so small... but who knows.

So what do you guys think?

(also this is for a runner diameter of about 4 cm)
Attached Images
File Type: jpg Runner Length.jpg (17.6 KB, 120 views)






vex is offline   Reply With Quote
Old 02-02-2010, 09:38 PM   #17
tervo rodriguez
The Newbie
 
tervo rodriguez's Avatar
 
Join Date: Jan 2010
iTrader: (0)
Posts: 3
Rep Power: 0
tervo rodriguez is on a distinguished road
Default

here is a look at my custom intake that positive pressure comes in at 2200k w/webbers dcoe 45 on 13psi boost at 3200k and puts out 322 to the wheels 360hp on my raceported 12A
Quote:
Originally Posted by vex View Post
Alright, I think understand what you're saying concerning the Plenum design. Shouldn't be too hard to do a digital mark up in a few. As for the velocity stacks I was already considering doing that.

My question however is for turbo charged applications does wave tuning do that much to begin with? I'm curious because if I'm understanding it correctly the positive pressure comes on (for me anyways--Turbo 6PI) around 2k RPM. If i'm getting positive pressure that quickly, no matter what wave I tune for with the intake runner lengths I'm going to end up with more pressure than the wave could shove in by itself (even when it's not during a compression wave).

If my thinking is correct then I could be able to have rather long runners and be fine power wise. My concern from this however is will throttle response be adversely affected by having abnormally long runners? As it stands right now I'm thinking about keeping the runner length the same as a stock NA (roughly 17" or so), but directed much differently so the air needs to only take one continuous turn once inside the manifold.

I think the best bet for me (and everyone else who follows this thread) right now would be to focus on one stage at a time. For now lets focus on Plenum design and worry about intake runners later:

If I'm understanding you correctly you are telling me that a diverging-converging
(Air-> TB:) nozzle design will work best for when the throttle body is placed on the longitudinal axis of the Plenum. Lets focus on this setup as it seems the easiest to manufacture and produce in ones garage.

As air inters the divergence portion of the plenum the air will slow down according to thermodynamics:
A/A*=1/M[(2/(k+1))(1+(k-1)/2*m^2)]^((k+1)/(2*(k-1)))
Since it's air, k=1.4 and M<=0.6 the formula will give you A/A* for the divergence. (Note: A- Area when gas inters, A* When gas is at M speed)

If the pressure drop is significant enough the temperature will drop, but flow speed will suffer as it drops down in mach number. Knowing what the temperature will drop to we can solve for velocity using
Ve=sqrt(k*R*Te)
Note: There is a conversion factor in here (and this will end up in metric units)

Now you mentioned something about a baffle or is that not needed in a rotary application? Do we even need a Divergence-Convergence Plenum, or is it just a simple matter of getting a big enough pipe and sticking a throttle body on the end of it?

Aside: Can anyone scan a lower intake gasket for a 6PI and take a single measurement for me? I wish to be accurate and start a digital construction of the intake system so when I have access to CFD I'll be able to accurately see where potential flow issues are. Thanks

Last edited by tervo rodriguez; 02-02-2010 at 09:59 PM..
tervo rodriguez is offline   Reply With Quote
Old 02-03-2010, 12:21 PM   #18
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

Quote:
Originally Posted by tervo rodriguez View Post
here is a look at my custom intake that positive pressure comes in at 2200k w/webbers dcoe 45 on 13psi boost at 3200k and puts out 322 to the wheels 360hp on my raceported 12A
Your plenum and intake are simple enough. Though I don't think your runners can readily be seen in the pictures you provided (since you're running a carb the runners would be underneath the carb).

Though I must say, I really like the way your plenum is set up. It looks somewhat similar to my first attempt to digitally model the intake, though I didn't place the blow off valve on the plenum. I like the thought of having the vac/boost lines coming off the plenum. Do you run into any issue with pressure sensing with a turbulent flow? I suppose you really wouldn't because stock does the same thing.


As for the code generation for calculating intake runner length and diameter I have some good news to report:


I've also included the code below for further investigation for users who wish to run it themselves and maybe even critique my math. I wrote it in matlab which allows easy 3d surface rendering accurately.

Code:
function []=runnerlength()
gamma=1.4;
R=287;%J/kgK
T=293.15;%K

a=sqrt(gamma*R*T);%M/S

redline=8000;%rpm redline
v=0.0013;%m^3
r=linspace(0.001,0.015,100);%m
A=@(x)pi().*x.^2;%m^2

rpm=linspace(3000,10000,100);
f=@(x,y)a.^2.*A(y)./(4.*(x./60).^2.*pi().^2.*v);
z=zeros(length(rpm),length(r));
for i=1:1:length(rpm)
    for j=1:1:length(r)
        z(i,j)=f(rpm(i),r(j));
    end
end

surfc(r,rpm,z)
colorbar
xlabel('Radius, r (m)')
ylabel('RPM')
zlabel('Length (m)')
Attached Images
File Type: jpg runner length and diameter.jpg (96.8 KB, 119 views)

Last edited by vex; 02-03-2010 at 12:23 PM..
vex is offline   Reply With Quote
Old 02-04-2010, 11:35 AM   #19
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

I'm surprised... No critiques or suggestions on improvement? Is my math right? Do the results look accurate?

What runner diameter should I consider accurate? I've been leaning towards 3 to 4 cm in diameter, but if I wish to tune for 3500-5000RPM in peak torque I may run into problems actually fitting the amount of pipe for the runners.

I'll be fooling around with the code (different temperatures, narrowing down the diameter to use, etc) and see if I can't get a finalized result for everyone's benefit. This should be quite helpful for individuals (and vendors) who wish to design their own intake systems.

Consequently here's my next round of questions with regard to runners:
What are the benefits/drawbacks of having multiple diameter runners--Having primaries one diameter and secondaries another? What about tapering? Venturi/Velocity Stacks and their affect on pressure drops, and other flow conditions?

This should prove fairly interesting and thanks everyone for their help and support in this thread thus far! Hopefully others are learning as much as I am!
vex is offline   Reply With Quote
Old 02-07-2010, 04:17 AM   #20
scotty305
Rotary Fan in Training
 
Join Date: Mar 2008
Location: Culver City, CA
iTrader: (0)
Posts: 84
Rep Power: 17
scotty305 is on a distinguished road
Default

Nice Matlab code, I used Matlab in school but never got around to using it for fun car stuff like this.

I have one comment and one question:
1. I knew some people who built a variable-volume intake plenum for dyno testing... it was essentially a box with fixed runners and a sliding lid (the throttle attached to the lid), sealing it was difficult but slightly easier than fabricating multiple plenums.

2. Is there a way of predicting the relative power gain or loss due to resonance tuning? For instance, if you could somehow predict that there would be a X% gain in power at the resonant RPM but a Y% loss due to some sort of antiresonance elsewhere, you might try runner lengths/diameters that not only maximize gains in your desired powerband but also minimize losses.

Last edited by scotty305; 02-07-2010 at 04:22 AM..
scotty305 is offline   Reply With Quote
Old 02-07-2010, 04:20 AM   #21
scotty305
Rotary Fan in Training
 
Join Date: Mar 2008
Location: Culver City, CA
iTrader: (0)
Posts: 84
Rep Power: 17
scotty305 is on a distinguished road
Default

Additionally, you might want to think about how you're going to test your setup. It seems it would be wise to use realistic ramp rates on the dyno (if the dyno software allows for this).

Quote:
I fully appreciate the benefits of step testing with sweep testing at the actual rate of acceleration of the vehicle. This can show completely different issues, and allow the separate tuning of load/rpm tables from acceleration enrichment. It can also help to separate engine loads from drivetrain rotating mass loads - both of which alter tuning requirements (both fuel/spark for engine management and pulse tuning in intake and exhaust systems).

An example of different results - Using step testing, I can develop a plenum where a specific volume shows a very nice improvement in output at higher rpm over a 1000 rpm window of the power band - without hurting low rpm output. However a sweep test will show a tendency to hurt lower rpm response and not influence upper rpm output nearly as much as the step test. On the track, this plenum causes the engine to be lazy with poor transient response. And a plenum 20%-30% smaller is actually considerably quicker and faster on the track - dyno results be d@mned.

The same things hold true in exhaust design.


All that matters is the track or street results - RIGHT?
Dyno results (HP/TQ numbers) are irrelevant other than for impressing uninformed customers, internet bragging rights, and the Engine Masters Challenge. They don't win races.

IMHO, both step and sweep testing need to be performed together. And all atmospheric conditions need to be taken, and corrected for, at the point of air entry into the vehicle.

Quote:
this is about actual results using several types of testing methods on both engine and chassis dynos, and comparing the results to actual performance on road or track, not theory.

On a quick accelerating vehicle, intake and exhaust pulse tuning does not have the same time to stabilize as it would with a step test spending 6-8 seconds at each rpm point. The difference can be very large. This is a well understood issue. Perform your own testing and see the results for yourself.

There is a big difference between tuning being "fine" and being right. To engine builders, racers, and customers trying to get the best results for their hard earned Dollar, this matters.
info from http://www.efi101.com/forum/viewtopic.php?t=4105
scotty305 is offline   Reply With Quote
Old 02-07-2010, 11:28 AM   #22
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

Quote:
Originally Posted by scotty305 View Post
Nice Matlab code, I used Matlab in school but never got around to using it for fun car stuff like this.

I have one comment and one question:
1. I knew some people who built a variable-volume intake plenum for dyno testing... it was essentially a box with fixed runners and a sliding lid (the throttle attached to the lid), sealing it was difficult but slightly easier than fabricating multiple plenums.
I didn't even think about doing a variable volume plenum. Honestly the requirements of such things for sealing it would be a little too much for positive pressure tuning. Consequently I have not seen any mathematical model to which I could digitally model the results for it.
Quote:
2. Is there a way of predicting the relative power gain or loss due to resonance tuning? For instance, if you could somehow predict that there would be a X% gain in power at the resonant RPM but a Y% loss due to some sort of antiresonance elsewhere, you might try runner lengths/diameters that not only maximize gains in your desired powerband but also minimize losses.
I doubt very much you could hope to tell how much torque you'd gain at a specific RPM. Based off the 26B the torque increase is a rather small percentage of incorrect length intake. There's also too many variables to stat that intake runners and a plenum volume will have this effect on a car: The difference between one car and another in power really comes down to the whole shebang. Intake, Combustion quality, Exhaust, rotating mass of the drive train, and even atmospheric conditions. You'd honestly have to hold 4 of those things constant just to test the effect of one--and even then I'm not sure that holding them constant would give realistic results.
vex is offline   Reply With Quote
Old 02-07-2010, 03:26 PM   #23
scotty305
Rotary Fan in Training
 
Join Date: Mar 2008
Location: Culver City, CA
iTrader: (0)
Posts: 84
Rep Power: 17
scotty305 is on a distinguished road
Default

Sorry if that wasn't clear... the plenum volume wasn't adjustable on-the-fly, the 'lid' position was changed between dyno tests and this involved clamps, bolts and probably some sort of sealant. In hindsight I should have taken a closer look at the setup.
scotty305 is offline   Reply With Quote
Old 02-07-2010, 09:37 PM   #24
NoDOHC
The quest for more torque
 
NoDOHC's Avatar
 
Join Date: Sep 2008
Location: Sheboygan, Wisconsin
iTrader: (1)
Posts: 855
Rep Power: 17
NoDOHC will become famous soon enough
Default

Good call on the math error! I should have just given the original equation. Apparently the algebra is a bit rusty (I didn't think it looked right, but I couldn't find the formula solved for L in the book).
The natural frequency formula is correct though, I just checked it.

Anyway, I like where you are going with this. Something to remember on the Plenum is that the two rotors are 180 degrees out of phase and have a 270 degree intake duration. This means that both rotors take in air at the same time.

This is looking good!

There are more advanced formulas for varying cross-sectional-area runners, but I don't have the ambition to enter them into paintbrush and you can probably find them online anyway without any errors.

If you want to do the math yourself, it is very simple to draw it up as a dynamic system and then find characteristic equations for it. I say this because you are most likely taking a course in dynamic systems right now or in the near future.

The Plenum has compliance as it acts as an accumulator. The runner has a resistance (dissipative) and Reluctance (inertial) element to it. The port closing is the disturbance function. The system is a lot harder with changing area.

Anyway, you will find that the wave intensity is a logarithmic decaying function and that the time constant is related to the runner smoothness (resistance) and the air velocity (inertia). I can't find the equation right now, maybe it is in a book at work.

I will try to find it and let you do the Algebra.
__________________
1986 GXL ('87 4-port NA - Haltech E8, LS2 Coils. Defined Autoworks Headers, Dual 2.5" Exhaust (Dual Superflow, dBX mufflers)
1991 Coupe (KYB AGX Shocks, Eibach lowering springs, RB exhaust, Stock and Automatic)
NoDOHC is offline   Reply With Quote
Old 02-08-2010, 11:14 AM   #25
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

Quote:
Originally Posted by NoDOHC View Post
Good call on the math error! I should have just given the original equation. Apparently the algebra is a bit rusty (I didn't think it looked right, but I couldn't find the formula solved for L in the book).
The natural frequency formula is correct though, I just checked it.
It happens to the best of us. I can't remember the times I've taken a test and screwed up some simple algebra and ended up with a horrible, horrible, horrible wrong answer.
Quote:
Anyway, I like where you are going with this. Something to remember on the Plenum is that the two rotors are 180 degrees out of phase and have a 270 degree intake duration. This means that both rotors take in air at the same time.
That's actually really helpful, but I think we need to adjust the angle of intake and have it based off of port size, and what not as you're going to get a larger intake with a bridge port compared to a street port

Well my class is finished, time to get back to what I was doing.
Quote:
This is looking good!
I like it a lot and I figure this will be an easy tool for other rotary (and heck, even them piston) guys to effectively make and design a proper manifold without the downfall of one too short or too long. If anyone is able I'd like to see someone make this into a web app that RCC can host on their page (I'll make a thread about it in lounge for those interested).
Quote:
There are more advanced formulas for varying cross-sectional-area runners, but I don't have the ambition to enter them into paintbrush and you can probably find them online anyway without any errors.
I don't even know where to begin with that. Could you point me in the right direction?
Quote:
If you want to do the math yourself, it is very simple to draw it up as a dynamic system and then find characteristic equations for it. I say this because you are most likely taking a course in dynamic systems right now or in the near future.
Actually I don't think I have any dynamic systems setup for my classes now or in the near future. This is why I'm doing a lot of it on my own. I can probably do something similar to what you're telling me in the schools CFD program (if I can ever get it running)
Quote:
The Plenum has compliance as it acts as an accumulator. The runner has a resistance (dissipative) and Reluctance (inertial) element to it. The port closing is the disturbance function. The system is a lot harder with changing area.
You're going to have to go into more detail if you're going to make me want to understand what you're saying. I think I understand, but I'm not too sure.
Quote:
Anyway, you will find that the wave intensity is a logarithmic decaying function and that the time constant is related to the runner smoothness (resistance) and the air velocity (inertia). I can't find the equation right now, maybe it is in a book at work.
If you ever come across it in the near future post it up (don't forget references).
Quote:
I will try to find it and let you do the Algebra.
DEAL!

Last edited by vex; 02-08-2010 at 01:39 PM..
vex is offline   Reply With Quote
Old 02-16-2010, 08:36 PM   #26
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

Crap, I think I made have figured out a mistake. Should the volume displaced be 1.3L or should it be half that?
vex is offline   Reply With Quote
Old 02-17-2010, 03:05 PM   #27
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

Okay, just double checked. The original formula I posted is correct.

We're not looking at the .0013/2 m^3 volume for displacement volume since intake is a continuous displacement of 1.3L (both rotors are 180* out of phase)
vex is offline   Reply With Quote
Old 09-29-2010, 09:02 AM   #28
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

http://www.rwdi.com/cms/publications/26/t09.pdf

^Some helpful rules of thumb for diffuser designs.
vex is offline   Reply With Quote
Old 09-29-2010, 10:43 PM   #29
NoDOHC
The quest for more torque
 
NoDOHC's Avatar
 
Join Date: Sep 2008
Location: Sheboygan, Wisconsin
iTrader: (1)
Posts: 855
Rep Power: 17
NoDOHC will become famous soon enough
Default

I think I need to have a look in the attic, I can't find that book anywhere. From your other threads, it looks like you have done a lot more research than I can remember from old textbooks.

The intake is looking good!

I was thinking that the rotary intake strokes come twice as often as the piston engine intake strokes, meaning that the air had half the time to travel. The intake runner length equation may be off. I will try to get a chance to draw the dynamic model and solve the characteristic equations to see if I can derive the resonance frequency formula properly for a piston engine (it helps to stretch the algebra muscles every so often anyway, as they obviously atrophy). If I can, I will draw the model for the rotary and compare.
__________________
1986 GXL ('87 4-port NA - Haltech E8, LS2 Coils. Defined Autoworks Headers, Dual 2.5" Exhaust (Dual Superflow, dBX mufflers)
1991 Coupe (KYB AGX Shocks, Eibach lowering springs, RB exhaust, Stock and Automatic)
NoDOHC is offline   Reply With Quote
Old 09-30-2010, 08:16 AM   #30
vex
RCC Loves Me Not You
 
vex's Avatar
 
Join Date: Jul 2008
Location: Influx.
iTrader: (6)
Posts: 2,113
Rep Power: 19
vex will become famous soon enough
Default

Quote:
Originally Posted by NoDOHC View Post
I think I need to have a look in the attic, I can't find that book anywhere. From your other threads, it looks like you have done a lot more research than I can remember from old textbooks.

The intake is looking good!

I was thinking that the rotary intake strokes come twice as often as the piston engine intake strokes, meaning that the air had half the time to travel. The intake runner length equation may be off. I will try to get a chance to draw the dynamic model and solve the characteristic equations to see if I can derive the resonance frequency formula properly for a piston engine (it helps to stretch the algebra muscles every so often anyway, as they obviously atrophy). If I can, I will draw the model for the rotary and compare.
Please do. I have since had that class and now understand what you're talking about. I honestly can't model a dynamic system like this without just retarding it down to a simple mass-spring-damper problem. I do believe the equation I have is correct, though I am of the same concern as you.

The way I looked at it is degrees of rotation compared one to the other. For 720 degrees of rotation of the crank you get 1 intake stroke (Just looking at a single piston), similarly for the rotary you get 1 intake stroke for 720 degrees of rotation (looking only at a single rotor).

I had a simple program at one point that showed the correlation between the intake stroke of the rotary and piston with respect to engine RPM. I'll see if I can dig it up and validate my mental experiment.
vex is offline   Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -5. The time now is 12:44 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Hosted by www.GotPlacement.com
Ad Management by RedTyger