Getting Started with OpenSees -- Recorders: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
(Created page with 'The OpenSees recorder command is used to define the analysis output. The node recorder will be used to output the horizontal and vertical displacements at node 3 into a file…')
 
No edit summary
Line 1: Line 1:
The OpenSees [[recorder command]] is used to define the analysis output.
The OpenSees [[recorder Command]] is used to define the analysis output.


The node recorder will be used to output the horizontal and vertical displacements at node 3 into a file named Node3.out:
The node recorder will be used to output the horizontal and vertical displacements at node 3 into a file named Node3.out:

Revision as of 23:18, 25 November 2009

The OpenSees recorder Command is used to define the analysis output.

The node recorder will be used to output the horizontal and vertical displacements at node 3 into a file named Node3.out:

recorder Node <-file $fileName> <-time> <-node ($node1 $node2 ...)> <-nodeRange $startNode $endNode> <-region $RegionTag> <-node all> -dof ($dof1 $dof2 ...) $respType


recorder Node -file Node3.out -time -node 3 -dof 1 2 disp


The element recorder will be used to output the element forces. Element forces for element 1 will be output into file Element1.out:

recorder Element <-file $fileName> <-time> <-ele ($ele1 $ele2 ...)> <-eleRange $startEle $endEle> <-region $regTag> <-ele all> ($arg1 $arg2 ...)


recorder Element -file Element1.out -time -ele 1 force





Return to Getting Started with OpenSees