OpenSees节点加速度输出

在地震响应分析中,我们关心结构的位移和速度通常是相对于地面的相对位移和相对速度,而关心结构的加速度通常是绝对加速度,因为只有绝对加速度才能与牛顿第二定律建立关联。

在用 recorder 输出时程分析结果时,应该特别注意输出的是相对值还是绝对值。对于位移和速度,输出的都是相对值,和我们关注的一样。而对于加速度,要特别注意。

如果采用语句

recorder Node -file node.txt -node 1 -dof 1 accel

则输出的是相对加速度。如果希望输出绝对加速度,则必须将语句改为:

recorder Node -file node.txt -timeSeries 1 -node 1 -dof 1 accel

这时输出的是绝对加速度。

recorder命令:

recorder Node <-file $fileName> <-xml $fileName> <-binary $fileName> <-tcp $inetAddress $port> <-precision $nSD> <-timeSeries $tsTag> <-time> <-dT $deltaT> <-closeOnWrite> <-node $node1 $node2 ...> <-nodeRange $startNode $endNode> <-region $regionTag> -dof ($dof1 $dof2 ...) $respType'

<-timeSeries $tsTag>:the tag of a previously constructed TimeSeries, results from node at each time step are added to load factor from series。

原文地址:https://www.cnblogs.com/jiangkejie/p/13433915.html