FeapMaterial02.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/FeapMaterial02.cpp,v $ 00024 00025 // Written: MHS 00026 // Created: June 2001 00027 // 00028 // Description: This file contains the class definition for 00029 // FeapMaterial02. 00030 00031 #include <FeapMaterial02.h> 00032 #include <Vector.h> 00033 00034 FeapMaterial02::FeapMaterial02(int tag, 00035 double K, double G, double muK, double muG, 00036 double lamK, double lamG, double theta): 00037 // 14 history variables and 7 material parameters 00038 FeapMaterial(tag, ND_TAG_FeapMaterial02, 14, 7) 00039 { 00040 ud[0] = K; 00041 ud[1] = G; 00042 ud[2] = muK; 00043 ud[3] = muG; 00044 ud[4] = lamK; 00045 ud[5] = lamG; 00046 ud[6] = theta; 00047 } 00048 00049 FeapMaterial02::FeapMaterial02(void): 00050 FeapMaterial(0, ND_TAG_FeapMaterial02, 14, 7) 00051 { 00052 // Does nothing 00053 } 00054 00055 FeapMaterial02::~FeapMaterial02(void) 00056 { 00057 // Does nothing 00058 } 00059 00060 int 00061 FeapMaterial02::fillDArray(void) 00062 { 00063 // Look in FEAP programmer's manual 00064 00065 return 0; 00066 } |