using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter28 { /// /// Example14: Energy Delivered to a Resistor /// A 5.00-\mu F capacitor is charged to a potential /// difference of 800 V and then discharged through a /// 25.0-k\Omega resistor. How much energy is delivered to the /// resistor in the time interval required to fully /// discharge the capacitor? /// public class Example14 { public Example14() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }