using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// DecayTest /// public class DensityTest { public DensityTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Mass m = new GP.Mass(); m.kg = 10.0; GP.Volume v = new GP.Volume(); v.mCUBE = 3.0; GP.Density rho = new GP.Density(m,v); result += rho.kgPERmCUBE.ToString() + "\r\n"; } } } // 3.33333333333333