Dear support,
I am trying to automate a workflow where I need to rename the 3 fluid zones. However Fluent assigns a default name which I don't know in advance and even if for this case it is easy to guess, I would need to set my own names for more complex simulation cases:

I have a list of points with their coordinates which are inside of each volumetric region:
vol_inlet = { "X": -0.2, "Y": 0.0, "Z": 0.0}
vol_radiator = { "X": -0.01, "Y": 0.0, "Z": 0.0}
vol_outlet = { "X": -0.8, "Y": 0.0, "Z": 0.0}
Is there any method that by inserting the coordinates of a point you can get if the point is within a closed region and get its name or to know if the point is outside the computational domain?
Thank you in advance!