Clarification on how to use the EPU command #344
-
Hello, After reviewing the SEACAS documentation, I found that I can join parallel meshes using the EPU (Exodus Parallel Unification) program. I installed and built SEACS on a Linux cluster. I was also able to run the tests, and all tests successfully passed. However, I was curious about how to call the EPU command to combine parallel meshes. For instance, If I run this, then I get an error that the EPU command is not found. I would really appreciate it if someone could clarify its usage. Sourav |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
You need to somehow add the path to the epu command to your environment, or you can add the explicit path to the beginning of the epu command. For example, if the
or
Note that with recent versions of epu, you don't need to add the Hope that is clear and helps... |
Beta Was this translation helpful? Give feedback.
-
If the seacas installation was built with parallel-enabled, then there is a There is also a Another option is that the Hope that helps and isn't too confusing. |
Beta Was this translation helpful? Give feedback.
-
And just for full disclosure.... Most/many systems have a limit on the number of files that an application can have open simultaneously--typically about 1024. If you are running epu in serial mode on a set of files larger than that, then epu will automatically go into a |
Beta Was this translation helpful? Give feedback.
You need to somehow add the path to the epu command to your environment, or you can add the explicit path to the beginning of the epu command. For example, if the
epu
binary is at/usr/local/seacas/bin/epu
, then you could do:or
Note that with recent versions of epu, you don't need to add the
<#of_processors>.<0000>
as long as you only have one set of decomposed files in the directory.Hope that is clear and helps...