/usr/include/trilinos/Galeri_LinearProblem.h is in libtrilinos-galeri-dev 12.4.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | // @HEADER
// ************************************************************************
//
// Galeri: Finite Element and Matrix Generation Package
// Copyright (2006) ETHZ/Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions about Galeri? Contact Marzio Sala (marzio.sala _AT_ gmail.com)
//
// ************************************************************************
// @HEADER
#ifndef GALERI_SCALARPROBLEM_H
#define GALERI_SCALARPROBLEM_H
/*!
* \file Galeri_LinearProblem.h
*/
#include "Epetra_Vector.h"
#include "Epetra_CrsGraph.h"
#include "Epetra_CrsMatrix.h"
#include "Epetra_MultiVector.h"
#include "Epetra_Export.h"
#include "Galeri_Utils.h"
#include "Galeri_AbstractGrid.h"
#include "Galeri_AbstractVariational.h"
#include "Galeri_AbstractProblem.h"
#include <limits>
namespace Galeri {
namespace FiniteElements {
/*!
* \class LinearProblem
*
* \brief Basic implementation of scalar finite element problem.
*
* This class fill the linea system matrix (defined as an Epetra_CrsMatrix),
* the right-hand side (defined as an Epetra_MultiVector) and the
* starting solution (defined as a zero Epetra_MultiVector). In the current
* implementation, only one rhs is created.
*
* \note Neumann boundary conditions are still to be fixed.
*
* \author Marzio Sala, SNL 9214.
*
* \date Last updated on Apr-05.
*/
class LinearProblem : public AbstractProblem
{
public:
//! Constructor.
/*!
* \param Grid - (In) Reference to an AbstractGrid object
*
* \param Variational - (In) Reference to an AbstractVariational object
*
* \param A - (In/Out) Epetra_CrsMatrix, whose Map is Grid().RowMap(),
* that will contain the linear system matrix.
*
* \param LHS - (In/Out) Epetra_MultiVector, whose Map is Grid().RowMap(),
* that will contain the starting solution
* (zero vector).
*
* \param RHS - (In/Out) Epetra_MultiVector, whose Map is Grid().RowMap(),
* that will contain the right-hand side.
*/
LinearProblem(const AbstractGrid& Grid,
const AbstractVariational& Variational,
Epetra_CrsMatrix& A, Epetra_MultiVector& LHS,
Epetra_MultiVector& RHS) :
Grid_(Grid),
Variational_(Variational),
A_(A),
LHS_(LHS),
RHS_(RHS)
{}
//! Destructor.
virtual ~LinearProblem() {};
//! Fills the linear system matrix and the right-hand side, zeros out the solution
void Compute()
{
LHS().PutScalar(0.0);
RHS().PutScalar(0.0);
const Epetra_Map& VertexMap = Grid().VertexMap();
Epetra_CrsMatrix LocalA(Copy, VertexMap, 0);
Epetra_Vector LocalRHS(VertexMap);
// get maximum number of unknowns per element
int size = Grid().NumVerticesPerElement();
// allocate elemental matrices and RHS
std::vector<double> ElementMatrix(size * size);
std::vector<double> ElementRHS(size);
std::vector<double> x(size);
std::vector<double> y(size);
std::vector<double> z(size);
std::vector<int> LVID(size);
std::vector<int> GVID(size);
// ==================== //
// Fill matrix elements //
// ==================== //
for (int ie = 0 ; ie < Grid().NumMyElements() ; ++ie)
{
double h = Grid().ElementMaxLength(ie);
Grid().ElementVertices(ie, &LVID[0]);
Grid().VertexCoord(size, &LVID[0], &x[0], &y[0], &z[0]);
// form elemental matrix and rhs for element `ie'
Variational().IntegrateOverElement(Variational(), &x[0], &y[0], &z[0], &h,
&ElementMatrix[0], &ElementRHS[0]);
for (int i = 0 ; i < size ; ++i)
{
long long LLrow = VertexMap.GID64(LVID[i]);
if(LLrow > std::numeric_limits<int>::max())
{
cerr << "LLrow out of int bound" << endl;
cerr << "File " << __FILE__ << ", line " << __LINE__ << endl;
throw(-1);
}
int row = (int) LLrow;
assert (row != -1);
for (int j = 0 ; j < size ; ++j)
{
long long LLcol = VertexMap.GID64(LVID[j]);
if(LLcol > std::numeric_limits<int>::max())
{
cerr << "LLcol out of int bound" << endl;
cerr << "File " << __FILE__ << ", line " << __LINE__ << endl;
throw(-1);
}
int col = (int) LLcol;
double mat_value = ElementMatrix[i + j * size];
#ifdef EPETRA_NO_32BIT_GLOBAL_INDICES
if (LocalA.SumIntoGlobalValues(row, 1, &mat_value, &LLcol) > 0)
LocalA.InsertGlobalValues(row, 1, &mat_value, &LLcol);
#else
if (LocalA.SumIntoGlobalValues(row, 1, &mat_value, &col) > 0)
LocalA.InsertGlobalValues(row, 1, &mat_value, &col);
#endif
}
LocalRHS[LVID[i]] += ElementRHS[i];
}
}
LocalA.FillComplete(VertexMap, VertexMap);
// ========================== //
// impose boundary conditions //
// ========================== //
size = Grid().NumVerticesPerFace();
LVID.resize(size);
GVID.resize(size);
for (int face = 0 ; face < Grid().NumMyBoundaryFaces() ; ++face)
{
int Patch = Grid().FacePatch(face);
int BCType = Variational().BC(Patch);
Grid().FaceVertices(face, Patch, &LVID[0]);
Grid().VertexCoord(size, &LVID[0], &x[0], &y[0], &z[0]);
if (BCType == GALERI_DIRICHLET)
{
for (int j = 0 ; j< size ; ++j)
{
int MyRow = LVID[j];
double value = Variational().BC(x[j], y[j], z[j], Patch);
LocalRHS[MyRow] = value;
int NumEntries = 0;
int* Indices;
double* Values;
LocalA.ExtractMyRowView(MyRow, NumEntries, Values, Indices);
for (int i = 0 ; i < NumEntries ; ++i)
if (Indices[i] == MyRow) {
Values[i] = 1.0;
}
else
Values[i] = 0.0;
}
}
else if (BCType == GALERI_NEUMANN)
{
#if 0
double Area = 0.0; // Grid.FaceArea(face);
for (int j = 0 ; j< size ; ++j)
{
double value = Variational().BC(x[j], y[j], z[j], Patch);
value /= size;
value *= Area;
RHS(Vertices[j]) = value;
}
#endif
cerr << "Still to check..." << endl;
throw(-1);
}
else if (BCType == GALERI_DO_NOTHING)
{
// do nothing here..
}
else
{
cerr << "Type of boundary condition not recognized" << endl;
throw(-1);
}
}
const Epetra_Map& RowMap = Grid().RowMap();
Epetra_Export Exporter(VertexMap, RowMap);
CrsA().Export(LocalA, Exporter, Add);
CrsA().FillComplete();
RHS().Export(LocalRHS, Exporter, Add);
}
//! Computes L2, semi-H1 and H1 norms.
void ComputeNorms(Epetra_MultiVector& RowMatrixField,
int (*ExactSolution)(double, double, double, double *),
const bool verbose = true,
double* Solution = 0, double* Exact = 0, double* Diff = 0)
{
const Epetra_Map& VertexMap = Grid().VertexMap();
//const Epetra_Map& RowMap = Grid().RowMap();
Epetra_MultiVector VertexField(VertexMap, RowMatrixField.NumVectors());
Grid().ExportToVertexMap(RowMatrixField, VertexField);
double NormSol[3], NormSolGlobal[3];
double NormExact[3], NormExactGlobal[3];
double NormDiff[3], NormDiffGlobal[3];
for (int i = 0 ; i < 3 ; ++i)
{
NormSol[i] = 0.0; NormSolGlobal[i] = 0.0;
NormExact[i] = 0.0; NormExactGlobal[i] = 0.0;
NormDiff[i] = 0.0; NormDiffGlobal[i] = 0.0;
}
int size = Grid().NumVerticesPerElement();
std::vector<double> x(size);
std::vector<double> y(size);
std::vector<double> z(size);
std::vector<double> LocalSol(size);
std::vector<int> Vertices(size);
for (int i = 0 ; i < size ; ++i)
{
x[i] = 0.0;
y[i] = 0.0;
z[i] = 0.0;
}
///double xq, yq, zq;
// =========================== //
// roll over all grid elements //
// =========================== //
for (int ie = 0 ; ie < Grid().NumMyElements() ; ++ie)
{
Grid().ElementVertices(ie, &Vertices[0]);
Grid().VertexCoord(size, &Vertices[0], &x[0], &y[0], &z[0]);
for (int i = 0 ; i < size ; ++i)
LocalSol[i] = VertexField[0][Vertices[i]];
Variational().ElementNorm(&LocalSol[0], &x[0], &y[0], &z[0], NormSol);
Variational().ElementNorm(ExactSolution, &x[0], &y[0], &z[0], &NormExact[0]);
Variational().ElementNorm(&LocalSol[0] ,ExactSolution,
&x[0], &y[0], &z[0], NormDiff);
}
Grid().Comm().SumAll((double*)&NormSol, NormSolGlobal, 3);
Grid().Comm().SumAll((double*)&NormExact,NormExactGlobal, 3);
Grid().Comm().SumAll((double*)&NormDiff, NormDiffGlobal, 3);
NormSolGlobal[2] = NormSolGlobal[0] + NormSolGlobal[1];
NormExactGlobal[2] = NormExactGlobal[0] + NormExactGlobal[1];
NormDiffGlobal[2] = NormDiffGlobal[0] + NormDiffGlobal[1];
for (int i = 0 ; i < 3 ; ++i)
{
NormSolGlobal[i] = sqrt(NormSolGlobal[i]);
NormExactGlobal[i] = sqrt(NormExactGlobal[i]);
NormDiffGlobal[i] = sqrt(NormDiffGlobal[i]);
}
if (verbose && Grid().Comm().MyPID() == 0)
{
cout << "|| vector ||_L2 = " << NormSolGlobal[0] << endl;
cout << "|| vector ||_semi-H1 = " << NormSolGlobal[1] << endl;
cout << "|| vector ||_H1 = " << NormSolGlobal[2] << endl;
cout << endl;
cout << "|| exact solution ||_L2 = " << NormExactGlobal[0] << endl;
cout << "|| exact solution ||_semi-H1 = " << NormExactGlobal[1] << endl;
cout << "|| exact solution ||_H1 = " << NormExactGlobal[2] << endl;
cout << endl;
cout << "|| error ||_L2 = " << NormDiffGlobal[0] << endl;
cout << "|| error ||_semi-H1 = " << NormDiffGlobal[1] << endl;
cout << "|| error ||_H1 = " << NormDiffGlobal[2] << endl;
cout << endl;
}
if (Solution)
for (int i = 0 ; i < 3 ; ++i)
Solution[i] = NormSolGlobal[i];
if (Exact)
for (int i = 0 ; i < 3 ; ++i)
Exact[i] = NormExactGlobal[i];
if (Diff)
for (int i = 0 ; i < 3 ; ++i)
Diff[i] = NormDiffGlobal[i];
}
//! Returns a reference to the linear system matrix.
virtual Epetra_RowMatrix& A()
{
return(A_);
}
//! Returns a reference to the linear system matrix as Epetra_CrsMatrix.
virtual Epetra_CrsMatrix& CrsA()
{
return(A_);
}
virtual Epetra_MultiVector& RHS()
{
return(RHS_);
}
virtual Epetra_MultiVector& LHS()
{
return(LHS_);
}
virtual const AbstractGrid& Grid() const
{
return(Grid_);
}
virtual const AbstractVariational& Variational() const
{
return(Variational_);
}
public:
const AbstractGrid& Grid_;
const AbstractVariational& Variational_;
Epetra_CrsMatrix& A_;
Epetra_MultiVector& LHS_;
Epetra_MultiVector& RHS_;
};
} // namespace FiniteElements
} // namespace Galeri
#endif
|