Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90373209
petsc_wrapper.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 01:43
Size
2 KB
Mime Type
text/x-c
Expires
Sun, Nov 3, 01:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22057896
Attached To
rAKA akantu
petsc_wrapper.hh
View Options
/**
* @file petsc_wrapper.hh
*
* @author Aurelia Isabel Cuba Ramos <aurelia.cubaramos@epfl.ch>
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Thu Feb 21 2013
* @date last modification: Wed Oct 07 2015
*
* @brief Wrapper of PETSc structures
*
* @section LICENSE
*
* Copyright (©) 2014, 2015 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_PETSC_WRAPPER_HH__
#define __AKANTU_PETSC_WRAPPER_HH__
/* -------------------------------------------------------------------------- */
#include <mpi.h>
#include <petscmat.h>
#include <petscvec.h>
#include <petscao.h>
#include <petscis.h>
#include <petscksp.h>
__BEGIN_AKANTU__
/* -------------------------------------------------------------------------- */
struct
PETScMatrixWrapper
{
Mat
mat
;
AO
ao
;
ISLocalToGlobalMapping
mapping
;
/// MPI communicator for PETSc commands
MPI_Comm
communicator
;
};
/* -------------------------------------------------------------------------- */
struct
PETScSolverWrapper
{
KSP
ksp
;
Vec
solution
;
Vec
rhs
;
// MPI communicator for PETSc commands
MPI_Comm
communicator
;
};
#if not defined(PETSC_CLANGUAGE_CXX)
extern
int
aka_PETScError
(
int
ierr
);
#define CHKERRXX(x) \
do { \
int error = aka_PETScError(x); \
if (error != 0) { AKANTU_EXCEPTION("Error in PETSC"); } \
} while (0)
#endif
__END_AKANTU__
#endif
/* __AKANTU_PETSC_WRAPPER_HH__ */
Event Timeline
Log In to Comment