using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter34 { /// /// Example04: Pressure from a Laser Pointer /// Many people giving presentations use a laser pointer /// to direct the attention of the audience to information /// on a screen. If a 3.0-mW pointer creates a spot on a /// screen that is 2.0 mm in diameter, determine the radiation /// pressure on a screen that reflect 70% of the light that /// strikes it. The power 3.0 mW is a time-averaged value. /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }