using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter34 { /// /// Example05: Solar Energy /// As noted in the preceding example, the Sun delivers /// about 10^3 W/m^2 of energy to the Earth¡¯s surface /// via electromagnetic radiation. /// (A) Calculate the total power that is incident on a /// roof of dimensions 8.00 m \times 20.0 m. /// (B) Determine the radiation pressure and the radiation /// force exerted on the roof, assuming that the roof /// covering is a perfect absorber /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }