using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// WaveTest /// public class WaveTest { public WaveTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Force f = new GP.Force(); f.X = 1.0; f.Y = 2.0; f.Z = 3.0; GP.Length l = new GP.Length(); l.m = 5.0; GP.Mass m = new GP.Mass(); m.kg = 9.0; result += GP.Wave.SpeedOfWaveOnString(f, m, l).ToString() + "\r\n"; } } } // 1.44176924235737