CalculiX server tool available

See

2 Likes

What purpose would it serve to run the CalculiX solver in a container?

On a POSIX machine, the following gives you a concise report when running a nonlinear analysis. (This is basically a snippet from my standard project Makefile.)
The full output is of course available in the job.log file.

ccx -i job|2>&1 tee job.log | \
grep -E -e 'nodes:|   elements:|actual total time|'
        -e '^ iteration|convergence' \
        -e '^Total CalculiX Time|^ STEP|' \
        -e 'analysis was selected|' \
        -e 'Nonlinear geometric effects' \
        -e '^ Calculating the eigenvalues'

This is a new tool.

So talk also to the developer lukasneo and make an issue in his GitHub project.