Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members
ElasticIsotropicMaterial Class Reference#include <ElasticIsotropicMaterial.h>
Inheritance diagram for ElasticIsotropicMaterial::
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 Matrix& | getTangent (void) |
virtual const Vector& | getStress (void) |
virtual const Vector& | getStrain (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 NDMaterial* | getCopy (void) |
| Called by GenericSectionXD. More...
|
virtual NDMaterial* | getCopy (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 )
|
|
ElasticIsotropicMaterial::ElasticIsotropicMaterial (
|
int tag,
|
|
double E,
|
|
double nu,
|
|
double rho = 0.0 )
|
|
ElasticIsotropicMaterial::ElasticIsotropicMaterial (
|
void )
|
|
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]
|
|
NDMaterial * ElasticIsotropicMaterial::getCopy (
|
const char * type ) [virtual]
|
|
NDMaterial * ElasticIsotropicMaterial::getCopy (
|
void ) [virtual]
|
|
int ElasticIsotropicMaterial::getOrder (
|
void ) const [virtual]
|
|
double ElasticIsotropicMaterial::getRho (
|
void ) [virtual]
|
|
const Vector & ElasticIsotropicMaterial::getStrain (
|
void ) [virtual]
|
|
const Tensor & ElasticIsotropicMaterial::getStrainTensor (
|
void ) [virtual]
|
|
const Vector & ElasticIsotropicMaterial::getStress (
|
void ) [virtual]
|
|
const stresstensor ElasticIsotropicMaterial::getStressTensor (
|
void ) [virtual]
|
|
const Matrix & ElasticIsotropicMaterial::getTangent (
|
void ) [virtual]
|
|
const Tensor & ElasticIsotropicMaterial::getTangentTensor (
|
void ) [virtual]
|
|
const char * ElasticIsotropicMaterial::getType (
|
void ) const [virtual]
|
|
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]
|
|
int ElasticIsotropicMaterial::revertToStart (
|
void ) [virtual]
|
|
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]
|
|
int ElasticIsotropicMaterial::setTrialStrain (
|
const Tensor & v,
|
|
const Tensor & r ) [virtual]
|
|
int ElasticIsotropicMaterial::setTrialStrain (
|
const Tensor & v ) [virtual]
|
|
int ElasticIsotropicMaterial::setTrialStrain (
|
const Vector & v,
|
|
const Vector & r ) [virtual]
|
|
int ElasticIsotropicMaterial::setTrialStrain (
|
const Vector & v ) [virtual]
|
|
int ElasticIsotropicMaterial::setTrialStrainIncr (
|
const Tensor & v,
|
|
const Tensor & r ) [virtual]
|
|
int ElasticIsotropicMaterial::setTrialStrainIncr (
|
const Tensor & v ) [virtual]
|
|
int ElasticIsotropicMaterial::setTrialStrainIncr (
|
const Vector & v,
|
|
const Vector & r ) [virtual]
|
|
int ElasticIsotropicMaterial::setTrialStrainIncr (
|
const Vector & v ) [virtual]
|
|
int ElasticIsotropicMaterial::updateParameter (
|
int parameterID,
|
|
Information & info ) [virtual]
|
|
Member Data Documentation
double ElasticIsotropicMaterial::E [protected]
|
|
double ElasticIsotropicMaterial::rho [protected]
|
|
double ElasticIsotropicMaterial::v [protected]
|
|
The documentation for this class was generated from the following files:
|