Skip to content

Commit b2cf203

Browse files
committed
Fix issue #203
1 parent 2bdbb56 commit b2cf203

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Tutorials"
22
uuid = "ab87341f-2653-5384-8dc6-691ea82e91b3"
3-
authors = ["Santiago Badia <santiago.badia@monash.edu>", "Francesc Verdugo <fverdugo@cimne.upc.edu>"]
43
version = "0.20.0"
4+
authors = ["Santiago Badia <santiago.badia@monash.edu>", "Francesc Verdugo <fverdugo@cimne.upc.edu>"]
55

66
[deps]
77
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
@@ -40,12 +40,13 @@ BlockArrays = "1"
4040
DataStructures = "0.19"
4141
Gridap = "0.20"
4242
GridapDistributed = "0.4"
43-
GridapEmbedded = "0.9.9"
43+
GridapEmbedded = "0.9"
4444
GridapGmsh = "0.7"
4545
GridapP4est = "0.3"
4646
GridapPETSc = "0.5"
4747
GridapSolvers = "0.7"
4848
MPI = "0.20"
49+
PartitionedArrays = "0.3"
4950
SpecialFunctions = "1"
5051
julia = "1.10"
5152

src/poisson_hho.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ R = reconstruction_operator(ptopo,order,Y,Ωp,Γp,dΩp,dΓp)
191191
# - The stabilization term `s`
192192
# - The rhs term `l`
193193

194-
hTinv = CellField(1 ./ collect(get_array((1)dΩp)), Ωp)
194+
hTinv = CellField(1 ./ collect(get_array((1)dΩp) .^ (1/2)), Ωp)
195195

196196
function a(u,v)
197197
Ru_Ω, Ru_Γ = R(u)

0 commit comments

Comments
 (0)