using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CaeMesh; using CaeGlobals; using System.Runtime.Serialization; namespace CaeModel { [Serializable] public class GravityLoad : Load, ISerializable { // Variables private string _regionName; //ISerializable private RegionTypeEnum _regionType; //ISerializable private EquationContainer _f1; //ISerializable private EquationContainer _f2; //ISerializable private EquationContainer _f3; //ISerializable private EquationContainer _magnitude; //ISerializable // Properties public override string RegionName { get { return _regionName; } set { _regionName = value; } } public override RegionTypeEnum RegionType { get { return _regionType; } set { _regionType = value; } } public EquationContainer F1 { get { UpdateEquations(); return _f1; } set { SetF1(value); } } public EquationContainer F2 { get { UpdateEquations(); return _f2; } set { SetF2(value); } } public EquationContainer F3 { get { UpdateEquations(); return _f3; } set { SetF3(value); } } public EquationContainer Magnitude { get { UpdateEquations(); return _magnitude; } set { SetMagnitude(value); } } // Constructors public GravityLoad(string name, string regionName, RegionTypeEnum regionType, bool twoD, bool complex, double phaseDeg) : this(name, regionName, regionType, 0, 0, 0, twoD, complex, phaseDeg) { } public GravityLoad(string name, string regionName, RegionTypeEnum regionType, double f1, double f2, double f3, bool twoD, bool complex, double phaseDeg) : base(name, twoD, complex, phaseDeg) { _regionName = regionName; RegionType = regionType; // double mag = Math.Sqrt(f1 * f1 + f2 * f2 + f3 * f3); F1 = new EquationContainer(typeof(StringAccelerationConverter), f1); F2 = new EquationContainer(typeof(StringAccelerationConverter), f2); F3 = new EquationContainer(typeof(StringAccelerationConverter), f3); Magnitude = new EquationContainer(typeof(StringAccelerationConverter), mag); } public GravityLoad(SerializationInfo info, StreamingContext context) : base(info, context) { foreach (SerializationEntry entry in info) { switch (entry.Name) { case "_regionName": _regionName = (string)entry.Value; break; case "_regionType": _regionType = (RegionTypeEnum)entry.Value; break; case "_f1": case "k__BackingField": // Compatibility for version v1.4.0 if (entry.Value is double valueF1) F1 = new EquationContainer(typeof(StringAccelerationConverter), valueF1); else SetF1((EquationContainer)entry.Value, false); break; case "_f2": case "k__BackingField": // Compatibility for version v1.4.0 if (entry.Value is double valueF2) F2 = new EquationContainer(typeof(StringAccelerationConverter), valueF2); else SetF2((EquationContainer)entry.Value, false); break; case "_f3": case "k__BackingField": // Compatibility for version v1.4.0 if (entry.Value is double valueF3) F3 = new EquationContainer(typeof(StringAccelerationConverter), valueF3); else SetF3((EquationContainer)entry.Value, false); break; case "_magnitude": SetMagnitude((EquationContainer)entry.Value, false); break; default: break; } } // Compatibility for version v1.4.0 if (_magnitude == null) { double mag = Math.Sqrt(_f1.Value * _f1.Value + _f2.Value * _f2.Value + _f3.Value * _f3.Value); Magnitude = new EquationContainer(typeof(StringAccelerationConverter), mag); } } // Methods private void UpdateEquations() { try { // If error catch it silently if (_f1.IsEquation() || _f2.IsEquation() || _f3.IsEquation()) FEquationChanged(); else if (_magnitude.IsEquation()) MagnitudeEquationChanged(); } catch (Exception ex) { } } private void SetF1(EquationContainer value, bool checkEquation = true) { EquationContainer.SetAndCheck(ref _f1, value, null, FEquationChanged, checkEquation); } private void SetF2(EquationContainer value, bool checkEquation = true) { EquationContainer.SetAndCheck(ref _f2, value, null, FEquationChanged, checkEquation); } private void SetF3(EquationContainer value, bool checkEquation = true) { EquationContainer.SetAndCheck(ref _f3, value, Check2D, FEquationChanged, checkEquation); } private void SetMagnitude(EquationContainer value, bool checkEquation = true) { EquationContainer.SetAndCheck(ref _magnitude, value, CheckMagnitude, MagnitudeEquationChanged, checkEquation); } // private void FEquationChanged() { double mag = Math.Sqrt(_f1.Value * _f1.Value + _f2.Value * _f2.Value + _f3.Value * _f3.Value); _magnitude.SetEquationFromValue(mag, false); } private void MagnitudeEquationChanged() { double c1; double c2; double c3; // if (_magnitude.Value == 0) { c1 = 0; c2 = 0; c3 = 0; } else { double r; c1 = _f1.Value; c2 = _f2.Value; c3 = _f3.Value; double mag = Math.Sqrt(c1 * c1 + c2 * c2 + c3 * c3); // if (mag != 0) { r = _magnitude.Value / mag; c1 *= r; c2 *= r; c3 *= r; } else { r = Math.Sqrt(Math.Pow(_magnitude.Value, 2) / 3); c1 = r; c2 = r; c3 = r; } } // _f1.SetEquationFromValue(c1, false); _f2.SetEquationFromValue(c2, false); _f3.SetEquationFromValue(c3, false); } // private double Check2D(double value) { if (_twoD) return 0; else return value; } private double CheckMagnitude(double value) { if (value < 0) throw new Exception("Value of the gravity load magnitude must be non-negative."); else return value; } // IContainsEquations public override void CheckEquations() { base.CheckEquations(); // _f1.CheckEquation(); _f2.CheckEquation(); _f3.CheckEquation(); _magnitude.CheckEquation(); } // ISerialization public new void GetObjectData(SerializationInfo info, StreamingContext context) { // Using typeof() works also for null fields base.GetObjectData(info, context); // info.AddValue("_regionName", _regionName, typeof(string)); info.AddValue("_regionType", _regionType, typeof(RegionTypeEnum)); info.AddValue("_f1", _f1, typeof(EquationContainer)); info.AddValue("_f2", _f2, typeof(EquationContainer)); info.AddValue("_f3", _f3, typeof(EquationContainer)); info.AddValue("_magnitude", _magnitude, typeof(EquationContainer)); } } }