mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-10 15:15:35 -06:00
add missing Connection serialization in Well
This commit is contained in:
parent
b2b398e217
commit
6bf2f8e285
@ -1406,6 +1406,7 @@ std::size_t packSize(const Well& data,
|
||||
packSize(data.getPolymerProperties(), comm) +
|
||||
packSize(data.getBrineProperties(), comm) +
|
||||
packSize(data.getTracerProperties(), comm) +
|
||||
packSize(data.getConnections(), comm) +
|
||||
packSize(data.getProductionProperties(), comm) +
|
||||
packSize(data.getInjectionProperties(), comm) +
|
||||
packSize(data.hasSegments(), comm);
|
||||
@ -3114,6 +3115,7 @@ void pack(const Well& data,
|
||||
pack(data.getPolymerProperties(), buffer, position, comm);
|
||||
pack(data.getBrineProperties(), buffer, position, comm);
|
||||
pack(data.getTracerProperties(), buffer, position, comm);
|
||||
pack(data.getConnections(), buffer, position, comm);
|
||||
pack(data.getProductionProperties(), buffer, position, comm);
|
||||
pack(data.getInjectionProperties(), buffer, position, comm);
|
||||
pack(data.hasSegments(), buffer, position, comm);
|
||||
@ -5379,6 +5381,7 @@ void unpack(Well& data,
|
||||
unpack(*polymerProperties, buffer, position, comm);
|
||||
unpack(*brineProperties, buffer, position, comm);
|
||||
unpack(*tracerProperties, buffer, position, comm);
|
||||
unpack(*connection, buffer, position, comm);
|
||||
unpack(*production, buffer, position, comm);
|
||||
unpack(*injection, buffer, position, comm);
|
||||
bool hasSegments;
|
||||
|
Loading…
Reference in New Issue
Block a user