Skip to content
Snippets Groups Projects
Commit 1be27e11 authored by jtra's avatar jtra
Browse files

corrected wrong array size in the poisson initialisation routine

git-svn-id: https://ppm.inf.ethz.ch/svn/ppmnumerics/branches/ngtopo/libppmnumerics@1031 7c7fe9aa-52eb-4d9e-b0a8-ba7d787348e9
parent 40ae63f3
No related branches found
No related tags found
No related merge requests found
......@@ -162,8 +162,8 @@
ppmpoisson%nmxy (2) = mesh%nm(2)*2
ppmpoisson%nmxy (3) = mesh%nm(3)*2
!ppmpoisson%nmxyc(1) = (mesh%nm(1)-1)/2+1
!ppmpoisson%nmxyc(1) = mesh%nm(1)*2
ppmpoisson%nmxyc(1) = (mesh%nm(1)*2-1)/2+1
!ppmpoisson%nmxyc(1) = (mesh%nm(1)*2-1)/2+1
ppmpoisson%nmxyc(1) = mesh%nm(1)*2
ppmpoisson%nmxyc(2) = mesh%nm(2)*2
ppmpoisson%nmxyc(3) = mesh%nm(3)*2
ppmpoisson%nmz (1) = (ppmpoisson%nmxyc(1))
......
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