SubstructuringAnalysis.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.3 $ 00022 // $Date: 2005/11/29 23:36:47 $ 00023 // $Source: /usr/local/cvs/OpenSees/SRC/analysis/analysis/SubstructuringAnalysis.cpp,v $ 00024 00025 00026 // File: ~/analysis/Analysis/SubstructuringAnalysis.C 00027 // 00028 // Written: fmk 00029 // Created: Tue Sept 17 16:34:47: 1996 00030 // Revision: A 00031 // 00032 // Description: This file contains the class definition for 00033 // SubstructuringAnalysis. SubstructuringAnalysis is a subclass 00034 // of DomainDecompositionAnalysis, it is used to perform the operations 00035 // required of a domain decomposition substructuring method. 00036 // 00037 // What: "@(#) SubstructuringAnalysis.C, revA" 00038 00039 #include <SubstructuringAnalysis.h> 00040 #include <ConstraintHandler.h> 00041 #include <DOF_Numberer.h> 00042 #include <AnalysisModel.h> 00043 #include <LinearSOE.h> 00044 #include <DomainDecompAlgo.h> 00045 #include <DomainSolver.h> 00046 00047 #include <IncrementalIntegrator.h> 00048 #include <Subdomain.h> 00049 00050 #include <Matrix.h> 00051 #include <ID.h> 00052 00053 00054 // Constructor 00055 // sets theModel and theSysOFEqn to 0 and the Algorithm to the one supplied 00056 00057 SubstructuringAnalysis::SubstructuringAnalysis(Subdomain &the_Domain, 00058 ConstraintHandler &handler, 00059 DOF_Numberer &numberer, 00060 AnalysisModel &model, 00061 DomainDecompAlgo &theSolnAlgo, 00062 IncrementalIntegrator &integrator, 00063 LinearSOE &theLinSOE, 00064 DomainSolver &theDDSolver) 00065 :DomainDecompositionAnalysis(the_Domain, 00066 handler, 00067 numberer, 00068 model, 00069 theSolnAlgo, 00070 integrator, 00071 theLinSOE, 00072 theDDSolver) 00073 { 00074 00075 } 00076 00077 00078 SubstructuringAnalysis::~SubstructuringAnalysis() 00079 { 00080 00081 } 00082 00083 int 00084 SubstructuringAnalysis::analyze(void) 00085 { 00086 opserr << "SubstructuringAnalysis::analyze(void)"; 00087 opserr << "does nothing and should not have been called\n"; 00088 return -1; 00089 } 00090 |