using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// Resistivity /// public class ResistivityTest { private string result; public string Result { get{return result;} } public ResistivityTest() { } public void Compute() { GP.Length l = new GP.Length(); l.m = 2.0; GP.Area a = new GP.Area(); a.mSQUARE = 0.0001; GP.Resistance R = new GP.Resistance(); R.Ohm = 10.0; GP.Resistivity rho = new GP.Resistivity(R, l, a); result += rho.ToString() + "\r\n"; } } } // 0.0005 +/- 0 (Ohmm)