Probelm with Mphys in docker image #161
-
Hello, I am using Mphys in a Docker image to perform aerostructural optimization of wings. Initially, I succeeded in running the tutorial case with the input files provided for the tutorial. However, I later started getting an error even when trying to run the same tutorial case I did before. Here is the error, which is related to TACSBuilder and the mesh file: Computing Denominator Estimate... If anyone has any idea about this, your help would be greatly appreciated. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This is because the version of TACS included in our docker images (v3.3.1) is quite old and the input arguments to the TACS MPhys builder have since changed (see smdogroup/tacs#255). I'm assuming the MPhys example was also updated. So you could either modify your MPhys script to use the old input arguments, or checkout and build the latest version of TACS in your docker image: cd ~/repos/tacs
git checkout master
make clean&&make&&make interface We are working on a big package update for our docker images at the moment (https://github.com/mdolab/docker/pull/266) that will move us up to the latest version of TACS but I'm not sure when that will be merged. |
Beta Was this translation helpful? Give feedback.
-
thank you, I changed the script and it worked |
Beta Was this translation helpful? Give feedback.
This is because the version of TACS included in our docker images (v3.3.1) is quite old and the input arguments to the TACS MPhys builder have since changed (see smdogroup/tacs#255). I'm assuming the MPhys example was also updated. So you could either modify your MPhys script to use the old input arguments, or checkout and build the latest version of TACS in your docker image:
We are working on a big package update for our docker images at the moment (mdolab/docker#266) that will move us up to the latest version of TACS but I'm not sure when that will be merged.