-
Notifications
You must be signed in to change notification settings - Fork 857
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix CGNS mesh reader for multizone problems (one CGNS mesh per zone) #1566
Conversation
… handle multizone cgns
I don't think the fix is as simple as it seems. If we replace line 169 of CGNSFVMMeshReader : if ( nzones > 1 ) { SU2_MPI::Error(string("CGNS reader currently expects only 1 zone per CGNS file.") + string("Multizone problems can be run with separate CGNS files for each zone."), CURRENT_FUNCTION); } by if ( cgnsZone > nzones) { cgnsZone = 1; } we can easily support multiple zone in one file. To support one CGNS zone per file, I guess that user should provide either the index in the cgns file of the zone we want to read or even better its name and not rely on SU2 numbering of zones. I think that supporting multiple mesh zones in the same file at the same time as one zone per mesh file should be possible as long as enough information is provided by the user. In this case, I am wondering how the option MULTIZONE_MESH and MULTIZONE option are interacting in the related issue. When MULTIZONE_MESH is set to NO do we expect one mesh file per zone ? In a more generic way something like this should be possible: CGNSZONENAMES could also be set in each config file. |
Thank you for having a look @MicK7. |
I can provide a multizone mesh. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately I don't have a multizone-cgns mesh at the moment.
But I've tested this fix with my single-zone cgns meshes and I can confirm, that this fix works just as the documentation specifies.
MicK7's suggestion to make the reader also work with multi-zone cgns files would also be nice, but I understand that this requires a lot more work.
Thanks for testing 👍 it's only a bit more work, just needs a quick test. |
1 similar comment
Thanks for testing 👍 it's only a bit more work, just needs a quick test. |
@pcarruscag I will create a separate PR for multizone cgns file. |
Sounds good, thanks. |
@pcarruscag I have a small file with two zones here: https://github.com/MicK7/TestcaseStage37 |
Great, thanks @MicK7. It is a bit big to have as a regression test just for this, but we can certainly use it to test the 1 or 2 lines we need to change to enable multizone cgns, are you planing to make those changes? |
Fixes #1564