using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter27 { /// /// Example05: Electron Collisions in a Wire /// (A) /// Using the data and results from Example 27.1 and the /// classical model of electron conduction, estimate the /// average time interval between collisions for electrons /// in household copper wiring. /// (B) /// Assuming that the average speed for free electrons in /// copper is 1.6 \times 10^6 m/s and using the result from /// part (A), calculate the mean free path for electrons in copper. /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }