From 27a72db26f8843add933a045f7a2a2a62201caec Mon Sep 17 00:00:00 2001 From: Andrea Piacentini Date: Mon, 16 Sep 2024 15:37:17 +0200 Subject: [PATCH] Issue #459 : update input and output coupling field labels lists at configuration. --- .../src/modules/OceanBoundaryModule/OASISCoupledOcean.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/physics/src/modules/OceanBoundaryModule/OASISCoupledOcean.cpp b/physics/src/modules/OceanBoundaryModule/OASISCoupledOcean.cpp index a969b8b17..4428acd0f 100644 --- a/physics/src/modules/OceanBoundaryModule/OASISCoupledOcean.cpp +++ b/physics/src/modules/OceanBoundaryModule/OASISCoupledOcean.cpp @@ -141,9 +141,14 @@ void OASISCoupledOcean::configure() CIceKey = Configured::getConfiguration(CIceConfigKey, CIceKeyDefault); firstLayerDepth = Configured::getConfiguration(layerDepthConfigKey, FIRST_LAYER_DEPTH); + + cplStringsIn + = { SSTKey, SSSKey, UOceanKey, VOceanKey, SSHKey }; if (Configured::getConfiguration(exchangeFirstLayerConfigKey, EXCHANGE_FIRST_LAYER)) { cplStringsIn.push_back(MLDKey); } + cplStringsOut + = { TauXKey, TauYKey, TauModKey, EMPKey, QNoSunKey, QSWKey, SFluxKey, CIceKey }; } OASISCoupledOcean::HelpMap& OASISCoupledOcean::getHelpText(HelpMap& map, bool getAll)