ReinfLayer.h

Go 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.3 $
00022 // $Date: 2003/02/14 23:01:37 $
00023 // $Source: /usr/local/cvs/OpenSees/SRC/material/section/repres/reinfLayer/ReinfLayer.h,v $
00024                                                                         
00025                                                                         
00026 // File: ReinfLayer.h
00027 // Written by Remo M. de Souza
00028 // December 1998
00029 
00030 #ifndef ReinfLayer_h 
00031 #define ReinfLayer_h 
00032 
00033 #include <OPS_Globals.h>
00034 
00035 class ReinfBar;
00036 
00037 class ReinfLayer
00038 {
00039   public:
00040 
00041     ReinfLayer();
00042     virtual ~ReinfLayer();
00043     
00044     // edition functions
00045 
00046     virtual void setNumReinfBars     (int numReinfBars)        = 0;
00047     virtual void setMaterialID       (int materialID)          = 0;
00048     virtual void setReinfBarDiameter (double reinfBarDiemater) = 0;
00049     virtual void setReinfBarArea     (double reinfBarArea)     = 0;
00050 
00051     // reinforcing layer inquiring functions
00052     
00053     virtual int         getNumReinfBars     (void) const = 0;
00054     virtual int         getMaterialID       (void) const = 0; 
00055     virtual double      getReinfBarDiameter (void) const = 0;
00056     virtual double      getReinfBarArea     (void) const = 0;
00057     virtual ReinfLayer *getCopy             (void) const = 0;
00058     virtual ReinfBar   *getReinfBars        (void) const = 0;     
00059    
00060     virtual void Print(OPS_Stream &s, int flag =0) const = 0;   
00061     friend OPS_Stream &operator<<(OPS_Stream &s, const ReinfLayer &ReinfLayer);    
00062     
00063   protected:
00064     
00065   private:
00066 };
00067 
00068 
00069 #endif
00070 

Generated on Mon Oct 23 15:05:18 2006 for OpenSees by doxygen 1.5.0