mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-22 15:33:29 -06:00
6f01206f60
untested, so disable direct MEX building for the time being.
30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
#ifndef MIMETIC_H_INCLUDED
|
|
#define MIMETIC_H_INCLUDED
|
|
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
#endif /* MIMETIC_H_INCLUDED */
|