after getting dedalus running, I would like to generate a set-up for cylindrical geometry. A finite cylindrical gap or Taylor-Couette system with non-axisymmetric flow. Anybody here, who has done this already?
I found an older script for axisymmetric Taylor Couette flows. What would be a good basis to extend it first to be 3D (Chebyshev/Fourier/Fourier?) and in a second step to have a finite height?
Is there a description of possible basis functions, time stepping methods, boundary conditions and how to apply them? What does left_bc/right_bc mean in a 2D domain? Is there top_bc/bottom_bc as well?
Thank you.
Marcus
--
You received this message because you are subscribed to the Google Groups "Dedalus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dedalus-user...@googlegroups.com.
To post to this group, send email to dedalu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dedalus-users/a5a69e01-c32a-4fdd-a102-8d125f11dbe4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/dedalus-users/CAHqBLzzuzHNw0q9ahO7zq-p1kgwT%2BiSRgi3f2iD3vVgNguCTnQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dedalus-users/C67F6CCA-A16E-47BE-839B-EA8924956C01%40gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dedalus-users/C67F6CCA-A16E-47BE-839B-EA8924956C01%40gmail.com.
Hi Marcus,
That is the number of chebyshev polynomials the code expands any non-constant coefficients in.
For example, if you write the curvature terms for cylindrical geometry as 1/r, and r is your chebyshev direction, you'd need to expand that coefficient. This is technically independent of the number of modes you expand the domain in. However, 1/r takes a lot of coefficients to accurately represent it. This is what Ben was talking about: if instead you multiply the equations through to make the coefficients r on the non curvature terms, you can set the order to 2.
I will send you a notebook explaining this later today.
Jeff
--
You received this message because you are subscribed to the Google Groups "Dedalus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dedalus-user...@googlegroups.com.
To post to this group, send email to dedalu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dedalus-users/5153fb73-02e1-40c2-9dbe-421200350ff5%40googlegroups.com.
MarcusCheersHello Jeff,BTW I implemented the induction equation as well and checked the TC dynamo (Willis A&A 2006). Onset looks good, but unfortunately suffers from the same 'instability'. If I get it stably running, it might be a nice extension of the dedalus examples. Beside the crashing code, I have also not yet found a clean way to implement the divB=0 condition, because it will be an additional equation without adding an independent variable. Not sure how to solve it. Do you now if somebody already tried it using dedalus?
you mentioned your 3D TC script two weeks ago. Meanwhile I extended the 2D version on my own. Not really successful, unfortunately. Solutions might be correct, but the code runs very unstable and crashes after always after few tenth of rotations, independent from resolution or order of expansion of parameters or Reynolds number, even the axisymmetric solutions crash after some time. I can not find a reason. The script is attached. A hint from you (or your script?) would be great. Thank you in advance.