Skip to content

Commit

Permalink
Remove references to hull convergence for now
Browse files Browse the repository at this point in the history
  • Loading branch information
arnauqb committed Oct 15, 2021
1 parent a65c09f commit 059807f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"
YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6"

[compat]
julia = "^1.6"
ArgParse = "^1.1.4"
CSV = "^0.8.5"
ClusterManagers = "^0.4.1"
Expand Down Expand Up @@ -74,4 +73,4 @@ Roots = "^1.2.0"
Sundials = "^4.5.3"
TimerOutputs = "^0.5.12"
YAML = "^0.4.7"

julia = "^1.6"
2 changes: 1 addition & 1 deletion src/radiation/wind_interpolator/wind_hull.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function Hull(hull_data::Dict)
vs_r = hull_data["vertices_r"]
vs_z = hull_data["vertices_z"]
vertices = [[r, z] for (r, z) in zip(vs_r, vs_z)]
Hull(vertices, hull_data["k"], hull_data["converged"])
Hull(vertices, hull_data["k"]) #, hull_data["converged"]) #TODO: same as above
end


Expand Down
2 changes: 1 addition & 1 deletion src/saver.jl
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ function save_wind_hull!(hull::ConcaveHull.Hull, group)
g["k"] = hull.k
g["vertices_r"] = [v[1] for v in hull.vertices]
g["vertices_z"] = [v[2] for v in hull.vertices]
g["converged"] = hull.converged
#g["converged"] = hull.converged
end
save_wind_hull!(hull::Nothing, group) = nothing

Expand Down

2 comments on commit 059807f

@arnauqb
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/46799

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 059807fc4712b6eb3c6e8b9eec3220e758ce1fba
git push origin v0.1.0

Please sign in to comment.