Ice Sheet System Model  4.18
Code documentation
PetscVec.h
Go to the documentation of this file.
1 
7 #ifndef _PETSCVEC_H_
8 #define _PETSCVEC_H_
9 
10 /*Headers:*/
11 /*{{{*/
12 #ifdef HAVE_CONFIG_H
13  #include <config.h>
14 #else
15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
16 #endif
17 
18 #include "../petscincludes.h"
19 
20 /*}}}*/
21 
22 class PetscVec{
23 
24  public:
25  Vec vector;
26 
27  #ifdef _HAVE_AD_
28  IssmDouble* avector;
29  #endif
30 
31  /*PetscVec constructors, destructors*/
32  PetscVec();
33  PetscVec(int M,bool fromlocalsize=false);
34  PetscVec(int m,int M);
35  PetscVec(IssmDouble* buffer, int M);
36  PetscVec(Vec petsc_vec);
37  ~PetscVec();
38 
39  /*PetscVec specific routines*/
40  void Echo(void);
41  void Assemble(void);
42  void SetValues(int ssize, int* list, IssmDouble* values, InsMode mode);
43  void SetValue(int dof, IssmDouble value, InsMode mode);
44  void GetValue(IssmDouble* pvalue, int dof);
45  void GetSize(int* pM);
46  void GetLocalSize(int* pM);
47  void GetLocalVector(IssmDouble** pvector,int** pindices);
48  PetscVec* Duplicate(void);
49  void Set(IssmDouble value);
50  void AXPY(PetscVec* X, IssmDouble a);
51  void AYPX(PetscVec* X, IssmDouble a);
52  IssmDouble* ToMPISerial(void);
53  IssmDouble* ToMPISerial0(void);
54  void Shift(IssmDouble shift);
55  void Copy(PetscVec* to);
56  IssmDouble Norm(NormMode norm_type);
57  IssmDouble Max(void);
58  void Scale(IssmDouble scale_factor);
59  void Pow(IssmDouble scale_factor);
60  void PointwiseDivide(PetscVec* x,PetscVec* y);
61  void PointwiseMult(PetscVec* x,PetscVec* y);
63 };
64 
65 #endif //#ifndef _PETSCVEC_H_
PetscVec::AYPX
void AYPX(PetscVec *X, IssmDouble a)
Definition: PetscVec.cpp:183
PetscVec::SetValues
void SetValues(int ssize, int *list, IssmDouble *values, InsMode mode)
Definition: PetscVec.cpp:90
IssmDouble
double IssmDouble
Definition: types.h:37
PetscVec::Max
IssmDouble Max(void)
Definition: PetscVec.cpp:218
PetscVec::PetscVec
PetscVec()
Definition: PetscVec.cpp:21
PetscVec::GetLocalSize
void GetLocalSize(int *pM)
Definition: PetscVec.cpp:117
PetscVec::PointwiseMult
void PointwiseMult(PetscVec *x, PetscVec *y)
Definition: PetscVec.cpp:267
PetscVec::GetValue
void GetValue(IssmDouble *pvalue, int dof)
Definition: PetscVec.cpp:104
PetscVec::Dot
IssmDouble Dot(PetscVec *vector)
Definition: PetscVec.cpp:251
PetscVec::vector
Vec vector
Definition: PetscVec.h:25
PetscVec::Scale
void Scale(IssmDouble scale_factor)
Definition: PetscVec.cpp:237
PetscVec::Shift
void Shift(IssmDouble shift)
Definition: PetscVec.cpp:206
PetscVec::~PetscVec
~PetscVec()
Definition: PetscVec.cpp:70
PetscVec::Assemble
void Assemble(void)
Definition: PetscVec.cpp:82
PetscVec::ToMPISerial0
IssmDouble * ToMPISerial0(void)
Definition: PetscVec.cpp:198
PetscVec::GetSize
void GetSize(int *pM)
Definition: PetscVec.cpp:111
PetscVec::Duplicate
PetscVec * Duplicate(void)
Definition: PetscVec.cpp:158
PetscVec::GetLocalVector
void GetLocalVector(IssmDouble **pvector, int **pindices)
Definition: PetscVec.cpp:123
PetscVec::Norm
IssmDouble Norm(NormMode norm_type)
Definition: PetscVec.cpp:228
NormMode
NormMode
Definition: toolkitsenums.h:15
PetscVec::PointwiseDivide
void PointwiseDivide(PetscVec *x, PetscVec *y)
Definition: PetscVec.cpp:260
PetscVec::AXPY
void AXPY(PetscVec *X, IssmDouble a)
Definition: PetscVec.cpp:176
PetscVec::Copy
void Copy(PetscVec *to)
Definition: PetscVec.cpp:212
PetscVec
Definition: PetscVec.h:22
InsMode
InsMode
Definition: toolkitsenums.h:14
PetscVec::Pow
void Pow(IssmDouble scale_factor)
Definition: PetscVec.cpp:244
PetscVec::Echo
void Echo(void)
Definition: PetscVec.cpp:76
PetscVec::ToMPISerial
IssmDouble * ToMPISerial(void)
Definition: PetscVec.cpp:190
PetscVec::Set
void Set(IssmDouble value)
Definition: PetscVec.cpp:169
PetscVec::SetValue
void SetValue(int dof, IssmDouble value, InsMode mode)
Definition: PetscVec.cpp:97