Chaste Commit::f2ff7ee04e70ac9d06c57344df8d017dbb12b97b
SimpleLinearParabolicSolver.hpp
1
2/*
3
4Copyright (c) 2005-2024, University of Oxford.
5All rights reserved.
6
7University of Oxford means the Chancellor, Masters and Scholars of the
8University of Oxford, having an administrative office at Wellington
9Square, Oxford OX1 2JD, UK.
10
11This file is part of Chaste.
12
13Redistribution and use in source and binary forms, with or without
14modification, 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
24THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
28LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
30GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33OF 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
49template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
51 : public AbstractAssemblerSolverHybrid<ELEMENT_DIM, SPACE_DIM, 1, NORMAL>,
52 public AbstractDynamicLinearPdeSolver<ELEMENT_DIM, SPACE_DIM, 1>
53{
54protected:
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
115public:
116
127};
128
129#endif /*SIMPLELINEARPARABOLICSOLVER_HPP_*/
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)
void SetupLinearSystem(Vec currentSolution, bool computeMatrix)
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)
AbstractLinearParabolicPde< ELEMENT_DIM, SPACE_DIM > * mpParabolicPde