Skip to content

Commit 0634ce1

Browse files
Merge remote-tracking branch 'origin/main' into tm/use_mesh_specialized_eachelement
2 parents 90a534d + 966293e commit 0634ce1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "TrixiAtmo"
22
uuid = "c9ed1054-d170-44a9-8ee2-d5566f5d1389"
33
authors = ["Benedict Geihe <bgeihe@uni-koeln.de>", "Tristan Montoya <montoya.tristan@gmail.com>", "Hendrik Ranocha <hendrik.ranocha@uni-mainz.de>", "Andrés Rueda-Ramírez <aruedara@uni-koeln.de>", "Michael Schlottke-Lakemper <michael@sloede.com>"]
4-
version = "0.1.5-DEV"
4+
version = "0.1.6-DEV"
55

66
[deps]
77
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"

src/meshes/dgmulti_icosahedron_tri.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function DGMultiMeshTriIcosahedron2D(dg::DGMulti{NDIMS, <:Tri}, radius;
4242
vk = ntuple(n -> Vxyz_old[n][k], NDIMS_AMBIENT)
4343
vl = ntuple(n -> Vxyz_old[n][l], NDIMS_AMBIENT)
4444
midpoint = 0.5 .* (vk .+ vl)
45-
midpoint = midpoint .* (EARTH_RADIUS / norm(midpoint)) # Normalize to outer radius
45+
midpoint = midpoint .* (radius / norm(midpoint)) # Normalize to outer radius
4646
for n in 1:NDIMS_AMBIENT
4747
push!(Vxyz[n], midpoint[n])
4848
end

0 commit comments

Comments
 (0)