Closed morgan-bc closed 7 years ago
Thanks for filing this. Unfortunately, we have not completely implemented the ALE formulation for the incompressible solver to handle dynamic meshes. If this is something you would be interested in helping develop further, please let us know.
That being said, we should have proper guards (or error messages) that avoid this kind of memory access error in the incompressible case. We'll look into this right away.
We will soon open a feature request for that. So I am gonna close this for now.
Hi, SU2 developers,
When I worked on a 2D vicsid laminar problem with a gird movement, SU2 goes wrong at the time when it computes the BC_HeatFlux_Wall. The condition of the moving wall is setted to be MARKER_HEATFLUX=(wall, 0.0). So I checked the code and found problems in the function CNSSolver::BC_HeatFlux_Wall. The problematic codes are here.
In 2D incompressible cases, the number of conservative variables is 3, so nVar = 3 and the size of Jacobian should be 3x3. The codes
Jacobian_i[nDim+1][0]
has memory acess error. Obviously, the codes are for compressible problems. Can you fix the bug ? What's the right method to compute BC_HeatFlux for incompressoble cases with grid movment ?Another small bug. In function COutput::SetSurfaceCSV_Flow
Pressure is wrong for incompressible problems