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
00040
00041
00042
00043
00044
00045
00046
00047 #ifndef __Teko_InvLSCStrategy_hpp__
00048 #define __Teko_InvLSCStrategy_hpp__
00049
00050 #include "Teko_LSCStrategy.hpp"
00051
00052 namespace Teko {
00053 namespace NS {
00054
00055 class LSCPrecondState;
00056
00066 class InvLSCStrategy : public LSCStrategy {
00067 public:
00069
00070 InvLSCStrategy();
00071 InvLSCStrategy(const Teuchos::RCP<InverseFactory> & factory,
00072 bool rzn=false);
00073 InvLSCStrategy(const Teuchos::RCP<InverseFactory> & factory,
00074 LinearOp & mass,bool rzn=false);
00075 InvLSCStrategy(const Teuchos::RCP<InverseFactory> & invFactF,
00076 const Teuchos::RCP<InverseFactory> & invFactS,
00077 bool rzn=false);
00078 InvLSCStrategy(const Teuchos::RCP<InverseFactory> & invFactF,
00079 const Teuchos::RCP<InverseFactory> & invFactS,
00080 LinearOp & mass,bool rzn=false);
00082
00083 virtual ~InvLSCStrategy() {}
00084
00086
00087
00095 virtual void buildState(BlockedLinearOp & A,BlockPreconditionerState & state) const;
00096
00105 virtual LinearOp getInvBQBt(const BlockedLinearOp & A,BlockPreconditionerState & state) const;
00106
00115 virtual LinearOp getInvBHBt(const BlockedLinearOp & A,BlockPreconditionerState & state) const;
00116
00125 virtual LinearOp getInvF(const BlockedLinearOp & A,BlockPreconditionerState & state) const;
00126
00135
00136 virtual LinearOp getOuterStabilization(const BlockedLinearOp & A,BlockPreconditionerState & state) const;
00137 virtual LinearOp getInnerStabilization(const BlockedLinearOp & A,BlockPreconditionerState & state) const
00138 { return Teuchos::null; }
00139
00148 virtual LinearOp getInvMass(const BlockedLinearOp & A,BlockPreconditionerState & state) const;
00149
00158 virtual LinearOp getHScaling(const BlockedLinearOp & A,BlockPreconditionerState & state) const;
00159
00166 virtual bool useFullLDU() const { return useFullLDU_; }
00167
00173 virtual void setSymmetric(bool isSymmetric)
00174 { isSymmetric_ = isSymmetric; }
00175
00177 virtual void initializeFromParameterList(const Teuchos::ParameterList & pl,
00178 const InverseLibrary & invLib);
00179
00181 virtual Teuchos::RCP<Teuchos::ParameterList> getRequestedParameters() const;
00182
00184 virtual bool updateRequestedParameters(const Teuchos::ParameterList & pl);
00186
00189 virtual void setPressureStabMatrix(const Teko::LinearOp & psm)
00190 { userPresStabMat_ = psm; }
00191
00193 virtual void initializeState(const BlockedLinearOp & A,LSCPrecondState * state) const;
00194
00200 void computeInverses(const BlockedLinearOp & A,LSCPrecondState * state) const;
00201
00202
00203
00204
00206 virtual void setEigSolveParam(int sz) { eigSolveParam_ = sz; }
00207
00209 virtual int getEigSolveParam() { return eigSolveParam_; }
00210
00212 virtual void setUseFullLDU(bool val) { useFullLDU_ = val; }
00213
00215 virtual void setRowZeroing(bool val) { rowZeroingNeeded_ = val; }
00216
00218 virtual void setMassMatrix(const LinearOp & mass) { massMatrix_ = mass; }
00219
00223 virtual void setHScaling(const LinearOp & hScaling) { hScaling_ = hScaling; }
00224
00228 virtual void setHScaling(const MultiVector & hScaling)
00229 { hScaling_ = buildDiagonal(hScaling,"H"); }
00230
00234 virtual void setWScaling(const MultiVector & wScaling)
00235 { wScaling_ = wScaling; }
00236
00237 protected:
00238 LinearOp massMatrix_;
00239
00240
00241 Teuchos::RCP<InverseFactory> invFactoryF_;
00242 Teuchos::RCP<InverseFactory> invFactoryS_;
00243
00244
00245 int eigSolveParam_;
00246
00247
00248 bool rowZeroingNeeded_;
00249 bool useFullLDU_;
00250 bool useMass_;
00251 bool useLumping_;
00252 bool useWScaling_;
00253 DiagonalType scaleType_;
00254 bool isSymmetric_;
00255 bool assumeStable_;
00256
00257
00258 LinearOp userPresStabMat_;
00259 mutable LinearOp hScaling_;
00260 MultiVector wScaling_;
00261
00262 private:
00263 InvLSCStrategy(const InvLSCStrategy &);
00264 };
00265
00266 }
00267 }
00268
00269 #endif