00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
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
00055
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