Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added constructors for DiracDelta with Triangulation argument. #1087

Merged
merged 2 commits into from
Mar 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- Added definition for `DiracDelta` with `Triangulation` argument.

### Fixed


### Changed



## [0.18.10] - 2025-03-04

### Added
Expand Down
25 changes: 25 additions & 0 deletions src/CellData/DiracDeltas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,28 @@ function DiracDelta(model::DiscreteModel{D}, pvec::Vector{Point{D,T}}) where {D,
pmeas = Measure(CellQuadrature(pquad,points,weights_x_cell,trianv,PhysicalDomain(),PhysicalDomain()))
GenericDiracDelta{0,D,NotGridEntity}(trianv,pmeas)
end


function DiracDelta(trian::Triangulation{Dt}, pvec::Vector{Point{D,T}}) where {Dt,D,T}
cell_to_pindices = _cell_to_pindices(pvec,trian)
cell_ids = collect(keys(cell_to_pindices))
cell_points = collect(values(cell_to_pindices))
points = map(i->pvec[cell_points[i]], 1:length(cell_ids))
weights_x_cell = Fill.(one(T),length.(cell_points))
pquad = map(i -> GenericQuadrature(points[i],weights_x_cell[i]), 1:length(cell_ids))
trianv = view(trian,cell_ids)
pmeas = Measure(CellQuadrature(pquad,points,weights_x_cell,trianv,PhysicalDomain(),PhysicalDomain()))
GenericDiracDelta{0,Dt,NotGridEntity}(trianv,pmeas)
end


function DiracDelta(trian::Triangulation{Dt}, p::Point{D,T}) where {Dt,D,T}
cache = _point_to_cell_cache(KDTreeSearch(),trian)
cell = _point_to_cell!(cache, p)
trianv = view(trian,[cell])
point = [p]
weight = [one(T)]
pquad = GenericQuadrature(point,weight)
pmeas = Measure(CellQuadrature([pquad],[pquad.coordinates],[pquad.weights],trianv,PhysicalDomain(),PhysicalDomain()))
GenericDiracDelta{0,Dt,NotGridEntity}(trianv,pmeas)
end
6 changes: 6 additions & 0 deletions test/CellDataTests/DiracDeltasTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,16 @@ p = Point(0.2,0.3)
δ = DiracDelta(model,p)
@test sum(δ(v)) ≈ v(p)

@show δ = DiracDelta(Ω,p)
@test sum(δ(v)) ≈ v(p)

pvec = [p,π*p]
δ = DiracDelta(model,pvec)
@test sum(δ(v)) ≈ sum(v(pvec))

@show δ = DiracDelta(Ω,pvec)
@test sum(δ(v)) ≈ sum(v(pvec))

p = Point(0.2,0.3)
δ = DiracDelta(model,p)
reffe = ReferenceFE(lagrangian,Float64,3)
Expand Down
Loading