Chaste  Release::2017.1
SimpleLinearParabolicSolver.hpp
1 
2 /*
3 
4 Copyright (c) 2005-2017, University of Oxford.
5 All rights reserved.
6 
7 University of Oxford means the Chancellor, Masters and Scholars of the
8 University of Oxford, having an administrative office at Wellington
9 Square, Oxford OX1 2JD, UK.
10 
11 This file is part of Chaste.
12 
13 Redistribution and use in source and binary forms, with or without
14 modification, are permitted provided that the following conditions are met:
15  * Redistributions of source code must retain the above copyright notice,
16  this list of conditions and the following disclaimer.
17  * Redistributions in binary form must reproduce the above copyright notice,
18  this list of conditions and the following disclaimer in the documentation
19  and/or other materials provided with the distribution.
20  * Neither the name of the University of Oxford nor the names of its
21  contributors may be used to endorse or promote products derived from this
22  software without specific prior written permission.
23 
24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
28 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
30 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 
35 */
36 
37 #ifndef SIMPLELINEARPARABOLICSOLVER_HPP_
38 #define SIMPLELINEARPARABOLICSOLVER_HPP_
39 
40 #include "AbstractAssemblerSolverHybrid.hpp"
41 #include "AbstractDynamicLinearPdeSolver.hpp"
42 #include "AbstractLinearParabolicPde.hpp"
43 
49 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
51  : public AbstractAssemblerSolverHybrid<ELEMENT_DIM, SPACE_DIM, 1, NORMAL>,
52  public AbstractDynamicLinearPdeSolver<ELEMENT_DIM, SPACE_DIM, 1>
53 {
54 protected:
55 
58 
72  virtual c_matrix<double, 1*(ELEMENT_DIM+1), 1*(ELEMENT_DIM+1)> ComputeMatrixTerm(
73  c_vector<double, ELEMENT_DIM+1>& rPhi,
74  c_matrix<double, SPACE_DIM, ELEMENT_DIM+1>& rGradPhi,
76  c_vector<double,1>& rU,
77  c_matrix<double,1,SPACE_DIM>& rGradU,
79 
90  virtual c_vector<double,1*(ELEMENT_DIM+1)> ComputeVectorTerm(
91  c_vector<double, ELEMENT_DIM+1>& rPhi,
92  c_matrix<double, SPACE_DIM, ELEMENT_DIM+1>& rGradPhi,
94  c_vector<double,1>& rU,
95  c_matrix<double,1,SPACE_DIM>& rGradU,
97 
98 
99  // Note: does not have to provide a ComputeVectorSurfaceTerm for surface integrals,
100  // the parent AbstractAssemblerSolverHybrid assumes natural Neumann BCs and uses a
101  // NaturalNeumannSurfaceTermAssembler for assembling this part of the vector.
102 
110  void SetupLinearSystem(Vec currentSolution, bool computeMatrix)
111  {
112  this->SetupGivenLinearSystem(currentSolution, computeMatrix, this->mpLinearSystem);
113  }
114 
115 public:
116 
127 };
128 
129 #endif /*SIMPLELINEARPARABOLICSOLVER_HPP_*/
AbstractLinearParabolicPde< ELEMENT_DIM, SPACE_DIM > * mpParabolicPde
void SetupLinearSystem(Vec currentSolution, bool computeMatrix)
SimpleLinearParabolicSolver(AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM > *pMesh, AbstractLinearParabolicPde< ELEMENT_DIM, SPACE_DIM > *pPde, BoundaryConditionsContainer< ELEMENT_DIM, SPACE_DIM, 1 > *pBoundaryConditions)
void SetupGivenLinearSystem(Vec currentSolution, bool computeMatrix, LinearSystem *pLinearSystem)
virtual c_matrix< double, 1 *(ELEMENT_DIM+1), 1 *(ELEMENT_DIM+1)> ComputeMatrixTerm(c_vector< double, ELEMENT_DIM+1 > &rPhi, c_matrix< double, SPACE_DIM, ELEMENT_DIM+1 > &rGradPhi, ChastePoint< SPACE_DIM > &rX, c_vector< double, 1 > &rU, c_matrix< double, 1, SPACE_DIM > &rGradU, Element< ELEMENT_DIM, SPACE_DIM > *pElement)
virtual c_vector< double, 1 *(ELEMENT_DIM+1)> ComputeVectorTerm(c_vector< double, ELEMENT_DIM+1 > &rPhi, c_matrix< double, SPACE_DIM, ELEMENT_DIM+1 > &rGradPhi, ChastePoint< SPACE_DIM > &rX, c_vector< double, 1 > &rU, c_matrix< double, 1, SPACE_DIM > &rGradU, Element< ELEMENT_DIM, SPACE_DIM > *pElement)