Which method does gyGeo uses to create final geometry #233
-
Hi i was doing Multidisciplinary Design Optimization using Dafoam https://dafoam.github.io/mydoc_get_started_faq.html#can-i-get-the-optimized-geometry-in-a-cad-format. After we have obtained optimized mesh, how does pyGeo use FFD volume with initial geometry to create final optimized CAD geometry. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
hi, have you solved your problem? |
Beta Was this translation helpful? Give feedback.
-
Two main things I want to clarify:
In that sense, only two things are stored in pyGeo:
If you want to get the optimal surface mesh, you supply the optimal design variables to DVGeometry and access the surface mesh coordinates or write them to a Tecplot file. You can also access the underlying deformed BSpline volume that is stored in DVGeometry as a pySpline object. The lack of underlying CAD is a feature of pyGeo because most times we only work with discrete mesh representations of the geometry. |
Beta Was this translation helpful? Give feedback.
Two main things I want to clarify:
In that sense, only two things are stored in pyGeo:
If you want to get the optimal surface mesh, you supply the optimal design variables to DVGeometry and access the surface mesh coordinates or write them to a Tecplot file. You can also acces…