Skip to content

Commit

Permalink
fix kw arg for PKD vandermonde
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanmontoya committed Sep 9, 2023
1 parent d1d185a commit 760ce83
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/SpatialDiscretizations/tensor_simplex.jl
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function operators_1d(
end

function ReferenceApproximation(
approx_type::Union{NodalTensor,ModalTensor},
approx_type::AbstractTensorProduct,
::Tri; mapping_degree::Int=1, N_plot::Int=10,
volume_quadrature_rule=(LGQuadrature(approx_type.p),
LGQuadrature(approx_type.p)),
Expand Down Expand Up @@ -232,12 +232,13 @@ function ReferenceApproximation(
end

function ReferenceApproximation(
approx_type::Union{NodalTensor,ModalTensor},
approx_type::AbstractTensorProduct,
::Tet; mapping_degree::Int=1, N_plot::Int=10,
volume_quadrature_rule=(LGQuadrature(approx_type.p),
LGQuadrature(approx_type.p), GaussQuadrature(approx_type.p,1,0)),
facet_quadrature_rule=(LGQuadrature(approx_type.p),
GaussQuadrature(approx_type.p,1,0)))
GaussQuadrature(approx_type.p,1,0)),
sum_factorize_vandermonde=true)

# one-dimensional operators
η_1D, q, V_1D, D_1D, I_1D, R_L, R_R = operators_1d(
Expand Down

0 comments on commit 760ce83

Please sign in to comment.