Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Mar 9, 2024
1 parent 3cf9ee3 commit 685fbb2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 69 deletions.
10 changes: 5 additions & 5 deletions Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

julia_version = "1.9.4"
manifest_format = "2.0"
project_hash = "547bf31d5dc2e6452ad979d2c526bfa03b483ccd"
project_hash = "c5baf95d56bcbd0b5f45fff4568f32f131ca8958"

[[deps.AbstractFFTs]]
deps = ["LinearAlgebra"]
Expand All @@ -25,9 +25,9 @@ version = "0.4.5"

[[deps.Adapt]]
deps = ["LinearAlgebra", "Requires"]
git-tree-sha1 = "e2a9873379849ce2ac9f9fa34b0e37bde5d5fe0a"
git-tree-sha1 = "cea4ac3f5b4bc4b3000aa55afb6e5626518948fa"
uuid = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
version = "4.0.2"
version = "4.0.3"
weakdeps = ["StaticArrays"]

[deps.Adapt.extensions]
Expand Down Expand Up @@ -1142,9 +1142,9 @@ version = "1.2.13+0"

[[deps.gmsh_jll]]
deps = ["Artifacts", "Cairo_jll", "CompilerSupportLibraries_jll", "FLTK_jll", "FreeType2_jll", "GLU_jll", "GMP_jll", "HDF5_jll", "JLLWrappers", "JpegTurbo_jll", "LLVMOpenMP_jll", "Libdl", "Libglvnd_jll", "METIS_jll", "MMG_jll", "OCCT_jll", "Xorg_libX11_jll", "Xorg_libXext_jll", "Xorg_libXfixes_jll", "Xorg_libXft_jll", "Xorg_libXinerama_jll", "Xorg_libXrender_jll", "Zlib_jll", "libpng_jll"]
git-tree-sha1 = "f046de388d2a96c0b6ca108e8d0d9c4d44728423"
git-tree-sha1 = "d15409a4b9f1d14f1e1f9e910cd00f7d6695c261"
uuid = "630162c2-fc9b-58b3-9910-8442a8a132e6"
version = "4.12.2+0"
version = "4.11.1+0"

[[deps.libblastrampoline_jll]]
deps = ["Artifacts", "Libdl"]
Expand Down
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Profile = "9abbd945-dff8-562f-b5e8-e1ebf5ef1b79"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
SparseMatricesCSR = "a0a7dd2c-ebf4-11e9-1f05-cf50bc540ca1"
gmsh_jll = "630162c2-fc9b-58b3-9910-8442a8a132e6"

[compat]
BSON = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/Applications/expansion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function expansion(;
info, t = _expansion(;title=title,path=path,mesh=mesh,kwargs...)
else
@assert backend [:sequential,:mpi]
@assert !isa(np,Nothing)
@assert !isnothing(np)
np = isa(np,Int) ? (np,) : np
if backend === :sequential
info,t = with_debug() do distribute
Expand Down
2 changes: 1 addition & 1 deletion src/Solvers/li2019.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function li2019_Dj(dΩ,params)
r = a_mhd_j_j(j,v_j,dΩ) + ((∇j)(∇v_j))*
for p in params_thin_wall
τ,cw,jw,n_Γ,dΓ = p
r += a_thin_wall(x,dy,τ,cw,jw,n_Γ,dΓ)
r += a_thin_wall_j_j(j,v_j,τ,cw,jw,n_Γ,dΓ)
end
return r
end
Expand Down
18 changes: 0 additions & 18 deletions test/seq/expansion_li2019_tests.jl

This file was deleted.

38 changes: 0 additions & 38 deletions test/seq/hunt_li2019_tests.jl

This file was deleted.

6 changes: 0 additions & 6 deletions test/seq/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,4 @@ using Test

@time @testset "Cavity" begin include("cavity_tests.jl") end

@time @testset "Li2019" begin
include("cavity_li2019_tests.jl")
include("hunt_li2019_tests.jl")
include("expansion_li2019_tests.jl")
end

end # module

0 comments on commit 685fbb2

Please sign in to comment.