Chaste  Release::2017.1
SimpleNonlinearEllipticSolver.cpp
1 /*
2 
3 Copyright (c) 2005-2017, University of Oxford.
4 All rights reserved.
5 
6 University of Oxford means the Chancellor, Masters and Scholars of the
7 University of Oxford, having an administrative office at Wellington
8 Square, Oxford OX1 2JD, UK.
9 
10 This file is part of Chaste.
11 
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions are met:
14  * Redistributions of source code must retain the above copyright notice,
15  this list of conditions and the following disclaimer.
16  * Redistributions in binary form must reproduce the above copyright notice,
17  this list of conditions and the following disclaimer in the documentation
18  and/or other materials provided with the distribution.
19  * Neither the name of the University of Oxford nor the names of its
20  contributors may be used to endorse or promote products derived from this
21  software without specific prior written permission.
22 
23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 
34 */
35 
36 #include "SimpleNonlinearEllipticSolver.hpp"
37 
38 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
39 c_matrix<double,1*(ELEMENT_DIM+1),1*(ELEMENT_DIM+1)> SimpleNonlinearEllipticSolver<ELEMENT_DIM,SPACE_DIM>::ComputeMatrixTerm(
40  c_vector<double, ELEMENT_DIM+1>& rPhi,
41  c_matrix<double, SPACE_DIM, ELEMENT_DIM+1>& rGradPhi,
43  c_vector<double,1>& rU,
44  c_matrix<double,1,SPACE_DIM>& rGradU,
46 {
47  c_matrix<double, ELEMENT_DIM+1, ELEMENT_DIM+1> ret;
48 
49  c_matrix<double, SPACE_DIM, SPACE_DIM> f_of_u = mpNonlinearEllipticPde->ComputeDiffusionTerm(rX, rU(0));
50  c_matrix<double, SPACE_DIM, SPACE_DIM> f_of_u_prime = mpNonlinearEllipticPde->ComputeDiffusionTermPrime(rX, rU(0));
51 
52  // LinearSourceTerm(x) not needed as it is a constant wrt u
53  double forcing_term_prime = mpNonlinearEllipticPde->ComputeNonlinearSourceTermPrime(rX, rU(0));
54 
55  // Note rGradU is a 1 by SPACE_DIM matrix, the 1 representing the dimension of
56  // u (ie in this problem the unknown is a scalar). r_gradu_0 is rGradU as a vector
57  matrix_row< c_matrix<double, 1, SPACE_DIM> > r_gradu_0(rGradU, 0);
58  c_vector<double, SPACE_DIM> temp1 = prod(f_of_u_prime, r_gradu_0);
59  c_vector<double, ELEMENT_DIM+1> temp1a = prod(temp1, rGradPhi);
60 
61  c_matrix<double, ELEMENT_DIM+1, ELEMENT_DIM+1> integrand_values1 = outer_prod(temp1a, rPhi);
62  c_matrix<double, SPACE_DIM, ELEMENT_DIM+1> temp2 = prod(f_of_u, rGradPhi);
63  c_matrix<double, ELEMENT_DIM+1, ELEMENT_DIM+1> integrand_values2 = prod(trans(rGradPhi), temp2);
64  c_vector<double, ELEMENT_DIM+1> integrand_values3 = forcing_term_prime * rPhi;
65 
66  ret = integrand_values1 + integrand_values2 - outer_prod( scalar_vector<double>(ELEMENT_DIM+1), integrand_values3);
67 
68  return ret;
69 }
70 
71 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
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 {
80  c_vector<double, 1*(ELEMENT_DIM+1)> ret;
81 
82  // For solving an AbstractNonlinearEllipticEquation
83  // d/dx [f(U,x) du/dx ] = -g
84  // where g(x,U) is the forcing term
85  double forcing_term = mpNonlinearEllipticPde->ComputeLinearSourceTerm(rX);
86  forcing_term += mpNonlinearEllipticPde->ComputeNonlinearSourceTerm(rX, rU(0));
87 
88  c_matrix<double, ELEMENT_DIM, ELEMENT_DIM> FOfU = mpNonlinearEllipticPde->ComputeDiffusionTerm(rX, rU(0));
89 
90  // Note rGradU is a 1 by SPACE_DIM matrix, the 1 representing the dimension of
91  // u (ie in this problem the unknown is a scalar). rGradU0 is rGradU as a vector.
92  matrix_row< c_matrix<double, 1, SPACE_DIM> > rGradU0(rGradU, 0);
93  c_vector<double, ELEMENT_DIM+1> integrand_values1 =
94  prod(c_vector<double, ELEMENT_DIM>(prod(rGradU0, FOfU)), rGradPhi);
95 
96  ret = integrand_values1 - (forcing_term * rPhi);
97  return ret;
98 }
99 
100 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
105  : AbstractNonlinearAssemblerSolverHybrid<ELEMENT_DIM,SPACE_DIM,1>(pMesh,pBoundaryConditions),
106  mpNonlinearEllipticPde(pPde)
107 {
108  assert(pPde!=nullptr);
109 }
110 
111 // Explicit instantiation
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)
SimpleNonlinearEllipticSolver(AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM > *pMesh, AbstractNonlinearEllipticPde< SPACE_DIM > *pPde, BoundaryConditionsContainer< ELEMENT_DIM, SPACE_DIM, 1 > *pBoundaryConditions)