Free surface equation
free_surface_equation
This module contains the free surface terms.
All terms implement the UFL residual as it would be on the RHS of the equation:
dq/dt = \sum term
This sign-convention is for compatibility with Thetis's time integrators. In general, however, we like to think about the terms as they are on the LHS. Therefore, in the function below, we assemble in F as it would be on the LHS:
dq/dt + F(q) = 0
and at the very end return "-F".
free_surface_term(eq, trial)
Free Surface term: u \dot n
Source code in g-adopt/gadopt/free_surface_equation.py
22 23 24 25 26 27 28 |
|
mass_term(eq, trial)
Mass term \int test * trial * ds for the free surface time discretisation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
eq |
Equation
|
G-ADOPT Equation. |
required |
trial |
Argument | Indexed | Function
|
Firedrake trial function. |
required |
Returns:
Type | Description |
---|---|
Form
|
The UFL form associated with the mass term of the equation. |
Source code in g-adopt/gadopt/free_surface_equation.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|