We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be5278b commit 00673e8Copy full SHA for 00673e8
components/eamxx/src/share/atm_process/atmosphere_process.cpp
@@ -264,7 +264,9 @@ void AtmosphereProcess::setup_step_tendencies () {
264
265
auto f = gn=="UNSET" ? get_field_out(fn) : get_field_out(fn,gn);
266
267
- const auto& tname = this->name() + "_" + tn + "_tend";
+ const auto& tname = this->name() + "_" +
268
+ fn + (gn=="UNSET" ? "" : "_" + gn) +
269
+ "_tend";
270
271
// Create tend and start-of-step fields
272
auto& tend = m_proc_tendencies[fn] = f.clone(tname);
0 commit comments