File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
pySDC/implementations/problem_classes Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1111
1212class RayleighBenard3D (GenericSpectralLinear ):
1313 """
14- Rayleigh-Benard Convection is a variation of incompressible Navier-Stokes .
14+ Rayleigh-Benard Convection is a variation of incompressible fluid dynamics .
1515
1616 The equations we solve are
1717
@@ -28,10 +28,11 @@ class RayleighBenard3D(GenericSpectralLinear):
2828
2929 The domain, vertical boundary conditions and pressure gauge are
3030
31- Omega = [0, 8) x (-1, 1)
32- T(z=+1) = 0
33- T(z=-1) = 2
34- u(z=+-1) = v(z=+-1) = 0
31+ Omega = [0, Lx) x [0, Ly) x (0, Lz)
32+ T(z=Lz) = 0
33+ T(z=0) = Lz
34+ u(z=0) = v(z=0) = w(z=0) = 0
35+ u(z=Lz) = v(z=Lz) = w(z=Lz) = 0
3536 integral over p = 0
3637
3738 The spectral discretization uses FFT horizontally, implying periodic BCs, and an ultraspherical method vertically to
You can’t perform that action at this time.
0 commit comments