FeapMaterial03.cppGo to the documentation of this file.00001 /* ****************************************************************** ** 00002 ** OpenSees - Open System for Earthquake Engineering Simulation ** 00003 ** Pacific Earthquake Engineering Research Center ** 00004 ** ** 00005 ** ** 00006 ** (C) Copyright 1999, The Regents of the University of California ** 00007 ** All Rights Reserved. ** 00008 ** ** 00009 ** Commercial use of this program without express permission of the ** 00010 ** University of California, Berkeley, is strictly prohibited. See ** 00011 ** file 'COPYRIGHT' in main directory for information on usage and ** 00012 ** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. ** 00013 ** ** 00014 ** Developed by: ** 00015 ** Frank McKenna (fmckenna@ce.berkeley.edu) ** 00016 ** Gregory L. Fenves (fenves@ce.berkeley.edu) ** 00017 ** Filip C. Filippou (filippou@ce.berkeley.edu) ** 00018 ** ** 00019 ** ****************************************************************** */ 00020 00021 // $Revision: 1.1 $ 00022 // $Date: 2002/10/29 20:26:23 $ 00023 // $Source: /usr/local/cvs/OpenSees/SRC/material/nD/feap/FeapMaterial03.cpp,v $ 00024 00025 // Written: MHS 00026 // Created: June 2001 00027 // 00028 // Description: This file contains the class definition for 00029 // FeapMaterial03. 00030 00031 #include <FeapMaterial03.h> 00032 #include <Vector.h> 00033 00034 FeapMaterial03::FeapMaterial03(int tag, 00035 double K, double G, double sigY, double Hiso): 00036 // 7 history variables and 4 material parameters 00037 FeapMaterial(tag, ND_TAG_FeapMaterial03, 7, 4) 00038 { 00039 ud[0] = K; 00040 ud[1] = G; 00041 ud[2] = sigY; 00042 ud[3] = Hiso; 00043 } 00044 00045 FeapMaterial03::FeapMaterial03(void): 00046 FeapMaterial(0, ND_TAG_FeapMaterial03, 7, 4) 00047 { 00048 // Does nothing 00049 } 00050 00051 FeapMaterial03::~FeapMaterial03(void) 00052 { 00053 // Does nothing 00054 } 00055 00056 int 00057 FeapMaterial03::fillDArray(void) 00058 { 00059 // Look in FEAP programmer's manual 00060 00061 return 0; 00062 } |