using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter22 { /// /// Example03: Efficiency of the Carnot Engine /// Show that the efficiency of a heat engine operating /// in a Carnot cycle using an ideal gas is given by Equation 22.6. /// e = 1 - T_c/T_h /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }