using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter08 { /// /// Example10: Connected Blocks in Motion /// Two blocks are connected by a light string that passes /// over a frictionless pulley, as shown in Figure 8.15. /// The block of mass m_1 lies on a horizontal surface is /// connected to a spring of force constant k. /// The system is released from rest when the spring /// is unstretched. If the hanging block of mass m_2 falls /// a distance h before coming to rest, calculate the /// coefficient of kinetic friction between the block of /// mass m_1 and the surface. /// \mu_k = (m_2*g - 0.5*k*h)/(m_1*g) /// public class Example10 { public Example10() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }