示例#1
0
        public Frame(FrameSection section, Node nodei, Node nodej)
            : base(nodei, nodej)
        {
            Section = section;

            Loads = new List<FrameLoad>();
        }
示例#2
0
        /// <summary>
        /// Adds a new frame section to the model.
        /// </summary>
        public FrameSection AddFrameSection(string name, Material material, double area, double momentofinertia)
        {
            FrameSection s = new FrameSection(name, material, area, momentofinertia);

            FrameSections.Add(s);
            return(s);
        }
示例#3
0
        /// <summary>
        /// Adds a new frame to the model.
        /// </summary>
        public Frame AddFrame(FrameSection section, Node n1, Node n2)
        {
            Frame n = new Frame(section, n1, n2);

            Frames.Add(n);
            return(n);
        }
示例#4
0
        public Frame(FrameSection section, Node nodei, Node nodej)
            : base(nodei, nodej)
        {
            Section = section;

            Loads = new List <FrameLoad>();
        }
示例#5
0
 /// <summary>
 /// Adds a new frame to the model.
 /// </summary>
 public Frame AddFrame(FrameSection section, Node n1, Node n2)
 {
     Frame n = new Frame(section, n1, n2);
     Frames.Add(n);
     return n;
 }
示例#6
0
 /// <summary>
 /// Adds a new frame section to the model.
 /// </summary>
 public FrameSection AddFrameSection(string name, Material material, double area, double momentofinertia)
 {
     FrameSection s = new FrameSection(name, material, area, momentofinertia);
     FrameSections.Add(s);
     return s;
 }