Ejemplo n.º 1
0
 public Beam(double Length, LoadBeam Load, ICalcLog CalcLog, IBeamCaseFactory BeamCaseFactory)
     : base(CalcLog)
 {
     this.length              = Length;
     hasCalculatedForces      = false;
     hasCalculatedDeflections = false;
     this.BeamCaseFactory     = BeamCaseFactory;
     this.Load = Load;
 }
Ejemplo n.º 2
0
 public Beam(double Length, LoadBeam Load, ICalcLog CalcLog, IBeamCaseFactory BeamCaseFactory)
     : base(CalcLog)
 {
     this.length = Length;
     hasCalculatedForces = false;
     hasCalculatedDeflections = false;
     this.BeamCaseFactory = BeamCaseFactory;
     this.Load = Load;
 }