Hi Paul,
Is the volume of the plenum chamber on a throttle
body/plenum setup critical in any way ?
Cheers Chris in NZ
It has something to do with it. Technically it
is called a Helmholtz resonator.
Paul Lamar
Hi!: for an unknown reason, my PC blocks the HELM.BAS file, do
you know what's happening and a way to be able to watch this image?
Thanks, regards,
-- Salud
Jose Gros-Aymerich Madrid, Spain
It is a software source program and plain text.
Here it is.
CLS
c = 1100 'fps
pi = 3.1416
a = .0218 'sq feet
f = 200 'cps
l = 1 'foot
'f = c/2*pi * (a/(l*V)^.5
PRINT " Volume dimeter INCH Frequency RPM"
FOR V = .5 TO 2 STEP .05
f = c / 2 * pi * (a / (l * V)) ^ .5
PRINT USING "##.##"; V;
'V = pi* R^2 * 1.5 in cubic feet
'V / (pi*1.5) = R^2
R = (V / (pi * 1.5)) ^ .5 'R = feet
ri = R * 12 'in inches
diameter = 2 * ri 'in inches
PRINT USING "#########.##"; diameter;
PRINT USING "#########.##"; f;
RPM = (f * 60) / 2
PRINT USING "##########"; RPM
NEXT V
SYSTEM
Paul Lamar