opm-simulators/mimetic.h

74 lines
2.8 KiB
C
Raw Normal View History

2010-08-20 14:16:59 -05:00
/*
* Copyright (c) 2010 SINTEF ICT, Applied Mathematics
*/
#ifndef MIMETIC_H_INCLUDED
#define MIMETIC_H_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
void mim_ip_span_nullspace(int nf, int nconn, int d,
double *C,
double *A,
double *X,
double *work, int lwork);
void mim_ip_linpress_exact(int nf, int nconn, int d,
double vol, double *K,
double *N,
double *Binv,
double *work, int lwork);
void mim_ip_simple(int nf, int nconn, int d,
double v, double *K, double *C,
double *A, double *N,
double *Binv,
double *work, int lwork);
2010-10-01 07:21:24 -05:00
/** Compute the mimetic inner products given a grid and cellwise
* permeability tensors.
*
* @param ncells Number of cells in grid.
* @param d Number of space dimensions.
* @param max_ncf Maximum number of faces per cell.
* @param ncf Number of faces per cell.
* @param pconn Start indices in conn for each cell, plus end
* marker. The size of pconn is (ncells + 1), and for a
* cell i, [conn[pconn[i]], conn[pconn[i+1]]) is a
* half-open interval containing the indices of faces
* adjacent to i.
* @param conn Cell to face mapping. Size shall be equal to the sum of
* ncf. See pconn for explanation.
* @param fneighbour Face to cell mapping. Its size shall be equal to
* the number of faces times 2. For each face, the
* two entries are either a cell number or -1
* (signifying the outer boundary). The face normal
* points out of the first cell and into the second.
* @param fcentroid Face centroids. Size shall be equal to the number
* of faces times d.
* @param fnormal Face normale. Size shall be equal to the number
* of faces times d.
* @param farea Face areas.
* @param ccentroid Cell centroids. Size shall be ncells*d.
* @param cvol Cell volumes.
* @param perm Permeability. Size shall be ncells*d*d, storing a
* d-by-d positive definite tensor per cell.
* @param[out] Binv This is where the inner product will be
* stored. Its size shall be equal to \f$\sum_i
* n_i^2\f$.
*/
void mim_ip_simple_all(int ncells, int d, int max_ncf, int *ncf,
int *pconn, int *conn,
int *fneighbour, double *fcentroid, double *fnormal,
double *farea, double *ccentroid, double *cvol,
double *perm, double *Binv);
#ifdef __cplusplus
}
#endif
#endif /* MIMETIC_H_INCLUDED */