Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
Manifest.toml
LocalPreferences.toml
.vscode/
data/
*.swp
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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]

## [0.9.10] - 2026-3-24

### Changed

- Updated to Gridap 0.20. Since PR[#120](https://github.com/gridap/GridapEmbedded.jl/pull/120).

## [0.9.9] - 2026-3-9

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GridapEmbedded"
uuid = "8838a6a3-0006-4405-b874-385995508d5d"
authors = ["Francesc Verdugo <f.verdugo.rojano@vu.nl>", "Eric Neiva <eric.neiva@college-de-france.fr>", "Pere Antoni Martorell <pere.antoni.martorell@upc.edu>", "Santiago Badia <santiago.badia@monash.edu>"]
version = "0.9.9"
version = "0.9.10"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down Expand Up @@ -30,7 +30,7 @@ FillArrays = "0.10, 0.11, 0.12, 0.13, 1"
FiniteDiff = "2.27.0"
ForwardDiff = "0.10.38, 1"
Graphs = "1.12.0"
Gridap = "0.18.12, 0.19"
Gridap = "0.20.3"
GridapDistributed = "0.3, 0.4"
MPI = "0.20"
MiniQhull = "0.1.0, 0.2, 0.3, 0.4"
Expand Down
4 changes: 2 additions & 2 deletions src/MomentFittedQuadratures/MomentFittedQuadratures.jl
Original file line number Diff line number Diff line change
Expand Up @@ -159,12 +159,12 @@ function compute_lag_moments_from_leg(cut::AbstractEmbeddedDiscretization,
cut_trian = Triangulation(cut,CUT,geo)
T = eltype(eltype(get_node_coordinates(cut_trian)))
D = num_dims(cut_trian)
b = MonomialBasis{D}(T,degree)
b = MonomialBasis(Val(D),T,degree)
mon_contribs = compute_monomial_domain_contribution(cut,cutf,geo,in_or_out,b,degree)
mon_moments = compute_monomial_cut_cell_moments(cut_trian,mon_contribs,b)
mon_to_leg = Fill(legendreToMonomial(degree,D),num_cells(cut_trian))
leg_moments = lazy_map(*,mon_to_leg,mon_moments)
p = JacobiPolynomialBasis{D}(T,degree)
p = LegendreBasis(Val(D),T,degree)
lag_nodes, lag_to_leg = get_nodes_and_change_of_basis(cut_trian,cut,p,degree)
lag_moments = lazy_map(*,lag_to_leg,leg_moments)
lag_nodes, lag_moments
Expand Down
Loading