We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f36c376 commit 41624d6Copy full SHA for 41624d6
1 file changed
SU2_CFD/src/solvers/CSolver.cpp
@@ -342,6 +342,10 @@ void CSolver::InitiatePeriodicComms(CGeometry *geometry,
342
343
if (commType == PERIODIC_NONE) return;
344
345
+ if (rotate_periodic && config->GetNEMOProblem()) {
346
+ SU2_MPI::Error("The NEMO solvers do not support rotational periodicity yet.", CURRENT_FUNCTION);
347
+ }
348
+
349
/*--- Local variables ---*/
350
351
bool boundary_i, boundary_j;
@@ -816,7 +820,7 @@ void CSolver::InitiatePeriodicComms(CGeometry *geometry,
816
820
817
821
Rotate(translation, distance, rotCoord_j);
818
822
819
- /*--- Get conservative solution and rotte if necessary. ---*/
823
+ /*--- Get conservative solution and rotate if necessary. ---*/
824
825
for (iVar = 0; iVar < ICOUNT; iVar++)
826
rotPrim_j[iVar] = field(jPoint,iVar);
0 commit comments