Skip to content
Snippets Groups Projects
Commit 1367965d authored by Douglas Serson's avatar Douglas Serson Committed by Dave Moxey
Browse files

Fix equispacedoutput for 3DH1D with triangles

(cherry picked from commit bae1e705)
parent 86884abe
No related branches found
No related tags found
No related merge requests found
......@@ -656,14 +656,14 @@ void ProcessEquiSpacedOutput::SetHomogeneousConnectivity(void)
}
// Interior numbering
int mode = np+1;
edge2 = 0;
for (int n = 1; n < np-1; n++)
{
edge2 += np+1-n;
for (int m = 1; m < np-n-1; m++)
{
vId[cnt1+mode] = 4*nel + maxN*4*nel + cnt2;
vId[cnt1+edge2+m] = 4*nel + maxN*4*nel + cnt2;
cnt2++;
mode++;
}
}
cnt1+= newpoints;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment