Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

ElasticIsotropicMaterial Class Reference

#include <ElasticIsotropicMaterial.h>

Inheritance diagram for ElasticIsotropicMaterial::

NDMaterial Material TaggedObject MovableObject ElasticIsotropic3D List of all members.

Public Methods

 ElasticIsotropicMaterial (int tag, int classTag, double E, double nu, double rho=0.0)
 Only called by subclasses to pass their tags to NDMaterialModel. More...

 ElasticIsotropicMaterial (int tag, double E, double nu, double rho=0.0)
 Called by clients. More...

 ElasticIsotropicMaterial (void)
 For parallel processing. More...

virtual ~ElasticIsotropicMaterial (void)
virtual double getRho ()
 methods to set state and retrieve state using Matrix and Vector classes. More...

virtual int setTrialStrain (const Vector &v)
virtual int setTrialStrain (const Vector &v, const Vector &r)
virtual int setTrialStrainIncr (const Vector &v)
virtual int setTrialStrainIncr (const Vector &v, const Vector &r)
virtual const MatrixgetTangent (void)
virtual const VectorgetStress (void)
virtual const VectorgetStrain (void)
int setTrialStrain (const Tensor &v)
 methods to set and retrieve state using the Tensor class. More...

int setTrialStrain (const Tensor &v, const Tensor &r)
int setTrialStrainIncr (const Tensor &v)
int setTrialStrainIncr (const Tensor &v, const Tensor &r)
const Tensor& getTangentTensor (void)
const stresstensor getStressTensor (void)
const Tensor& getStrainTensor (void)
virtual int commitState (void)
virtual int revertToLastCommit (void)
virtual int revertToStart (void)
virtual NDMaterialgetCopy (void)
 Called by GenericSectionXD. More...

virtual NDMaterialgetCopy (const char *type)
 Called by the continuum elements. More...

virtual const char* getType (void) const
 Return a string indicating the type of material model. More...

virtual int getOrder (void) const
virtual int sendSelf (int commitTag, Channel &theChannel)
virtual int recvSelf (int commitTag, Channel &theChannel, FEM_ObjectBroker &theBroker)
void Print (ostream &s, int flag=0)
virtual int setParameter (char **argv, int argc, Information &info)
 methods for sensitivity studies. More...

virtual int updateParameter (int parameterID, Information &info)

Protected Attributes

double E
double v
 Elastic modulus. More...

double rho
 Poisson ratio. More...


Detailed Description

ElasticIsotropicMaterial is an abstract class. It provides the interface to which all elastic isotropic material implementations must conform. It also serves as a prototype for all elastic isotropic material implementations, as described by the Prototype pattern in {Design Patterns} by Gamma et al. \

}

Definition at line 60 of file ElasticIsotropicMaterial.h.


Constructor & Destructor Documentation

ElasticIsotropicMaterial::ElasticIsotropicMaterial ( int tag,
int classTag,
double E,
double nu,
double rho = 0.0 )
 

Only called by subclasses to pass their tags to NDMaterialModel.

Definition at line 49 of file ElasticIsotropicMaterial.cpp.

ElasticIsotropicMaterial::ElasticIsotropicMaterial ( int tag,
double E,
double nu,
double rho = 0.0 )
 

Called by clients.

Definition at line 56 of file ElasticIsotropicMaterial.cpp.

ElasticIsotropicMaterial::ElasticIsotropicMaterial ( void )
 

For parallel processing.

ElasticIsotropicMaterial::~ElasticIsotropicMaterial ( void ) [virtual]
 

To construct an ElasticIsotropicMaterial whose unique integer tag among NDMaterials in the domain is given by {tag}, and whose class tag is given by {classTag}. These tags are passed to the NDMaterial class constructor.

Definition at line 62 of file ElasticIsotropicMaterial.cpp.


Member Function Documentation

void ElasticIsotropicMaterial::Print ( ostream & s,
int flag = 0 ) [virtual]
 

A pure virtual function. The component is to output itself to the output stream {s}. The integer {flag} can be used to select just what should be output, by default is passed.

Reimplemented from TaggedObject.

Reimplemented in ElasticIsotropic3D.

Definition at line 319 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::commitState ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 254 of file ElasticIsotropicMaterial.cpp.

NDMaterial * ElasticIsotropicMaterial::getCopy ( const char * type ) [virtual]
 

Called by the continuum elements.

Reimplemented from NDMaterial.

Definition at line 75 of file ElasticIsotropicMaterial.cpp.

NDMaterial * ElasticIsotropicMaterial::getCopy ( void ) [virtual]
 

Called by GenericSectionXD.

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 278 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::getOrder ( void ) const [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 294 of file ElasticIsotropicMaterial.cpp.

double ElasticIsotropicMaterial::getRho ( void ) [virtual]
 

methods to set state and retrieve state using Matrix and Vector classes.

Reimplemented from NDMaterial.

Definition at line 68 of file ElasticIsotropicMaterial.cpp.

const Vector & ElasticIsotropicMaterial::getStrain ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 183 of file ElasticIsotropicMaterial.cpp.

const Tensor & ElasticIsotropicMaterial::getStrainTensor ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 244 of file ElasticIsotropicMaterial.cpp.

const Vector & ElasticIsotropicMaterial::getStress ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 173 of file ElasticIsotropicMaterial.cpp.

const stresstensor ElasticIsotropicMaterial::getStressTensor ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 234 of file ElasticIsotropicMaterial.cpp.

const Matrix & ElasticIsotropicMaterial::getTangent ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 163 of file ElasticIsotropicMaterial.cpp.

const Tensor & ElasticIsotropicMaterial::getTangentTensor ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 225 of file ElasticIsotropicMaterial.cpp.

const char * ElasticIsotropicMaterial::getType ( void ) const [virtual]
 

Return a string indicating the type of material model.

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 286 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::recvSelf ( int commitTag,
Channel & theChannel,
FEM_ObjectBroker & theBroker ) [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.

Reimplemented in ElasticIsotropic3D.

Definition at line 310 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::revertToLastCommit ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 262 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::revertToStart ( void ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 270 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::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.

Reimplemented in ElasticIsotropic3D.

Definition at line 302 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setParameter ( char ** argv,
int argc,
Information & info ) [virtual]
 

methods for sensitivity studies.

Reimplemented from Material.

Definition at line 330 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setTrialStrain ( const Tensor & v,
const Tensor & r ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 201 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setTrialStrain ( const Tensor & v ) [virtual]
 

methods to set and retrieve state using the Tensor class.

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 193 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setTrialStrain ( const Vector & v,
const Vector & r ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 139 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setTrialStrain ( const Vector & v ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 131 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setTrialStrainIncr ( const Tensor & v,
const Tensor & r ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 217 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setTrialStrainIncr ( const Tensor & v ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 209 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setTrialStrainIncr ( const Vector & v,
const Vector & r ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 155 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::setTrialStrainIncr ( const Vector & v ) [virtual]
 

Reimplemented from NDMaterial.

Reimplemented in ElasticIsotropic3D.

Definition at line 147 of file ElasticIsotropicMaterial.cpp.

int ElasticIsotropicMaterial::updateParameter ( int parameterID,
Information & info ) [virtual]
 

Reimplemented from Material.

Definition at line 336 of file ElasticIsotropicMaterial.cpp.


Member Data Documentation

double ElasticIsotropicMaterial::E [protected]
 

Definition at line 153 of file ElasticIsotropicMaterial.h.

double ElasticIsotropicMaterial::rho [protected]
 

Poisson ratio.

Definition at line 155 of file ElasticIsotropicMaterial.h.

double ElasticIsotropicMaterial::v [protected]
 

Elastic modulus.

Definition at line 154 of file ElasticIsotropicMaterial.h.


The documentation for this class was generated from the following files:
Copyright Contact Us