In the Integrator subclasses, there is a method formEleTangent() which forms the tangent matrix after iterating all over the elements(similar method for nodes).
However all solution algorithm methods in EquisolnAlgo Subclasses whether linear, or newton raphson, are calling the parallel(and more simpler) method formTangent() while solving the current step.
So what is the basis behind choosing formTangent() over formEleTangent()? Why such two parallel ways?
After reading frank's thesis, the method formEleTangent() made more sense to me for getting the complete K*e matrix..
Someone kindly throw light...