Introduction

In accordance with the definition of instantaneous sound intensity as the product of the instantaneous acoustic pressure and the instantaneous particle velocity, an intensity measurement system should incorporate transducers of each of these the quantities. It is imperative that the presence of the transducers diffracts the sound field to an acceptably small degree, and that the transducer(sensor) assembly does not vibrate at audio-frequencies with a velocity amplitude comparable with the particle velocity of the acoustic field.
传感器使声场发生可接受的小角度的衍射是不可避免的,同时,相比于声场的particle velocity来说,传感器组并不会由于声音频率而发生震动。


Principles of Measurement of Sound Intensity

Sound pressure and particle velocity in a sound field can both be expressed as functions of the velocity potential of the field, but the relationship between the two depends upon the type of sound field, and is not unique. Therefore it is necessary to employ at least two sensors to determine sound intensity. Two categories of probe are in use: one with a particle velocity transduction unit, the other comprises two microphones. We shall refer to the former as a 'p-u' probe, and to the later as a 'p-p' probe, which enjoys far greater use.

  • The p-u principle

  • The p-p principle
    Two nominally identical pressure sensors are placed close together in a support structure which is designed to minimise diffraction of the incident sound field. Most microphone capsules take the form of short cylinders which may be associated in various configurations.

    In a small amplitude sound field, the component of pressure gradient in any direction n is proportional to the component of fluid particle acceleration in that direction:

    The corresponding component of particle velocity is therefore given by the time integral

    This is approximated as

    where d is the distance separating the acoustic centres of the transducers; this will henceforth be termed the 'separation distance'.
    The pressure at the point midway between sensors is approximated as

    Hence, the instantaneous intensity component is approximated by

    Many sources operate steadily; their sound fields may be considered to be stationary, and for the determination of source sound power the mean intensity is of prime interest. Time stationary signals x(t) and y(t) are such that x(dx/dt) = y(dy/dt) = 0, and x(dy/dt) = -y(dx/dt). In this case, p


Frequency Distribution of Sound Intensity in Time-Stationary Sound Fields

As we have seen, the component of the instantaneous sound intensity in any particular direction is atime-dependent quantity. The expression relevant to harmonic fields.

  1. p-u case
    ‘Indirect' frequency analysis procedures are based upon Fourier (spectral) analysis of the two probe signals, which is introduced here via the correlation function which indicates the time-average relationship between two signals in the time domain. The Cross-correlation Function between the pressure and particle velocity is defined as

    (Note: in the case of harmonic signals the limiting process is replaced by a time average over an integer number of cycles.)
    Hence, the mean intensity component in direction r is given by

    The distribution in frequency of the product of the p and u component of that frequency is given by the Fourier transform of the cross-correlation function, which is termed the Cross-spectral Density:

    This function is mathematically complex. indicating the average phase relationship between p and u.
    R and S form a Fourier transform pair, and thus

    and

    In this sense, S represents the distribution of the contributions of different frequency components of the sound field to the mean intensity.
    Cross-spectra possess the following properties:

    The spectral function S is defined for all positive and negative frequencies, i.e. it can be represented by pairs of counter-rotating phasors(一对旋转的矢量). For practical purposes it is convenient to redefine the spectral densities as single-sided (单面)functions of frequency, thus:

    Hence, the distribution of contributions of the different frequency components to the mean intensity component is

    When a p-u probe is used, the equation above may be implemented directly with a two-channel FFT analyser to give I(w) in the direction of the probe axis. The total vector in a stationary field may be obtained by vector addition of the results of sequential measurements in three orthogonal directions.
    The imaginary part of G(w) is proportional to the magnitude of the reactive intensity: however, unlike the real part, it does not represent the distribution of contributions of frequency components to a time-average quantity because the mean reactive intensity is zero at all frequencies.
  2. p-p case

Principles of measurement of sound intensity的更多相关文章

  1. UVA10048 Audiophobia[Floyd变形]

    UVA - 10048 Audiophobia Consider yourself lucky! Consider yourself lucky to be still breathing and h ...

  2. UVa 10048: Audiophobia

    这道题要求我们求出图中的给定的两个节点(一个起点一个终点,但这是无向图)之间所有“路径中最大权值”的最小值,这无疑是动态规划. 我开始时想到根据起点和终点用动态规划直接求结果,但最终由于题中S过大,会 ...

  3. Uva10048 Audiophobia (Floyd)

    题意:有一个无向带权图,求出两点之间路径的最大边权值最小能为多少. 思路:使用floyd算法跑一边以备查询,每一次跑的过程中dp[i][j]=min(dp[i][j],max(dp[i][k],dp[ ...

  4. Audiophobia(Floyd算法)

    个人心得:这在一定途径上完成查询方面还是很吃力,得多锻炼空间能力,不能再每次都看到就后退,要全力应对, 那怕被虐的不要不要的. 这题主要是求俩个端点中所有路径中最大构成的集合中最小的数值,其实开始思想 ...

  5. UVa10048_Audiophobia(最短路/floyd)(小白书图论专题)

    解题报告 题意: 求全部路中最大分贝最小的路. 思路: 类似floyd算法的思想.u->v能够有另外一点k.通过u->k->v来走,拿u->k和k->v的最大值和u-&g ...

  6. Indexing Sensor Data

    In particular embodiments, a method includes, from an indexer in a sensor network, accessing a set o ...

  7. [快速幂]Codeforces Round #576 (Div. 2)-C. MP3

    C. MP3 time limit per test 1 second memory limit per test 256 megabytes input standard input output ...

  8. Spatial Sound Research

    Spatial Sound Research What are our goals? The basic goal of our research is to develop cost-effecti ...

  9. java sound初探

    网上关于java sound的正规资源讲解的非常好,本文不再给出示例,主要提供一些好的资源,并说说我的一些理解,用于形成对java sound的整体认识. 一.几个词汇 TTS:text-to-spe ...

随机推荐

  1. WinForm中重绘TabControl选项卡标题

    最近开发WinForm频繁使用了TabControl控件,这个控件的选项卡没有BackgroundImage这个属性,那么如何为其各个选项卡添加背景图片呢?(这里说的是每个TabPage的头部,也就是 ...

  2. SQL语句实现Split并合并查询结果

    需求是这样的,需要将数据库中的支付方式列(用";"分割的字符串)按支付方式拆分: 首先参考博客园split的文章,我采用方法2, IF EXISTS ( SELECT * FROM ...

  3. Java源码之 java.util.concurrent 学习笔记01

    准备花点时间看看 java.util.concurrent这个包的源代码,来提高自己对Java的认识,努力~~~ 参阅了@梧留柒的博客!边看源码,边通过前辈的博客学习! 包下的代码结构分类: 1.ja ...

  4. 【转】Android 底层开发的几点

    我干了3年Android sdk开发,觉得到了瓶劲没法更进一步,于是花了一年多点时间,大概摸到点门径.根据前辈的经验,Android底层完全入门需要两年. 先说下我的入门过程:第零步,下载源码,我下的 ...

  5. android的消息处理机制——Looper,Handler,Message

    在开始讨论android的消息处理机制前,先来谈谈一些基本相关的术语. 通信的同步(Synchronous):指向客户端发送请求后,必须要在服务端有回应后客户端才继续发送其它的请求,所以这时所有请求将 ...

  6. Java基础知识点4:继承

    继承是面向对象编程技术中非常重要的一个基本概念.它背后的基本思想就是:通过已有的类来创建一个新的类,这个新的类可以重用(或继承)已有的类方法:新的类也可以加入新的方法和属性. 在这里我们通过一个实例来 ...

  7. 在Spring中轻松写日志

    最近觉得写的一点代码(JAVA),还觉得颇为自得,贡献出来供大家参考. 首先,先上代码: @Controller public class Controller1{ @WriteLog(value = ...

  8. Java操作属性文件之工具类

    最近空闲时间整理一下平时常用的一下工具类,重复造轮子实在是浪费时间,如果不正确或者有待改善的地方,欢迎指教... package com.hsuchan.business.utils; import ...

  9. Anaular指令详解

    目录:directive()   restrict   replace   template   templateUrl  scope  transclude   ng-transclude   co ...

  10. Python2 新手 编码问题 吐血总结

    什么是编码 任何一种语言.文字.符号等等,计算都是将其以一种类似字典的形式存起来的,比如最早的计算机系统将英文文字转为数字存储(ASCII码),这种文字与数字(或其他)一一对应的关系我们称之为编码.由 ...