OpenAeroStruct
OpenAeroStruct copied to clipboard
Mesh `num_x` restriction
Description
num_x
of a mesh should be able to be any number (even or odd). However, the current code requires num_x
to be 2 or an odd number (it cannot be 4, 6, 8, ...), which doesn't make sense. See:
https://github.com/mdolab/OpenAeroStruct/blob/master/openaerostruct/geometry/utils.py#L649
TODO
- See if I can remove that restriction and the code works with
num_x = 4
- See if the output makes sense physically (do "mesh refinement study" to see the trend)