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

SubstructuringAnalysis.cpp

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:16 $
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 
00066 
00067 :DomainDecompositionAnalysis(the_Domain,handler,numberer,model,
00068         theSolnAlgo,integrator,theLinSOE,theDDSolver) 
00069 {
00070 
00071 }    
00072 
00073 
00074 SubstructuringAnalysis::~SubstructuringAnalysis()
00075 {
00076 
00077 }    
00078 
00079 int 
00080 SubstructuringAnalysis::analyze(void)
00081 {
00082     cerr << "SubstructuringAnalysis::analyze(void)";
00083     cerr << "does nothing and should not have been called\n";
00084     return -1;
00085 }
00086 
Copyright Contact Us