Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members
DisplacementControl Class Reference#include <DisplacementControl.h>
Inheritance diagram for DisplacementControl::
List of all members.
Public Methods |
| DisplacementControl (int node, int dof, double increment, Domain *theDomain, int numIncrStep, double minIncrement, double maxIncrement) |
| ~DisplacementControl () |
int | newStep (void) |
int | update (const Vector &deltaU) |
int | domainChanged (void) |
int | sendSelf (int commitTag, Channel &theChannel) |
int | recvSelf (int commitTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
void | Print (ostream &s, int flag=0) |
| Method provided for Output. More...
|
Detailed Description
DisplacementControl is a subclass of StaticIntegrator, it is used to when performing a static analysis on the FE\_Model using the displacement control method. In the displacement control method the displacement at a specified degree-of-freedom Uc is specified for each iteration. The following constraint equation is added to equation~\ref{staticFormTaylor} of the StaticIntegrator class:
where
depends on
, the displacement increment at the previous time step,
, the number of iterations required to achieve convergence in the previos load step, and
, the desired number of iteraions.
is bounded by
and
. \
SOME THEORY.\
Definition at line 82 of file DisplacementControl.h.
Constructor & Destructor Documentation
DisplacementControl::DisplacementControl (
|
int node,
|
|
int dof,
|
|
double increment,
|
|
Domain * theDomain,
|
|
int numIncrStep,
|
|
double minIncrement,
|
|
double maxIncrement )
|
|
DisplacementControl::~DisplacementControl (
|
)
|
|
Member Function Documentation
void DisplacementControl::Print (
|
ostream & s,
|
|
int flag = 0 ) [virtual]
|
|
int DisplacementControl::domainChanged (
|
void ) [virtual]
|
|
int DisplacementControl::newStep (
|
void ) [virtual]
|
|
|
This is a pure virtual method, one must be written for each instantiable subclass of MovableObject. Each object has to receive the data needed to be able to recreate itself in the new process after it has been sent through {theChannel}. If the object is an aggregation containing other objects, new objects of the correct type can be constructed using {theBroker}. To return
if successful or a
if not.
Reimplemented from MovableObject.
Definition at line 312 of file DisplacementControl.cpp. |
int DisplacementControl::sendSelf (
|
int commitTag,
|
|
Channel & theChannel ) [virtual]
|
|
|
This is a pure virtual method, one must be written for each instantiable subclass of MovableObject. Each object has to send the data needed to be able to reproduce that object in a remote process. The object uses the methods provided by {theChannel} object to send the data to another channel at the remote actor, the address of the channel is set before this method is called. An object of similar type at the remote actor is invoked with a {receiveSelf()} to receive the data. Returns
if successful (successful in that the data got to the channel), or a
if no data was sent.
Reimplemented from MovableObject.
Definition at line 303 of file DisplacementControl.cpp. |
int DisplacementControl::update (
|
const Vector & deltaU ) [virtual]
|
|
The documentation for this class was generated from the following files:
|