Amplitude Of Single Tone Sound Wave = Loudness ?

AI Thread Summary
The discussion centers on the relationship between the amplitude of a single tone sound wave and perceived loudness. The variable 'A' in the wave equation represents peak amplitude pressure, which is linked to intensity but does not directly correlate with perceived loudness due to the logarithmic nature of human hearing. Users noted that adjusting the amplitude in their sound generation software did not yield noticeable changes in loudness, suggesting that the changes may not have been significant enough for human perception. Additionally, it was highlighted that the audio file generation function in Octave requires normalized input, indicating that user error contributed to the confusion. Ultimately, the complexities of measuring loudness and its subjective perception were acknowledged, emphasizing the challenges in achieving consistent audio levels.
Pushless
Messages
2
Reaction score
0
Amplitude Of Single Tone Sound Wave = "Loudness"?

Hello,

Given a single tone sound wave: x(t) = A * sin( 2 * pi * freq * t ), what does the 'A' actually represent? Peak Intensity? Intensity Level? Peak Amplitude Pressure? What is adding to my confusion is this link: http://www.jhu.edu/~signals/listen-new/listen-newindex.htm
The perceived loudness of a pure tone is proportional to a^0.6
Why a^0.6 and not 'a' and why proportional?

I am using a Matlab clone called Octave to generate wave files. These wav files contain single tone sounds. I generate the single tone with the following command:

tone1 = transpose( cPeak1 * sin( 2 * pi * fx * t ) );

I expect the variable cPeak1 to affect the "loudness" of the tone. If I increase cPeak the tone will sound louder, if I decrease cPeak it will sound softer. I have been assuming that my variable cPeak is the Intensity.

Code:
Single tone sound wave intensity: [b]I = P^2 / 2 * rho * v[/b]
I: Intensity in watts/m^2
P: Pressure amplitude in Pa

rho * v : Characteristic impedance of the air

But changing the value of cPeak does not affect the *wave* files I am generating. When I vary cPeak and plot the tones, I can see the change in amplitude. When I vary cPeak and generate wave files, the files all sound the same (in terms of loudness).

Here is a pastebin of the Octave 'm' file I am using to create the tones...I'm not sure if it will work with Matlab.

http://pastebin.com/dbKmnVwU

Thanks!
 
Last edited by a moderator:
Engineering news on Phys.org


In acoustics, cPeak is usually the pressure amplitude.

"Loudness" depends on how your brain interprets the signals, not on what you measure with a pressure transducer. Maybe you are not changing cPeak enough to hear the dfference, and human perception of "loudness" follows a logarithmic scale not a linear one. Try something like.

cPeak1 = floor( nMax/100 );
cPeak2 = floor( nMax/30 );
cPeak3 = floor( nMax/10 );
cPeak4 = floor( nMax/3 );
cPeak5 = floor( nMax/1 );

or even

cPeak1 = floor( nMax/10000 );
cPeak2 = floor( nMax/1000 );
cPeak3 = floor( nMax/100 );
cPeak4 = floor( nMax/10 );
cPeak5 = floor( nMax/1 );
 


Thank you for taking the time to read and respond to my somewhat scatterbrained OP. It was helpful. When I attempt to do/learn something new I get frustrated if I don't pick it up immediately. And once the frustration sets in, it becomes difficult for anything to sink in.

I've been reading the book "Fundamentals Of Acoustics" (Kinsler, Frey, Coppens, Sanders) in an attempt to understand the basic theory. I was getting a frustrated because the book is a little advanced. Although after reading your reply, the book was saying the exact same thing.

My issue with Octave turned out to be user error. The function that generates the audio file expects the input to be normalized.

Thank you again for your help.
 


If "loudness" were a simple thing to measure, there would be no complaints from TV audiences about the levels of Music vs Speech streaming to the in-boxes of all broadcasters. They would be able to get it sounding just right for every audience member.
 
Very basic question. Consider a 3-terminal device with terminals say A,B,C. Kirchhoff Current Law (KCL) and Kirchhoff Voltage Law (KVL) establish two relationships between the 3 currents entering the terminals and the 3 terminal's voltage pairs respectively. So we have 2 equations in 6 unknowns. To proceed further we need two more (independent) equations in order to solve the circuit the 3-terminal device is connected to (basically one treats such a device as an unbalanced two-port...
suppose you have two capacitors with a 0.1 Farad value and 12 VDC rating. label these as A and B. label the terminals of each as 1 and 2. you also have a voltmeter with a 40 volt linear range for DC. you also have a 9 volt DC power supply fed by mains. you charge each capacitor to 9 volts with terminal 1 being - (negative) and terminal 2 being + (positive). you connect the voltmeter to terminal A2 and to terminal B1. does it read any voltage? can - of one capacitor discharge + of the...

Similar threads

Back
Top