Hi
We use a CORFON subroutine to affect the elevation of each points of our mesh, by reading a text file and with a loop like this :
Do I=1, NPOIN
read(11,*) a,b
ZF%R(a)=b
ENDDO
It works in no-parrallel mode.
But in parrallel mode, we use this loop :
DO I=1, 700657
read(11,*) a,b
ZF%R(MESH%KNOGL%I(a)),b
ENDDO
where we had to replace NPOIN by the value of the global number of nodes of our mesh, because NPOIN seems to bo the number of node of a subdomain in parrallel mode.
What's the name of the variable which give the global nimber of nodes of the mesh in parrallel mode ?
Thanks
Regards