Two-phase medium sound speed calculator

版本 1.1.0.0 (1.5 KB) 作者: Chad Greene
Uses A.B. Wood's model to calculate the bulk sound speed of a two-phase fluid medium.
668.0 次下载
更新时间 2012/5/30

查看许可证

Calculate the low-frequency bulk sound speed of a two-phase homogeneous fluid mixture using Wood's model.

INPUTS:
c1 = sound speed of medium 1
rho1 = density of medium 1
c2 = sound speed of medium 2
rho2 = density of medium 2
VF = volume fraction (sometimes called void fraction). This is the fraction of the total volume occupied by medium 2. Mathematically,

VF = (V2)/(V1+V2),

Where V1 and V2 are the volumes of media 1 and 2, respectively.

OUTPUT:
Bulk sound speed of the mixture, in the same units as c1 and c2.

EXAMPLE:
VF = 0:.001:1;
c = c_wood2(1485,998,343,1.2,VF);
plot(VF,c)
xlabel('void fraction')
ylabel('bulk sound speed')
box off

This function can be employed to show some interesting physics. Namely, consider air bubbles in water: Water has a sound speed of about 1500 m/s and air has a sound speed of about 340 m/s. Yet, the introduction of just a small fraction of air bubbles into water will drop the bulk sound speed of the medium down to just tens of meters per second. Bubbly water has a sound speed below that of the water or the gas!

You'll find this model in A.B. Wood's 1930 work, "A Textbook of Sound: Being an Account of the Physics of Vibrations with Special Reference to Recent Theoretical and Technical Developments."

引用格式

Chad Greene (2024). Two-phase medium sound speed calculator (https://www.mathworks.com/matlabcentral/fileexchange/36920-two-phase-medium-sound-speed-calculator), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2011a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Audio Processing Algorithm Design 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.1.0.0

Fixed a mislabeled input descriptor.

1.0.0.0