|
[Sponsors] |
Structured 2D Euler - wall boundary condition problem |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
March 17, 2018, 22:24 |
Structured 2D Euler - wall boundary condition problem
|
#1 |
New Member
John Peralta
Join Date: Mar 2018
Location: Paris
Posts: 2
Rep Power: 0 |
Hi! I am currently writing a 2D structured cell-centered Euler code using the central spatial discretization scheme with scalar artificial dissipation (JST) and a simple explicit 5-stage R-K solver. Lately, I am stuck debugging the code (it blows up) and I am a bit frustrated so I wanted to ask you for any idea regarding how to fix my problem.
I have implemented the supersonic inlet/outlet farfield boundary conditions (for start) and I am using an O-mesh. I observe that even though I have implemented the wall boundary conditions using ghost cells, the condition for zero-normal velocity on wall is not satisfied. I am getting a "blowing" velocity starting from leading edge and this produces a "cushion" that surrounds the airfoil (see attached screenshots). I am updating the boundary conditions as in the following pseudocode Code:
// Desired values on BC wall face rBC = r[wallcell]; uBC = u[wallcell] - V[haloface]*nx[haloface]; vBC = v[wallcell] - V[haloface]*ny[haloface]; pBC = p[wallcell]; (V is the contravariant velocity and haloface is the same as the wallface with reversed (negative) face vectors) //Then the first layer of halo cells is r[halo1] = rBC; u[halo1] = 2*uBC - _u[wallcell]; v[halo1] = 2*vBC - _v[wallcell]; p[halo1] = pBC; //and the second r[halo2] = rBC; u[halo2] = u[halo1]; v[halo2] = v[halo1]; p[halo2] = pBC; Screenshots -> https://drive.google.com/open?id=16V...PaQUqi7BtAGR1Q Last edited by Peralta; March 18, 2018 at 07:00. Reason: Included functioning link to screenshots. |
|
Tags |
central scheme, euler equations, ghost cells, slip b.c., wall boundary condition |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Question about adaptive timestepping | Guille1811 | CFX | 25 | November 12, 2017 18:38 |
Error - Solar absorber - Solar Thermal Radiation | MichaelK | CFX | 12 | September 1, 2016 06:15 |
Radiation interface | hinca | CFX | 15 | January 26, 2014 18:11 |
rotating pipe flow wall boundary condition problem | preetam69 | FLUENT | 0 | October 8, 2013 12:16 |
Water subcooled boiling | Attesz | CFX | 7 | January 5, 2013 04:32 |