addressing the reviewing comments for PR #3313

This commit is contained in:
Kai Bao
2023-06-29 15:47:00 +02:00
parent 39608fa1ed
commit 508c123eed
8 changed files with 61 additions and 12 deletions

View File

@@ -180,6 +180,7 @@ namespace RestartIO {
serializer(m_defaultSatTabId);
serializer(segment_number);
serializer(m_subject_to_welpi);
serializer(m_filter_cake);
}
private:

View File

@@ -37,6 +37,7 @@ namespace Opm {
};
static FilterCakeGeometry filterCakeGeometryFromString(const std::string& str, const KeywordLocation& location);
static std::string filterCakeGeometryToString(const FilterCakeGeometry& geometry);
FilterCakeGeometry geometry{FilterCakeGeometry::NONE};
double perm{0.};
@@ -61,11 +62,13 @@ namespace Opm {
serializer(sf_multiplier);
}
static FilterCake serializationTestObject();
bool operator==(const FilterCake& other) const;
bool active() const;
void applyCleanMultiplier(const double factor);
static std::string filterCakeToString(const FilterCake& fc);
};
}