Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members
J2Plasticity Class Reference#include <J2Plasticity.h>
Inheritance diagram for J2Plasticity::
List of all members.
Public Methods |
| J2Plasticity () |
| -------------------Declarations-------------------------------. More...
|
| J2Plasticity (int tag, int classTag, double K, double G, double yield0, double yield_infty, double d, double H, double viscosity=0) |
| full constructor. More...
|
| J2Plasticity (int tag, int classTag, double K, double G) |
| elastic constructor. More...
|
virtual | ~J2Plasticity () |
| destructor. More...
|
virtual NDMaterial* | getCopy (const char *type) |
int | commitState () |
| swap history variables. More...
|
int | revertToLastCommit () |
| revert to last saved state. More...
|
int | revertToStart () |
| revert to start. More...
|
void | Print (ostream &s, int flag=0) |
| print out material data. More...
|
virtual NDMaterial* | getCopy (void) |
virtual const char* | getType (void) const |
virtual int | getOrder (void) const |
virtual int | sendSelf (int commitTag, Channel &theChannel) |
virtual int | recvSelf (int commitTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
Protected Methods |
void | zero () |
| zero internal variables. More...
|
void | plastic_integrator () |
| plasticity integration routine. More...
|
double | q (double xi) |
| hardening function. More...
|
double | qprime (double xi) |
| hardening function derivative. More...
|
virtual void | index_map (int matrix_index, int &i, int &j) |
| matrix index to tensor index mapping. More...
|
Protected Attributes |
double | bulk |
| material parameters. More...
|
double | shear |
| bulk modulus. More...
|
double | sigma_0 |
| shear modulus. More...
|
double | sigma_infty |
| initial yield stress. More...
|
double | delta |
| final saturation yield stress. More...
|
double | Hard |
| exponential hardening parameter. More...
|
double | eta |
| linear hardening parameter. More...
|
Matrix | epsilon_p_n |
| internal variables. More...
|
Matrix | epsilon_p_nplus1 |
| plastic strain time n. More...
|
double | xi_n |
| plastic strain time n+1. More...
|
double | xi_nplus1 |
| xi time n. More...
|
Matrix | stress |
| material response. More...
|
double | tangent [3][3][3][3] |
| stress tensor. More...
|
Matrix | strain |
| material input. More...
|
Static Protected Attributes |
Tensor | rank2 |
Tensor | rank4 |
const double | one3 = 1.0 / 3.0 |
| parameters. More...
|
const double | two3 = 2.0 / 3.0 |
const double | four3 = 4.0 / 3.0 |
const double | root23 = sqrt( 2.0 / 3.0 ) |
Constructor & Destructor Documentation
J2Plasticity::J2Plasticity (
|
)
|
|
|
-------------------Declarations-------------------------------.
Definition at line 76 of file J2Plasticity.cpp. |
J2Plasticity::J2Plasticity (
|
int tag,
|
|
int classTag,
|
|
double K,
|
|
double G,
|
|
double yield0,
|
|
double yield_infty,
|
|
double d,
|
|
double H,
|
|
double viscosity = 0 )
|
|
J2Plasticity::J2Plasticity (
|
int tag,
|
|
int classTag,
|
|
double K,
|
|
double G )
|
|
J2Plasticity::~J2Plasticity (
|
) [virtual]
|
|
Member Function Documentation
void J2Plasticity::Print (
|
ostream & s,
|
|
int flag = 0 ) [virtual]
|
|
int J2Plasticity::commitState (
|
void ) [virtual]
|
|
NDMaterial * J2Plasticity::getCopy (
|
void ) [virtual]
|
|
NDMaterial * J2Plasticity::getCopy (
|
const char * type ) [virtual]
|
|
int J2Plasticity::getOrder (
|
void ) const [virtual]
|
|
const char * J2Plasticity::getType (
|
void ) const [virtual]
|
|
void J2Plasticity::index_map (
|
int matrix_index,
|
|
int & i,
|
|
int & j ) [protected, virtual]
|
|
void J2Plasticity::plastic_integrator (
|
) [protected]
|
|
double J2Plasticity::q (
|
double xi ) [protected]
|
|
double J2Plasticity::qprime (
|
double xi ) [protected]
|
|
|
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 J2AxiSymm, J2PlaneStrain, J2PlaneStress, and J2ThreeDimensional.
Definition at line 589 of file J2Plasticity.cpp. |
int J2Plasticity::revertToLastCommit (
|
void ) [virtual]
|
|
int J2Plasticity::revertToStart (
|
void ) [virtual]
|
|
int J2Plasticity::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 J2AxiSymm, J2PlaneStrain, J2PlaneStress, and J2ThreeDimensional.
Definition at line 582 of file J2Plasticity.cpp. |
void J2Plasticity::zero (
|
) [protected]
|
|
Member Data Documentation
double J2Plasticity::Hard [protected]
|
|
double J2Plasticity::bulk [protected]
|
|
double J2Plasticity::delta [protected]
|
|
Matrix J2Plasticity::epsilon_p_n [protected]
|
|
Matrix J2Plasticity::epsilon_p_nplus1 [protected]
|
|
double J2Plasticity::eta [protected]
|
|
const double J2Plasticity::four3 = 4.0 / 3.0 [static, protected]
|
|
const double J2Plasticity::one3 = 1.0 / 3.0 [static, protected]
|
|
Tensor J2Plasticity::rank2 [static, protected]
|
|
Tensor J2Plasticity::rank4 [static, protected]
|
|
const double J2Plasticity::root23 = sqrt( 2.0 / 3.0 ) [static, protected]
|
|
double J2Plasticity::shear [protected]
|
|
double J2Plasticity::sigma_0 [protected]
|
|
double J2Plasticity::sigma_infty [protected]
|
|
Matrix J2Plasticity::strain [protected]
|
|
Matrix J2Plasticity::stress [protected]
|
|
double J2Plasticity::tangent [protected]
|
|
const double J2Plasticity::two3 = 2.0 / 3.0 [static, protected]
|
|
double J2Plasticity::xi_n [protected]
|
|
double J2Plasticity::xi_nplus1 [protected]
|
|
The documentation for this class was generated from the following files:
|