using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// SoundTest /// public class SoundTest { public SoundTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Sound obj = new GP.Sound(); GP.Temperature T = new GP.Temperature(); T.K = 345.0; obj.SetSpeed(T); result += obj.TypicalSpeed.ToString()+"\r\n"; } } } // 331