Hello everyone,
I am using dolfin-dg to study an euler-like problem:
\partial_t q_j + \nabla_i F_{ij}=0 \\
where:
q = (\rho, \rho u_1 , \rho u_2)^T
F = (\rho \vec{u}, \rho\vec{u} \otimes \vec{u} + \rho I_{2\times 2})^T
I was solving the problem in a rectangular mesh of 30 by 15 with an inflow centered in the lower wall and outflow everywhere else:
The inflow conditions are symmetric with respect to the x = 0 axis. I am imposing boundary conditions with:
bcs = [DGDirichletBC(ds(INLET), gD_inlet),
DGNeumannBC(ds(OUTFLOW), g_out)]
Therefore my question is, is there any way I can solve the problem just in one half of the domain (say x>0) to improve spatial resolution without increasing computation time like they do in here? The domain should look like:
with the left wall beeing a symmetry plane. I think the boundary conditions there should be zero horizontal velocity and \frac{\partial \rho}{\partial y} = 0. But I am not sure of how to implement this.
Thanks.