API Index
EnvironmentalTransport.AdvectionOperator
EnvironmentalTransport.BCArray
EnvironmentalTransport.ZeroGradBC
EnvironmentalTransport.ZeroGradBCArray
EnvironmentalTransport.Puff
EnvironmentalTransport.get_vf
EnvironmentalTransport.get_Δ
EnvironmentalTransport.l94_stencil
EnvironmentalTransport.ppm_stencil
EnvironmentalTransport.stencil_size
EnvironmentalTransport.stencil_size
EnvironmentalTransport.stencil_size
EnvironmentalTransport.stencil_size
EnvironmentalTransport.upwind1_stencil
EnvironmentalTransport.upwind2_stencil
EnvironmentalTransport.vf_x
EnvironmentalTransport.vf_y
EnvironmentalTransport.vf_z
EnvironmentalTransport.Δf
API Documentation
EnvironmentalTransport.AdvectionOperator
— TypeCreate an EarthSciMLBase.Operator
that performs advection. Advection is performed using the given stencil
operator (e.g. l94_stencil
or ppm_stencil
). p
is an optional parameter set to be used by the stencil operator. bc_type
is the boundary condition type, e.g. ZeroGradBC()
.
Wind field data will be added in automatically if available. Currently the only valid source of wind data is EarthSciData.GEOSFP
.
EnvironmentalTransport.BCArray
— TypeAn array with external indexing implemented for boundary conditions.
EnvironmentalTransport.ZeroGradBC
— TypeZero gradient boundary conditions.
EnvironmentalTransport.ZeroGradBCArray
— TypeAn array with zero gradient boundary conditions.
EnvironmentalTransport.Puff
— MethodPuff(
di::EarthSciMLBase.DomainInfo;
name
) -> ModelingToolkit.ODESystem
Create a Lagrangian transport model which advects a "puff" or particle of matter within a fluid velocity field.
Model boundaries are set by the DomainInfo argument. The model sets boundaries at the ground and model bottom and top, preventing the puff from crossing those boundaries. If the puff reaches one of the horizontal boundaries, the simulation is stopped.
EnvironmentalTransport.get_vf
— Methodget_vf(domain, varname, data_f)
Return a function that gets the wind velocity at a given place and time for the given varname
. data_f
should be a function that takes a time and three spatial coordinates and returns the value of the wind speed in the direction indicated by varname
.
EnvironmentalTransport.get_Δ
— Methodget_Δ(domain, tff, pvaridx)
Return a function that gets the grid spacing at a given place and time for the given varname
.
EnvironmentalTransport.l94_stencil
— Methodl94_stencil(ϕ, U, Δt, Δz; kwargs...)
L94 advection in 1-D (Lin et al., 1994)
- ϕ is the scalar field at the current time step, it should be a vector of length 5.
- U is the velocity at both edges of the central grid cell, it should be a vector of length 2.
- Δt is the length of the time step.
- Δz is the grid spacing.
The output will be time derivative of the central index (i.e. index 3) of the ϕ vector (i.e. dϕ/dt).
(The output is dependent on the Courant number, which depends on Δt, so Δt needs to be an input to the function.)
EnvironmentalTransport.ppm_stencil
— Methodppm_stencil(ϕ, U, Δt, Δz; kwargs...)
PPM advection in 1-D (Collela and Woodward, 1984)
- ϕ is the scalar field at the current time step, it should be a vector of length 8 (3 cells on the left, the central cell, and 4 cells on the right).
- U is the velocity at both edges of the central grid cell, it should be a vector of length 2.
- Δt is the length of the time step.
- Δz is the grid spacing.
The output will be time derivative of the central index (i.e. index 4) of the ϕ vector (i.e. dϕ/dt).
(The output is dependent on the Courant number, which depends on Δt, so Δt needs to be an input to the function.)
EnvironmentalTransport.stencil_size
— MethodReturn the left and right stencil size of the L94 stencil.
EnvironmentalTransport.stencil_size
— MethodReturn the left and right stencil size of the PPM stencil.
EnvironmentalTransport.stencil_size
— MethodReturn the left and right stencil size of the first-order upwind stencil.
EnvironmentalTransport.stencil_size
— MethodReturn the left and right stencil size of the second-order upwind stencil.
EnvironmentalTransport.upwind1_stencil
— Methodupwind1_stencil(ϕ, U, Δt, Δz; p)
First-order upwind advection in 1-D: https://en.wikipedia.org/wiki/Upwind_scheme.
- ϕ is the scalar field at the current time step, it should be a vector of length 3 (1 cell on the left, the central cell, and 1 cell on the right).
- U is the velocity at both edges of the central grid cell, it should be a vector of length 2.
- Δt is the length of the time step.
- Δz is the grid spacing.
The output will be time derivative of the central index (i.e. index 2) of the ϕ vector (i.e. dϕ/dt).
Δt
and p
are not used, but are function arguments for consistency with other operators.
EnvironmentalTransport.upwind2_stencil
— Methodupwind2_stencil(ϕ, U, Δt, Δz; kwargs...)
Second-order upwind advection in 1-D, otherwise known as linear-upwind differencing (LUD): https://en.wikipedia.org/wiki/Upwind_scheme.
- ϕ is the scalar field at the current time step, it should be a vector of length 5 (2 cells on the left, the central cell, and 2 cells on the right).
- U is the velocity at both edges of the central grid cell, it should be a vector of length 2.
- Δt is the length of the time step.
- Δz is the grid spacing.
The output will be time derivative of the central index (i.e. index 3) of the ϕ vector (i.e. dϕ/dt).
(Δt is not used, but is a function argument for consistency with other operators.)
EnvironmentalTransport.vf_x
— MethodGet a value from the x-direction velocity field.
EnvironmentalTransport.vf_y
— MethodGet a value from the y-direction velocity field.
EnvironmentalTransport.vf_z
— MethodGet a value from the z-direction velocity field.
EnvironmentalTransport.Δf
— Methodfunction to get grid deltas.