Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

TrigSeries.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.1.1.1 $
00022 // $Date: 2000/09/15 08:23:19 $
00023 // $Source: /usr/local/cvs/OpenSees/SRC/domain/pattern/TrigSeries.h,v $
00024                                                                         
00025                                                                         
00026 #ifndef TrigSeries_h
00027 #define TrigSeries_h
00028 
00029 // File: ~/domain/pattern/TrigSeries.h
00030 //
00031 // Written: MHS 
00032 // Created: July 2000
00033 // Revision: A
00034 //
00035 // Purpose: This file contains the class definition for TrigSeries.
00036 // TrigSeries is a concrete class. A TrigSeries object provides
00037 // a sine time series. the factor is given by the pseudoTime (x),
00038 // pulse period (T), phase shift (phi), i.e. by sin(2*PI*(x-xo)/T + phi),
00039 // and a constant factor provided in the constructor,
00040 // the duration by tStart and tFinal;
00041 //
00042 // What: "@(#) TrigSeries.h, revA"
00043 
00044 #include <TimeSeries.h>
00045 
00047 class TrigSeries : public TimeSeries
00048 {
00049   public:
00051     TrigSeries(double tStart, double tFinish,
00052   double period, double shift, double cFactor = 1.0);
00054     TrigSeries();
00055     
00057     ~TrigSeries();
00058     
00060     double getFactor(double pseudoTime);
00062     double getDuration () {return tFinish-tStart;}
00064     double getPeakFactor () {return cFactor;}
00066     double getTimeIncr (double pseudoTime) {return tFinish-tStart;}
00067     
00069     int sendSelf(int commitTag, Channel &theChannel);
00071     int recvSelf(int commitTag, Channel &theChannel, 
00072    FEM_ObjectBroker &theBroker);
00073 
00075     void Print(ostream &s, int flag =0);    
00076     
00077   protected:
00078  
00079   private:
00081     double tStart;    
00082  double tFinish;   
00083  double period;
00085  double shift;
00087     double cFactor;   // factor = cFactor*sin for tStart <= t <= tFinish
00088 };
00089 
00090 #endif
00091 ÿ
Copyright Contact Us