Skip to content

Commit

Permalink
modified: .buildkite/pipeline.yml
Browse files Browse the repository at this point in the history
	modified:   src/Operators/finitedifference.jl
  • Loading branch information
Akshay Sridhar authored and Akshay Sridhar committed Nov 14, 2024
1 parent 74aceb4 commit f0e9deb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/Operators/finitedifference.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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))}
Expand Down

0 comments on commit f0e9deb

Please sign in to comment.