Hello! I am using localForce recorders to record element forces. However, the numbers I get aren't correct.
I am giving an example, where I have divided a beam in three parts modelled with elasticBeamColumn. Its load is 11.96 per length unit, parts 1 and 3 have length 0.92 and the 2nd one 2.76. The results are as follows for a given time 1658.47 at a pushover analysis: (The torque is a bit different as I have used rigid elements in between)
As you see, the moments seem to be correct, however the shear forces are in the wrong place, confusing the beginning node and the end node. Simple static analysis knowing the load, length and moments at the ends show that shear forces are the opposite way too. Is there maybe an error in the transformation vectors I have used or a bug in the recorder? Thanks!
not quite sure what your analysis is, here is a simple model with theose values showing results are correct for local force directions we use in OpenSees:
model basic -ndm 2 -ndf 3
# nodes
set nodeTag 0;
set xCoords {0.0 0.92 3.68 4.60}
foreach xCoord $xCoords {
incr nodeTag
node $nodeTag $xCoord 0.
set L $xCoord
}
# fix supports
fix 1 1 1 0
fix $nodeTag 1 1 0
# elements
geomTransf Linear 1
set A 10.0; set E 10000.0; set I 1000.0;
element elasticBeamColumn 1 1 2 $A $E $I 1
element elasticBeamColumn 2 2 3 $A $E $I 1
element elasticBeamColumn 3 3 4 $A $E $I 1
# load
set w -11.96
timeSeries Linear 1
pattern Plain 1 1 {
eleLoad -ele 1 2 3 -type -beamUniform $w 0.
}
#analysis
integrator LoadControl 1.0
test NormDispIncr 1.0e-12 2
algorithm Newton
system ProfileSPD
numberer Plain
constraints Plain
analysis Static
analyze 1
# elements
geomTransf Linear 1 0 0 1
set A 10.0; set E 10000.0; set I 1000.0; set J 1000.0; set G 10000.0
element elasticBeamColumn 1 1 2 $A $E $G $J $I $I 1
element elasticBeamColumn 2 2 3 $A $E $G $J $I $I 1
element elasticBeamColumn 3 3 4 $A $E $G $J $I $I 1
# load
set w -11.96
timeSeries Linear 1
pattern Plain 1 1 {
eleLoad -ele 1 2 3 -type -beamUniform 0. $w 0.
}
#analysis
integrator LoadControl 1.0
test NormDispIncr 1.0e-12 2
algorithm Newton
system ProfileSPD
numberer Plain
constraints Plain
analysis Static
analyze 1
Hi! Since the new version has been released (thanks for the 64-bit version! ), I tried testing the codes above again and the problem seems to persist. So I am bringing this topic up for the next update! Thanks for the hard work!