#3846 Make HF- the default pressure drop for MSW and put quotes around the text.

This commit is contained in:
Gaute Lindkvist 2018-12-11 15:31:13 +01:00
parent d78cda3234
commit 5368574848
2 changed files with 2 additions and 2 deletions

View File

@ -274,7 +274,7 @@ void RicWellPathExportMswCompletionsImpl::generateWelsegsTable(RifEclipseDataTab
formatter.add(startMD);
formatter.addValueOrDefaultMarker(exportInfo.topWellBoreVolume(), RicMswExportInfo::defaultDoubleValue());
formatter.add(exportInfo.lengthAndDepthText());
formatter.add(exportInfo.pressureDropText());
formatter.add(QString("'%1'").arg(exportInfo.pressureDropText()));
formatter.rowCompleted();
}

View File

@ -30,7 +30,7 @@ namespace caf {
addItem(RimMswCompletionParameters::HYDROSTATIC, "H--", "Hydrostatic");
addItem(RimMswCompletionParameters::HYDROSTATIC_FRICTION, "HF-", "Hydrostatic + Friction");
addItem(RimMswCompletionParameters::HYDROSTATIC_FRICTION_ACCELERATION, "HFA", "Hydrostatic + Friction + Acceleration");
setDefault(RimMswCompletionParameters::HYDROSTATIC);
setDefault(RimMswCompletionParameters::HYDROSTATIC_FRICTION);
}
template<>