You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@
3
3
[OasisMove](https://github.com/KVSlab/OasisMove) is a high-level/high-performance open-source Navier-Stokes solver
4
4
written in Python/[FEniCS](https://fenicsproject.org/), and is an extension of the computational fluid dynamics (CFD)
5
5
solver [Oasis](https://github.com/mikaem/Oasis). In OasisMove the Navier-Stokes equations are expressed in the arbitrary
6
-
Lagrangian-Eulerian formulation, which is suitable for handling moving domains. Through verification the solver has
6
+
Lagrangian-Eulerian (ALE) formulation, which is suitable for handling moving domains. Through verification the solver has
7
7
shown to follow theoretical convergence rates, begin second order accurate in time, and second and third order accurate
8
-
in space with P1/P1 and P2/P1 finite elements. Through validation the solver has showed good agreement with existing
8
+
in space with $\mathbb{P_1}/\mathbb{P_1}$ and $\mathbb{P_2}/\mathbb{P_1}$ finite elements. Through validation the solver has showed good agreement with existing
9
9
benchmark results, and demonstrates the ability of the solver to capture vortex patterns in transitional and
When adjusting spatial and temporal resolution is important to know relationship between the cell size and the time-step size, which are closely related through the Courant number ($C$) given by the Courant-Friedrichs-Lewy (CFL) condition:
85
81
86
82
$$
87
-
\begin{align}
88
-
C ={\frac {u\,\Delta t}{\Delta x}} < C_{\max },
89
-
\end{align}
90
-
$$
83
+
C ={\frac {u\,\Delta t}{\Delta x}} < C_{\max },
84
+
$$ (eq:cfl-vortex)
91
85
where $u$ is the velocity magnitude, $\Delta t$ is the time step size, and $\Delta x$ is the length interval. The general consensus is that $C_{\max} = 1$.
Copy file name to clipboardexpand all lines: docs/movingwall.md
-3
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,7 @@ which remains parallel to the x-axis, defined as:
15
15
16
16
```{math}
17
17
:label: eq-wall-height
18
-
\begin{equation}
19
18
h(t) = h_0 (1 + \epsilon e^{-i\omega t}),
20
-
\end{equation}
21
19
```
22
20
23
21
where $\omega$ is the pulsation of the movement, $h_0$ is the mean distance between the symmetry axis $(y = 0)$ and the
@@ -56,7 +54,6 @@ name: vel-wall
56
54
On top, the grid displacement, and on the bottom, the velocity field for the wall-driven channel flow, where the vector arrows have been scaled by the velocity magnitude.
0 commit comments