-
Notifications
You must be signed in to change notification settings - Fork 909
Open
Labels
Description
I am currently working on airfoil shape optimization using SU2, and I have encountered an issue when trying to use the Langtry-Menter (LM) transition model with the SST turbulence model in my simulation. The configuration I am using includes the following setup:
% -------------------- MAIN SOLVER AND PHYSICS DEFINITION --------------------%
% Solver for incompressible RANS equations
SOLVER= INC_RANS
% Use Menter's SST turbulence model
KIND_TURB_MODEL= SST
% Activate Langtry-Menter transition model
KIND_TRANS_MODEL= LM
% Use the 2015 correlation for the LM model just for 3D
LM_OPTIONS= SULUKSNA
% [DIRECT, CONTINUOUS_ADJOINT, DISCRETE_ADJOINT]
MATH_PROBLEM= DIRECT
% Set to CONTINUOUS_ADJOINT for gradient computation
RESTART_SOL= YES
...
However, when I attempt to run the simulation, I encounter the following error:
RuntimeError: Path = /home/user/SU2_Project/design/FFA_W3/FFA_W3_211/incompressible/opj_efficiency/FFD/Thickness_method/DV20/DESIGNS/DSN_001/ADJOINT_EFFICIENCY/,
Command = mpirun -n 8 /usr/local/bin/SU2_CFD_AD config_CFD_AD.cfg
SU2 process returned error '139'
[ubuntu:330017] *** Process received signal ***
[ubuntu:330017] Signal: Segmentation fault (11)
...
It appears that when I enable the Langtry-Menter (LM) transition model, the simulation crashes, and I get a segmentation fault. I have ensured that the transition model is correctly configured, but I am still facing this issue.
Could you please help me identify the problem? Specifically:
- Why am I unable to use the Langtry-Menter model with the SST turbulence model?
- Are there any known issues or additional configurations that need to be applied for the transition model to work in this setup?
- How can I resolve the segmentation fault when using this configuration?
I would appreciate any guidance or suggestions you may have to fix this issue.
Thank you in advance for your help!