using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter17 { /// /// Example02: Hearing Limits /// The faintest sounds the human ear can detect at /// a frequency of 1000 Hz correspond to an intensity /// of about 1.0 \times 10^{-12} W/m^2 - the so called /// threshold of hearing. The loudest sounds the ear /// can tolerate at this frequency correspond to an /// intensity of about 1.0 W/m^2 - the threshold of pain. /// Determine the pressure amplitude and displacement amplitude /// associated with these two limits. /// P_{max} = 2.87 \times 10^-5 N/m^2 /// s_{max} = 1.11 \times 10^-11 m /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }