Dear Dedalus Developers and Community members,
I am trying to use the Dedalus to reproduce the classic cavity flow.
x and z basis are defined as follows:
xbasis = d3.ChebyshevT(coords['x'], size=Nx, bounds=(0, Lx), dealias=dealias)
zbasis = d3.ChebyshevT(coords['z'], size=Nz, bounds=(0, Lz), dealias=dealias)
Following the generalized tau method introduced here, I rewrite the dimensionless Navier-Stokes equation as
I am not sure if my understanding of the tau method is correct.
If the above note is right, tau can be defined as 'dist.Field(name='tau_1', bases=xbasis)'
or 'dist.Field(name='tau_1', bases=zbasis)'
Great thanks in advance.