DomainDecompAlgo.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.1.1.1 $ 00022 // $Date: 2000/09/15 08:23:16 $ 00023 // $Source: /usr/local/cvs/OpenSees/SRC/analysis/algorithm/domainDecompAlgo/DomainDecompAlgo.h,v $ 00024 00025 00026 // File: ~/OOP/analysis/algorithm/DomainDecompAlgo.h 00027 // 00028 // Written: fmk 00029 // Created: 10/96 00030 // Revision: A 00031 // 00032 00033 // Description: This file contains the class definition for 00034 // DomainDecompAlgo. DomainDecompAlgo is an abstract base class, 00035 // i.e. no objects of it's type can be created. Its subclasses deifine 00036 // the sequence of operations to be performed in the analysis by static 00037 // equilibrium of a finite element model. 00038 // 00039 // What: "@(#)DomainDecompAlgo.h, revA" 00040 00041 #ifndef DomainDecompAlgo_h 00042 #define DomainDecompAlgo_h 00043 00044 #include <SolutionAlgorithm.h> 00045 00046 class AnalysisModel; 00047 class IncrementalIntegrator; 00048 class LinearSOE; 00049 class DomainSolver; 00050 class DomainDecompAnalysis; 00051 class Subdomain; 00052 00053 class DomainDecompAlgo: public SolutionAlgorithm 00054 { 00055 public: 00056 DomainDecompAlgo(); 00057 ~DomainDecompAlgo(); 00058 00059 // public functions defined for subclasses 00060 int solveCurrentStep(void); 00061 00062 void setLinks(AnalysisModel &theModel, 00063 IncrementalIntegrator &theIntegrator, 00064 LinearSOE &theSOE, 00065 DomainSolver &theSolver, 00066 Subdomain &theSubdomain); 00067 00068 int sendSelf(int cTag, Channel &theChannel); 00069 int recvSelf(int cTag, Channel &theChannel, 00070 FEM_ObjectBroker &theBroker); 00071 00072 protected: 00073 00074 private: 00075 AnalysisModel *theModel; 00076 IncrementalIntegrator *theIntegrator; 00077 LinearSOE *theLinearSOE; 00078 DomainSolver *theSolver; 00079 Subdomain *theSubdomain; 00080 }; 00081 00082 #endif 00083 00084 |