We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Many of the LCS methods are based on "velocity gradient tensor"
In 2D this is
$$ \nabla \mathbf{u} = \begin{bmatrix} \frac{\partial u}{\partial x} & \frac{\partial u}{\partial y} \\ \frac{\partial v}{\partial x} & \frac{\partial v}{\partial y} \end{bmatrix} $$
This can be decomposed into a couple of different components. A key one is the divergence
$$ \delta = \frac{\partial u}{\partial x} + \frac{\partial v}{\partial y} $$
This is always ZERO for QG flow and for geostrophic flow in general it is approximately zero.
Another component is vorticity
$$ \zeta = -\frac{\partial u}{\partial y} + \frac{\partial v}{\partial x} $$
A final one is strain
All of these quantities can be averaged along particle paths and are the foundation for many LCS methods.
The text was updated successfully, but these errors were encountered:
I need to write some notes on this to be more specific about what we want to calculate.
Sorry, something went wrong.
rabernat
No branches or pull requests
Many of the LCS methods are based on "velocity gradient tensor"
In 2D this is
This can be decomposed into a couple of different components. A key one is the divergence
This is always ZERO for QG flow and for geostrophic flow in general it is approximately zero.
Another component is vorticity
A final one is strain
All of these quantities can be averaged along particle paths and are the foundation for many LCS methods.
The text was updated successfully, but these errors were encountered: