Skip to content

Commit 9a07afc

Browse files
committed
remove bad type
1 parent 79272b9 commit 9a07afc

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

exemples/Manifest.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
julia_version = "1.11.2"
44
manifest_format = "2.0"
5-
project_hash = "c96a514a6457748a0fd5a585751b20c3f87d832e"
5+
project_hash = "2085121fe291c3fd81a46cf5637ef065eabc2c93"
66

77
[[deps.ADTypes]]
88
git-tree-sha1 = "016833eb52ba2d6bea9fcb50ca295980e728ee24"
@@ -130,6 +130,12 @@ git-tree-sha1 = "f21cfd4950cb9f0587d5067e69405ad2acd27b87"
130130
uuid = "62783981-4cbd-42fc-bca8-16325de8dc4b"
131131
version = "0.1.6"
132132

133+
[[deps.BloodFlowTrixi]]
134+
deps = ["Trixi"]
135+
git-tree-sha1 = "dff2870f8442cdd7a185957d7843ef7c0888aa1c"
136+
uuid = "7b46d5ad-635f-4b66-9393-904f183e39b5"
137+
version = "0.0.4"
138+
133139
[[deps.CEnum]]
134140
git-tree-sha1 = "389ad5c84de1ae7cf0e28e381131c98ea87d54fc"
135141
uuid = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -1542,9 +1548,9 @@ version = "0.1.2"
15421548

15431549
[[deps.Trixi]]
15441550
deps = ["Accessors", "CodeTracking", "ConstructionBase", "DataStructures", "DelimitedFiles", "DiffEqBase", "DiffEqCallbacks", "Downloads", "EllipsisNotation", "FillArrays", "ForwardDiff", "HDF5", "IfElse", "LinearAlgebra", "LinearMaps", "LoopVectorization", "MPI", "MuladdMacro", "Octavian", "OffsetArrays", "P4est", "Polyester", "PrecompileTools", "Preferences", "Printf", "RecipesBase", "RecursiveArrayTools", "Reexport", "Requires", "SciMLBase", "SimpleUnPack", "SparseArrays", "StableRNGs", "StartUpDG", "Static", "StaticArrayInterface", "StaticArrays", "StrideArrays", "StructArrays", "SummationByPartsOperators", "T8code", "TimerOutputs", "Triangulate", "TriplotBase", "TriplotRecipes", "TrixiBase", "UUIDs"]
1545-
git-tree-sha1 = "26f2d14fb6b703ec45c7bfc82bea3419e3cb3017"
1551+
git-tree-sha1 = "cd1cbb0dde8ff6bf0b3f489d0fa3dbfd40304746"
15461552
uuid = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb"
1547-
version = "0.9.13"
1553+
version = "0.9.14"
15481554

15491555
[deps.Trixi.extensions]
15501556
TrixiConvexECOSExt = ["Convex", "ECOS"]

exemples/Model1DOrd2/exemple.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Trixi
2-
using .BloodFlowTrixi
2+
using BloodFlowTrixi
33
using OrdinaryDiffEq
44

55
eq = BloodFlowEquations1D(; h = 0.1)
6-
eq_ord2 = BloodFlowEquations1DOrd2(0.04,eq)
6+
eq_ord2 = BloodFlowEquations1DOrd2(eq)
77

88
mesh = TreeMesh(0.0, 40.0,
99
initial_refinement_level = 4,

exemples/Model2D/exemple.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Trixi
2-
using .BloodFlowTrixi
2+
using BloodFlowTrixi
33
using OrdinaryDiffEq
44

55
eq = BloodFlowEquations2D(; h = 0.1)

exemples/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[deps]
2+
BloodFlowTrixi = "7b46d5ad-635f-4b66-9393-904f183e39b5"
23
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
34
Trixi = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb"

src/1DModel/Ord2/1dmodelord2.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
struct BloodFlowEquations1DOrd2{T <:Real,E} <: Trixi.AbstractEquationsParabolic{1, 4, GradientVariablesConservative}
1+
struct BloodFlowEquations1DOrd2{E} <: Trixi.AbstractEquationsParabolic{1, 4, GradientVariablesConservative}
22
model1d ::E
33
end
44
Trixi.varnames(mapin,eq::BloodFlowTrixi.BloodFlowEquations1DOrd2) = Trixi.varnames(mapin,eq.model1d)

0 commit comments

Comments
 (0)