mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-23 07:53:29 -06:00
Realign function prototypes. No functional changes.
This commit is contained in:
parent
7970d426ef
commit
4b6b8c0def
@ -915,14 +915,14 @@ assemble_well_contrib(struct cfs_tpfa_res_wells *wells ,
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
static void
|
||||
compute_fpress(struct UnstructuredGrid *G,
|
||||
int np,
|
||||
const double *htrans,
|
||||
const double *pmobf,
|
||||
compute_fpress(struct UnstructuredGrid *G ,
|
||||
int np ,
|
||||
const double *htrans ,
|
||||
const double *pmobf ,
|
||||
const double *gravcap_f,
|
||||
const double *cpress,
|
||||
const double *fflux,
|
||||
double *fpress,
|
||||
const double *cpress ,
|
||||
const double *fflux ,
|
||||
double *fpress ,
|
||||
double *scratch_f)
|
||||
/* ---------------------------------------------------------------------- */
|
||||
{
|
||||
@ -972,13 +972,13 @@ compute_fpress(struct UnstructuredGrid *G,
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
static void
|
||||
compute_flux(struct UnstructuredGrid *G,
|
||||
int np,
|
||||
const double *trans,
|
||||
const double *pmobf,
|
||||
compute_flux(struct UnstructuredGrid *G ,
|
||||
int np ,
|
||||
const double *trans ,
|
||||
const double *pmobf ,
|
||||
const double *gravcap_f,
|
||||
const double *cpress,
|
||||
double *fflux)
|
||||
const double *cpress ,
|
||||
double *fflux )
|
||||
/* ---------------------------------------------------------------------- */
|
||||
{
|
||||
int f, c1, c2, p;
|
||||
@ -1157,17 +1157,17 @@ cfs_tpfa_res_construct(struct UnstructuredGrid *G ,
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
void
|
||||
cfs_tpfa_res_assemble(struct UnstructuredGrid *G,
|
||||
double dt,
|
||||
struct cfs_tpfa_res_forces *forces,
|
||||
const double *zc,
|
||||
struct compr_quantities_gen *cq,
|
||||
const double *trans,
|
||||
cfs_tpfa_res_assemble(struct UnstructuredGrid *G ,
|
||||
double dt ,
|
||||
struct cfs_tpfa_res_forces *forces ,
|
||||
const double *zc ,
|
||||
struct compr_quantities_gen *cq ,
|
||||
const double *trans ,
|
||||
const double *gravcap_f,
|
||||
const double *cpress,
|
||||
const double *wpress,
|
||||
const double *porevol,
|
||||
struct cfs_tpfa_res_data *h)
|
||||
const double *cpress ,
|
||||
const double *wpress ,
|
||||
const double *porevol ,
|
||||
struct cfs_tpfa_res_data *h )
|
||||
/* ---------------------------------------------------------------------- */
|
||||
{
|
||||
int res_is_neumann, well_is_neumann, c, np2;
|
||||
@ -1240,15 +1240,15 @@ cfs_tpfa_res_flux(struct UnstructuredGrid *G ,
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
void
|
||||
cfs_tpfa_res_fpress(struct UnstructuredGrid *G,
|
||||
int np,
|
||||
const double *htrans,
|
||||
const double *pmobf,
|
||||
cfs_tpfa_res_fpress(struct UnstructuredGrid *G ,
|
||||
int np ,
|
||||
const double *htrans ,
|
||||
const double *pmobf ,
|
||||
const double *gravcap_f,
|
||||
struct cfs_tpfa_res_data *h,
|
||||
const double *cpress,
|
||||
const double *fflux,
|
||||
double *fpress)
|
||||
struct cfs_tpfa_res_data *h ,
|
||||
const double *cpress ,
|
||||
const double *fflux ,
|
||||
double *fpress )
|
||||
/* ---------------------------------------------------------------------- */
|
||||
{
|
||||
compute_fpress(G, np, htrans, pmobf, gravcap_f,
|
||||
|
Loading…
Reference in New Issue
Block a user