Nodes are renumbered at the end of the mesh generation with different algorithms, depending on the value of the GiD variable
RenumberMethod
https://gidsimulation.atlassian.net/wik ... processing
but in fact the kind of numeration that do you want (consecutive on each surface) is in general not possible, because nodes are shared between neighbor surfaces, then the id for a surface could be incompatible with the id for other surface
In any case, independently of the numeration, you can know the nodes of each surface with different approaches. e.g.
a) -you can create a group by surface, and then the nodes will inherit the same group
b)- with a problemtype you can assign to the surfaces a condition with a special question field #FUNC#(NumEntity)
QUESTION: Surface_number#FUNC#(NumEntity)
VALUE: 0
that will be automatically filled with the source surface number
https://gidsimulation.atlassian.net/wik ... +file+.cnd
c) In next GiD 15.1.5d developer version (available in few days) as new the geometric entities will store its mesh entities, and then could ask (without the tricky probemtype condition) for the id of the geometry, with this GiD-Tcl scripting commands:
know the geometry of an element:
GiD_Mesh get element <element_id> geometry_source
(and can also ask for the element's nodes, to know the list of nodes of a surface)
know the mesh of a surface
GiD_Geometry get surface <surface_id> mesh