CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > SU2 > SU2 Shape Design

Need help for the “FFD_SURFACE_POINTS”

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 22, 2014, 01:08
Default Need help for the “FFD_SURFACE_POINTS”
  #1
New Member
 
Yufei ZHANG
Join Date: Dec 2013
Posts: 5
Rep Power: 12
flyyufei is on a distinguished road
In the ONERA M6 optimization test case (V3.0.00 test case folder: TestCases\optimization_rans\steady_oneram6\), the grid file (mesh_ONERAM6_turb.su2) includes the FFD control parameters.
The “FFD_CORNER_POINTS” and “FFD_CONTROL_POINTS” is easy for understanding. But the “FFD_SURFACE_POINTS” is quite confusing. The point indexes are the indexes of the wing surface grid, but the coordinates are not on the wing surface (as shown in the figure).

Is the FFD_SURFACE_POINTS necessary? Is there any tutorial for the FFD definition?

When I use the FFD function with my own grid, the SU2_MDC couldn’t generate the deformed mesh, because the maximum difference of the original and deformed surface grids is very large, even when all of the geometry parameters are 0. I think the problem comes from the FFD_SURFACE_POINTS definition.

Thank you for your help!
Attached Images
File Type: jpg export.jpg (70.7 KB, 42 views)
flyyufei is offline   Reply With Quote

Old   January 23, 2014, 00:29
Default
  #2
New Member
 
Yufei ZHANG
Join Date: Dec 2013
Posts: 5
Rep Power: 12
flyyufei is on a distinguished road
It seems that there is a transformation relationship between the FFD_CONTROL_POINTS and the FFD_SURFACE_POINTS. If the FFD box is a unitary box (x, y, z) = ([0,1], [0,1], [0,1]), the output of SU2_MDC is correct when the coordinates of FFD_SURFACE_POINTS are equal to the surface grid points. If the FFD box is not a unitary box, the FFD_SURFACE_POINTS need to be transformed by a relation. But the relation is not clear.
flyyufei is offline   Reply With Quote

Old   January 28, 2014, 15:44
Default
  #3
Member
 
Trent Lukaczyk
Join Date: Feb 2011
Location: Stanford, CA
Posts: 75
Rep Power: 15
rktchip is on a distinguished road
FFD_SURFACE_POINTS identify which surface grid points are inside the FFD box, and their (u,v,w) parametric location inside the box.
rktchip is offline   Reply With Quote

Old   January 29, 2014, 19:51
Default
  #4
New Member
 
Yufei ZHANG
Join Date: Dec 2013
Posts: 5
Rep Power: 12
flyyufei is on a distinguished road
Quote:
Originally Posted by rktchip View Post
FFD_SURFACE_POINTS identify which surface grid points are inside the FFD box, and their (u,v,w) parametric location inside the box.
Dear rktchip,

Thank you for your reply.
How to define the (u,v,w) parametric location? Is there a transformation tool or code? Thank you!
flyyufei
flyyufei is offline   Reply With Quote

Old   January 30, 2014, 12:40
Default
  #5
Member
 
Tommy Chen
Join Date: Mar 2011
Location: University of Michigan
Posts: 96
Rep Power: 15
Tommy Chen is on a distinguished road
Quote:
Originally Posted by flyyufei View Post
Dear rktchip,

Thank you for your reply.
How to define the (u,v,w) parametric location? Is there a transformation tool or code? Thank you!
flyyufei
Hi Yufei

Are you from the Tsinghua University ?

actually the FFD transformation algorithm could be found in a classicla paper,
http://pages.cpsc.ucalgary.ca/~blob/...others/ffd.pdf
and also http://www.cse.iitd.ernet.in/~pkalra/csl783/ch14ffd.pdf

Cheers
Tommy Chen is offline   Reply With Quote

Old   January 30, 2014, 12:55
Default
  #6
Member
 
Tommy Chen
Join Date: Mar 2011
Location: University of Michigan
Posts: 96
Rep Power: 15
Tommy Chen is on a distinguished road
Quote:
Originally Posted by flyyufei View Post
Dear rktchip,

Thank you for your reply.
How to define the (u,v,w) parametric location? Is there a transformation tool or code? Thank you!
flyyufei
Actually the parametric location is like sort of the (u,v) parameters in NURBS methods, to define the relatively location within the FFD control volume
Tommy Chen is offline   Reply With Quote

Old   February 5, 2014, 20:04
Default
  #7
New Member
 
Yufei ZHANG
Join Date: Dec 2013
Posts: 5
Rep Power: 12
flyyufei is on a distinguished road
Hi Tommy,
Thank you very much for your help. I apologize for my late reply because of the Chinese Spring Festival.
I’m from Tsinghua University in Beijing. How did you know?



Quote:
Originally Posted by Tommy Chen View Post
Hi Yufei

Are you from the Tsinghua University ?

actually the FFD transformation algorithm could be found in a classicla paper,
http://pages.cpsc.ucalgary.ca/~blob/...others/ffd.pdf
and also http://www.cse.iitd.ernet.in/~pkalra/csl783/ch14ffd.pdf

Cheers
flyyufei is offline   Reply With Quote

Old   February 12, 2014, 13:17
Default
  #8
Super Moderator
 
Thomas D. Economon
Join Date: Jan 2013
Location: Stanford, CA
Posts: 271
Rep Power: 14
economon is on a distinguished road
Hi,

Currently, the code uses the 8 control points and the degree for each direction (i,j,k) to compute the locations of the FFD_CONTROL_POINTS (basically just the locations of each {i,j,k} of the structured box) and the FFD_SURFACE_POINTS automatically, i.e., no user intervention is required for FFD_CONTROL_POINTS or FFD_SURFACE_POINTS, only for FFD_CORNER_POINTS.

Therefore, after creating your mesh and supplying the basic definition of the box (degree and corner points), run SU2_MDC with DV_KIND= NO_DEFORMATION in the configuration file, and the remaining information (FFD_CONTROL_POINTS and FFD_SURFACE_POINTS) will be populated automatically for you.

All the best,
Tom
economon is offline   Reply With Quote

Old   February 20, 2014, 06:31
Default
  #9
New Member
 
Yufei ZHANG
Join Date: Dec 2013
Posts: 5
Rep Power: 12
flyyufei is on a distinguished road
Thank you! It works!

Quote:
Originally Posted by economon View Post
Hi,

Currently, the code uses the 8 control points and the degree for each direction (i,j,k) to compute the locations of the FFD_CONTROL_POINTS (basically just the locations of each {i,j,k} of the structured box) and the FFD_SURFACE_POINTS automatically, i.e., no user intervention is required for FFD_CONTROL_POINTS or FFD_SURFACE_POINTS, only for FFD_CORNER_POINTS.

Therefore, after creating your mesh and supplying the basic definition of the box (degree and corner points), run SU2_MDC with DV_KIND= NO_DEFORMATION in the configuration file, and the remaining information (FFD_CONTROL_POINTS and FFD_SURFACE_POINTS) will be populated automatically for you.

All the best,
Tom
flyyufei is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 14:47.