In the command, "element nonlinearBeamColumn $eleTag $iNode $jNode $numIntgrPts $secTag $transfTag <-mass $massDens> <-iter $maxIters $tol>". "$numIntgrPts" mean number of integration points along the element, and the help document told us two integration points at the element ends. For example, $numIntgrPts equal to 5, so it should be Fig b.
node— —1— —2— —3— —4— —5— —node
(Fig a)
(node)1— —2— —3— —4— —5(node)
(Fig b)
But I output the defomation of section 5 of element 1 and the defomation of section 1 of element 2. If Fig b is true, two section is same. In fact, it is different. I think the Fig a is right.
fmk, do you tell which is right? Do the specified number of integration point include the node?
nonlinearBeamColumn uses Gauss-Lobatto integration rule. Looking at the code below, you can see that there are always two points at the element ends (-1 and 1).
The reason you're having different responses for 1st and 5th sections may be due to the loading or the boundary conditions...
Berk Taftali
Georgia Institute of Technology
Ph.D. Candidate, Structural Engineering, Mechanics, and Materials
School of Civil and Environmental Engineering
Atlanta, GA 30332 USA
Email: gte994y@mail.gatech.edu
Thank you! From the scripts, we know that Fig b is right. For example, $numIntgrPts equal to 5, and length of element is 2. We aquire the deformation of section 2.
fmk has said,
for the section it's the angle .. we try to update the documentation as users post questions like this .. keep them coming .. but place them in the documentation section.
So the curvature is doformation/0.65465367. And the curvature of section 3 is doformation/1, the curvature of section 4 is doformation/1.65465367.......
If it is right, we couldn't find the curvature of section 1. Bcause the curvature of section 1 equal to doformation/0.
Not necessarily. Those values represent the x coordinates of the integration points along the element. You don't need any of those to calculate the curvature at a section. I posted that for you to see that the two of the integration points are always at the ends of the element.
Use the element recorder to monitor section deformations (deformation option).
The following script will record the deformations at the 1st and the 5th sections of a beam-column element. For a fiber section, the recorded values will be axial deformation and curvature.
recorder Element -file "section1.def" -ele 1 section 1 deformation
recorder Element -file "section5.def" -ele 1 section 5 deformation
Hope this helps...
Berk Taftali
Georgia Institute of Technology
Ph.D. Candidate, Structural Engineering, Mechanics, and Materials
School of Civil and Environmental Engineering
Atlanta, GA 30332 USA
Email: gte994y@mail.gatech.edu