Sheared Parabolic Grid Generator

In summary: J.F. and D.R. McCarty, AIAA Journal, Vol. 51, No. 5, Sept. 1987, pp. 1247-1256.In summary, a grid generator is a tool that can be used to create grid points for a Joukowski airfoil. My professor said there might be one out there somewhere, and I just really don't want to spend the next week learning GRIDPRO. If you are unfamiliar with this grid, it's basically a long rectangle that is "wrapped" around the airfoil so that the incoming part of the grid (towards the leading edge) is curved. The grid points are spaced radially outward from the airfoil
  • #1
minger
Science Advisor
1,496
2
Hi,

I have created a program to generate grid points for a Joukowski airfoil. I was wondering if anyone knew of a 2D Sheared Parabolic Grid Generator that I could use to get a grid. If you are unfamiliar with this grid, it's basically a long rectangle that is "wrapped" around the airfoil so that the incoming part of the grid (towards the leading edge) is curved. The grid points are spaced radially outward from the airfoil.

My professor said there might be one out there somewhere. I just really don't want to spend the next week learning GRIDPRO (even though I know it would be useful, I just want to get past this part).

Thanks,
 
Engineering news on Phys.org
  • #2
minger said:
Hi,

I have created a program to generate grid points for a Joukowski airfoil. I was wondering if anyone knew of a 2D Sheared Parabolic Grid Generator that I could use to get a grid. If you are unfamiliar with this grid, it's basically a long rectangle that is "wrapped" around the airfoil so that the incoming part of the grid (towards the leading edge) is curved. The grid points are spaced radially outward from the airfoil.

My professor said there might be one out there somewhere. I just really don't want to spend the next week learning GRIDPRO (even though I know it would be useful, I just want to get past this part).

Thanks,

I think you mean an elliptic generator, don't you?

I did that one year ago for my research when I was undergrad. I made an elliptic grid generator, I remember I meshed a NACA 0012 airfoil (or something like that) for doing potential flow around it, and later I meshed the nose cone of the fairing of a russian rocket launcher. But I coded the generator in Matlab. It's not such a difficult thing, you only have to solve a couple of elliptic partial non linear equations.
 
Last edited:
  • #3
eh...my advisor told me explicitly that it was a sheared parabolic grid that we were going for. I'm pretty new to the CAA field, so I honestly just know what it looks like.

I also think I might have found some fortran70 code that I can change a little bit to work...hopefully.
 
  • #4
minger said:
eh...my advisor told me explicitly that it was a sheared parabolic grid that we were going for. I'm pretty new to the CAA field, so I honestly just know what it looks like.

I also think I might have found some fortran70 code that I can change a little bit to work...hopefully.

Well, I don't know. I have never heard about parabolic meshing. But let me know if you have troubles with the code.
 
  • #5
Alright, after some research, I have an answer. There are three "classes" of mesh-generating schemes based on shearing transformations.
1) Straight through meshes in which one set of mesh lines is roughly parallel to the streamlines of the flow.
2) Meshes wrapping around the leading edge of the wing and passing smoothly off the trailing edge (Parabolic)
3) Meshes wrapping around both the leading and the trailing edge (elliptical)

There are advantages and disadvantages to all three. The parabolic scheme leads to a natural bunching of cells near the trailing edge which lends to a good resolution of the Kutta condition. However, they require the use of comparatively complicated mapping procedures, and the small mesh-width near the trailing edge can lead to a low rate of convergence of the iterative scheme.

Here’s basically how to parabolic mesh (if anyone is interested).

1. Generate a series of gridpoints which lie on the airfoil.

2. Include a “wake” off the trailing edge (otherwise the grid will stop at the end of the airfoil). Note there need to be two sets of points on the wake (so it can “unwrap”).

3. Use the transformation:

(X’ + iY’)² = {x-xo + i(y-yo)}/t

where t is a scaling factor, xo and yo are coordinates of a point just inside the leading edge which will define the origin of the parabolic coordinates; x and y are the gridpoints of the airfoil.

The effect of this transformation “unwraps” the airfoil to form a shallow bump.

4. Then apply a shearing transformation where:

X = X’; Y = Y’ – S(X’,Y’)

Where S(X’,Y’) is the bump we produced. The effect of this transformation basically just flattens the bump into a straight line.

5. Place your grid on top of the straight line.

6. Then go backwards, first finding the inverse of the shearing transformation, then the initial transformation.

ref: Remarks on the calculation of a transonic potential flow by a finite volume method, Jameson
 

1. What is a Sheared Parabolic Grid Generator?

A Sheared Parabolic Grid Generator is a tool used in computational fluid dynamics to generate a mesh grid for simulations. It is a type of structured grid that is commonly used for modeling complex geometries and flow fields.

2. How does a Sheared Parabolic Grid Generator work?

A Sheared Parabolic Grid Generator works by creating a grid based on parabolic curves that are sheared or tilted in a particular direction. The grid is created by dividing the domain into smaller blocks and then connecting them using these parabolic curves.

3. What are the advantages of using a Sheared Parabolic Grid Generator?

One of the main advantages of a Sheared Parabolic Grid Generator is its ability to accurately capture complex geometries and flow fields. It can also produce high-quality grids with smooth transitions and minimal distortion, leading to more accurate simulations.

4. What are the limitations of a Sheared Parabolic Grid Generator?

While a Sheared Parabolic Grid Generator is a powerful tool, it does have some limitations. It may not be suitable for highly unsteady or turbulent flows, as the grid may not adapt quickly enough. It also requires some expertise to use effectively.

5. How is a Sheared Parabolic Grid Generator different from other types of grid generators?

A Sheared Parabolic Grid Generator is different from other types of grid generators, such as structured grids or unstructured grids, in the way it creates the grid. It uses a combination of structured and unstructured techniques, resulting in a more efficient and accurate grid for complex simulations.

Similar threads

  • Electrical Engineering
2
Replies
46
Views
4K
  • Programming and Computer Science
Replies
1
Views
1K
  • Electrical Engineering
Replies
24
Views
2K
  • Special and General Relativity
Replies
1
Views
1K
  • Mechanical Engineering
Replies
5
Views
4K
  • Electrical Engineering
2
Replies
38
Views
5K
  • Mechanics
Replies
7
Views
2K
Replies
10
Views
2K
  • Sci-Fi Writing and World Building
2
Replies
52
Views
4K
  • Aerospace Engineering
Replies
4
Views
7K
Back
Top