Skip to content

Commit 9ff9836

Browse files
committed
Improved documentation of 3D RBC
1 parent 3de8c94 commit 9ff9836

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pySDC/implementations/problem_classes/RayleighBenard3D.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class 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

0 commit comments

Comments
 (0)