Charlie Delta Whiskey
Structural
- Aug 16, 2017
- 18
I am attempting to program a second order (geometrically nonlinear) plane frame analysis based on the Direct Analysis Method in AISC (reduced stiffness, notional loads, etc.) to use for designing Moment Frames. I already programmed a first order plane frame analysis program in C++ that works perfectly. My question is when doing a second order analysis, how should I apply the loads. I could apply the loads all at once and do Newton-Raphson iterations until I converge on a solution for the displacements, OR I could apply the gravity loads all at once and the lateral loads incrementally like a pushover analysis does, OR I could apply all of the loads incrementally. Computational time is only a little bit of an issue because the moment frames we work with are pretty small BUT I do run 14 or so load combinations and I check several different designs (meaning different W-Shapes). That means if I am checking 20 designs that would be 20 x 14 = 280 analyses and that usually takes my program about 25 seconds or so. Any input would be great because I really am just sort of flying by the seat of my pants on this project and I couldn't find any information that I thought was relevant to my specific project.