using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter05 { /// /// Example12: Experimental determination of \mu_s and \mu_k /// The following is a simple method of measuring coefficients /// of friction: Suppose a block is placed on a rough surface /// inclined relative to the horizontal. The incline angle /// is increased until the block starts to move. Show that /// by measuring the critical angle \theta_c at which this /// slipping just occurs, we can obtain \mu_s. /// public class Example12 { public Example12() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }