using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter22 { /// /// Example08: Which Way Does the Energy Go? /// A large, cold object is at 273 K, and a second large, hot /// object is at 373 K. Show that it is impossible for a small /// amount of energy -for example 8.0 J - to be transfered /// spontaneously by heat from the cold object to the hot /// one without a decrease in the entropy of the Universe /// and therefore a violation of the second law. /// public class Example08 { public Example08() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }