using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// PowerTest /// public class PowerTest { private string result; public string Result { get{return result;} } public PowerTest() { } public void Compute() { GP.Force f = new GP.Force(); f.X = 2.0; GP.Velocity v = new GP.Velocity(); v.X = 3.0; GP.Power P = new GP.Power(f, v); result += P.ToString() + "\r\n"; } } } // 6 +/- 0 (W)