protected AssembleGlobalStiffnessMatrix(IDatabase dbctx, IGlobalStiffnessMatrixFactory factory)
        {
            Guard.WhenArgument(dbctx, "dbctx").IsNull().Throw();
            Guard.WhenArgument(factory, "factory").IsNull().Throw();

            this.dbctx   = dbctx;
            this.factory = factory;
        }
Ejemplo n.º 2
0
 public AssembleGlobalFrameStiffnessMatrix(IDatabase dbctx, IGlobalStiffnessMatrixFactory factory) : base(dbctx, factory)
 {
 }