SubstructuringAnalysis.hGo 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.2 $ 00022 // $Date: 2005/11/29 23:36:47 $ 00023 // $Source: /usr/local/cvs/OpenSees/SRC/analysis/analysis/SubstructuringAnalysis.h,v $ 00024 00025 00026 // Written: fmk 00027 // Created: Tue Sept 17 16:34:47: 1996 00028 // Revision: A 00029 // 00030 // Description: This file contains the class definition for 00031 // SubstructuringAnalysis. SubstructuringAnalysis is a subclass 00032 // of AnalysisAnalysis, it is used when performing a domain decomposition 00033 // analysis. It provides methods which can be invoked by a subdomain to 00034 // perform the numerical computations required. 00035 // 00036 // What: "@(#) SubstructuringAnalysis.h, revA" 00037 00038 #ifndef SubstructuringAnalysis_h 00039 #define SubstructuringAnalysis_h 00040 00041 #include <DomainDecompositionAnalysis.h> 00042 #include <Matrix.h> 00043 #include <Vector.h> 00044 00045 class ConstraintHandler; 00046 class DOF_Numberer; 00047 class AnalysisModel; 00048 class IncrementalIntegrator; 00049 class LinearSOE; 00050 class DomainSolver; 00051 class DomainDecompAlgo; 00052 class Subdomain; 00053 class Vector; 00054 00055 class SubstructuringAnalysis: public DomainDecompositionAnalysis 00056 { 00057 public: 00058 SubstructuringAnalysis(Subdomain &theDomain, 00059 ConstraintHandler &theHandler, 00060 DOF_Numberer &theNumberer, 00061 AnalysisModel &theModel, 00062 DomainDecompAlgo &theSolnAlgo, 00063 IncrementalIntegrator &theIntegrator, 00064 LinearSOE &theSOE, 00065 DomainSolver &theSolver); 00066 00067 virtual int analyze(void); 00068 virtual ~SubstructuringAnalysis(); 00069 00070 protected: 00071 00072 private: 00073 }; 00074 00075 #endif 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 |