Skip to content

Commit

Permalink
removed double definition of DSS_laplace in element_matrices.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
smarras79 committed Nov 8, 2024
1 parent 0c630c5 commit 17202eb
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/kernel/infrastructure/element_matrices.jl
Original file line number Diff line number Diff line change
Expand Up @@ -708,27 +708,6 @@ end
end
end

function DSS_laplace!(L, SD::NSD_2D, Lel::AbstractArray, ω, mesh, metrics, N, T; llump=false)

for iel=1:mesh.nelem

for i=1:mesh.ngl
for j=1:mesh.ngl
ip = mesh.connijk[iel,i,j]
for k =1:mesh.ngl
jp = mesh.connijk[iel,k,j]
L[ip,jp] += metrics.dξdx[iel,i,k]*Lel[i,k]*ω[j]*metrics.dydη[iel,i,k]
end

for l = 1:mesh.ngl
jp = mesh.connijk[iel,i,l]
L[ip,jp] += metrics.dηdy[iel,i,l]*Lel[j,l]*ω[i]*metrics.dxdξ[iel,i,l]
end
end
end
end
end

function DSS_laplace_Laguerre!(L, SD::NSD_2D, Lel::AbstractArray, Lel_lag::AbstractArray, ω, ω_lag, mesh, metrics, metrics_lag, N, T; llump=false)

for iel=1:mesh.nelem
Expand Down

0 comments on commit 17202eb

Please sign in to comment.