Previous Topic

Next Topic

Book Contents

Loads and Analysis

In OpenSees applying loads is a three-step process:

1. You must first define the loads in a load pattern

2. You must then define the analysis and its features

3. The loads are then applied when you execute the analysis

1. Load definition

Loads are defined using the pattern command. Three types of patterns are currently available:

a. plain Pattern -- this pattern is used to define the following:

i. nodal loads, such as gravity loads and lateral loads (or load-controlled nodal displacements)

ii. single-point constraints, such as displacement control at a node (typically used for a constant displacement at a node)

iii. element loads, such as distributed gravity loads along the element (this is a new option, which still needs documentation).

b. UniformExcitation Pattern -- this type of pattern imposes a user-defined acceleration record to all fixed nodes, in a specified direction.

c. MultipleSupport Pattern -- this type of pattern imposes a user-defined displacement record at specified nodes, in a specified direction, or a ground-motion record.

2. Analysis definition and features

The analysis-definition part of OpenSees allows the user to define the different linear and nonlinear analysis tools available. For each analysis, the following items need to be defined, preferably in this order:

constraints

The constraints command is used to construct the ConstraintHandler object. Constraints enforce a relationship between degrees-of-freedom. The ConstraintHandler object determines how the constraint equations are enforced in the analysis.

numberer

The numberer command is used to construct the DOF_Numberer object. The DOF_Numberer object determines the mapping between equation numbers and degrees-of-freedom -- how degrees-of-freedom are numbered.

system

The system command is used to construct the LinearSOE and LinearSolver objects to store and solve the system of equations in the analysis.

test

The test command is used to construct a ConvergenceTest object. Certain SolutionAlgorithm objects require a ConvergenceTest object to determine if convergence has been achieved at the end of an iteration step.

algorithm

The algorithm command is used to construct a SolutionAlgorithm object, which determines the sequence of steps taken to solve the non-linear equation.

integrator

The integrator command is used to construct the Integrator object. The Integrator object determines the meaning of the terms in the system of equation object. The Integrator object is used for the following:

  • determine the predictive step for time t+dt
  • specify the tangent matrix and residual vector at any iteration
  • determine the corrective step based on the displacement increment dU

analysis

The analysis command is used to construct the Analysis object. This analysis object is constructed with the component objects previously created by the analyst. All currently-available analysis objects employ incremental solution strategies. There are three types of analysis currently available:

Static Analysis

Transient Analysis

VariableTransient Analysis

3. Analysis execution

The analysis is executed using the analyze command. This command moves the analysis forward by the specified number of steps.

Previous Topic

Next Topic