-
Hello dear scientists, I am encountering an error while generating a mesh of a radioactive waste repository at full scale. NamingConventionError: Node name is too long for the grid naming convention. How to change the naming convention to allow bigger mesh size needed for some large scale simulations ? |
Beta Was this translation helpful? Give feedback.
Answered by
acroucher
Mar 21, 2023
Replies: 1 comment 1 reply
-
This means there are not enough unique node names available for the nodes in your mesh. There are a few things you can do:
e.g. if you are creating a rectangular mesh: from mulgrids import *
# define xblocks, yblocks, zblocks lists here...
geo = mulgrid().rectangular(xblocks, yblocks, zblocks,
convention = 0,
chars = ascii_lowercase + ascii_uppercase) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
medhay36
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This means there are not enough unique node names available for the nodes in your mesh. There are a few things you can do:
e.g. if you are creating a rectangular mesh: