diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index ebbe121849..c12b58b568 100755 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -1450,6 +1450,13 @@ steps: - "julia --color=yes --project=.buildkite examples/column/fct_advection.jl" artifact_paths: - "examples/column/output/fct_advection/*" + + - label: ":computer: Column TVD Slope-limited Advection Eq" + key: "cpu_tvd_column_advect" + command: + - "julia --color=yes --project=.buildkite examples/column/tvd_advection.jl" + artifact_paths: + - "examples/column/output/tvd_advection/*" - label: ":computer: Column BB FCT Advection Eq" key: "cpu_bb_fct_column_advect" diff --git a/src/Operators/finitedifference.jl b/src/Operators/finitedifference.jl index 071ffdb59f..c334374c78 100644 --- a/src/Operators/finitedifference.jl +++ b/src/Operators/finitedifference.jl @@ -1867,7 +1867,7 @@ struct TVDSlopeLimitedFlux{BCS} <: AdvectionOperator bcs::BCS end -TVDSlopeLimitedFlux(; kwargs...) = TVDSlopeLimitedFlux(NamedTuple(kwargs)) +TVDSlopeLimitedFlux(; method, kwargs...) = TVDSlopeLimitedFlux((;method, kwargs...)) return_eltype(::TVDSlopeLimitedFlux, A, Φ) = Geometry.Contravariant3Vector{eltype(eltype(A))}