-
Hello, I'm changing the airfoil shape with SU2_DEF using the Hicks-Henne function. It works well but I like to change the variable value defined in SU2. For Hicks-Henne function is as below, and I know 't' value in SU2 is defined as 3.0. I read some papers that change the value t in SU2. Where can I change the value? I tried to change the t value by changing 'const su2double t2 = 3.0' to 'const su2double t2 = 10.0' in the file '\SU2\Common\src\grid_movement\CSurfaceMovement.cpp', but it didn't work. Maybe I guess it should be a different file to modify. Please give me some advice on this. Even if you are using a different function to change, could you share where to modify the predefined variable values? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You can check in vscode if you access this routine, and also what the value of fk will be after the change. |
Beta Was this translation helpful? Give feedback.
You can check in vscode if you access this routine, and also what the value of fk will be after the change.
So I would run it in debug mode first to make sure that this is the t2 you're looking for.