using System; namespace Science.Physics.GeneralPhysics { /// /// Elasticity /// public class Elasticity { public Elasticity() { } private double Y, S, B; public double YoungModulus { get{return Y;} set{Y = value;} } public double ShearModulus { get{return S;} set{S = value;} } public double BulkModulus { get{return B;} set{B = value;} } } }