mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Minor gRPC updates
This commit is contained in:
@@ -9,6 +9,7 @@ service GridInfo
|
||||
// This function returns a two dimensional matrix: One row for each grid, starting with the main grid.
|
||||
rpc GetGridCount(Case) returns(GridCount) {}
|
||||
rpc GetGridDimensions(Case) returns (GridDimensions) {}
|
||||
rpc GetCellCount(CellInfoRequest) returns (CellCount) {}
|
||||
rpc GetCellInfoForActiveCells(CellInfoRequest) returns (stream CellInfoArray) {}
|
||||
rpc GetAllCoarseningInfoArray(Case) returns (CoarseningInfoArray) {}
|
||||
rpc GetTimeSteps(Case) returns (TimeStepDates) {}
|
||||
@@ -31,6 +32,12 @@ message Vec3i {
|
||||
int32 k = 3;
|
||||
}
|
||||
|
||||
message CellCount
|
||||
{
|
||||
int32 active_cell_count = 1;
|
||||
int32 reservoir_cell_count = 2;
|
||||
}
|
||||
|
||||
enum PorosityModelType
|
||||
{
|
||||
MATRIX_MODEL = 0;
|
||||
|
||||
Reference in New Issue
Block a user