mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Declare well support in ifs_tpfa module. Currently not implemented.
Update callers accordingly.
This commit is contained in:
parent
39e55a34cf
commit
60a9bee4ac
@ -110,7 +110,7 @@ namespace Opm
|
||||
}
|
||||
}
|
||||
|
||||
ifs_tpfa_forces F = { NULL, NULL };
|
||||
ifs_tpfa_forces F = { NULL, NULL, NULL, NULL };
|
||||
if (! src.empty()) { F.src = &src[0]; }
|
||||
F.bc = bcs;
|
||||
|
||||
@ -172,7 +172,7 @@ namespace Opm
|
||||
}
|
||||
}
|
||||
|
||||
ifs_tpfa_forces F = { NULL, NULL };
|
||||
ifs_tpfa_forces F = { NULL, NULL, NULL, NULL };
|
||||
if (! src.empty()) { F.src = &src[0]; }
|
||||
F.bc = bcs;
|
||||
|
||||
|
@ -30,6 +30,7 @@ struct ifs_tpfa_impl;
|
||||
struct CSRMatrix;
|
||||
struct FlowBoundaryConditions;
|
||||
struct Wells;
|
||||
struct CompletionData;
|
||||
|
||||
struct ifs_tpfa_data {
|
||||
struct CSRMatrix *A;
|
||||
@ -47,6 +48,9 @@ struct ifs_tpfa_solution {
|
||||
struct ifs_tpfa_forces {
|
||||
const double *src;
|
||||
const struct FlowBoundaryConditions *bc ;
|
||||
|
||||
const struct Wells *W ;
|
||||
const struct CompletionData *Wdata;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user