From 040e5d12db42b058e1835c8727a9c5e09e9f3bd5 Mon Sep 17 00:00:00 2001 From: cibinjoseph Date: Sun, 17 Dec 2023 13:42:03 -0700 Subject: [PATCH 1/2] Update installation instructions since VSPGeom.jl is now a registered package --- docs/src/installation/general.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/src/installation/general.md b/docs/src/installation/general.md index d53b2bdc..cb4d9783 100644 --- a/docs/src/installation/general.md +++ b/docs/src/installation/general.md @@ -198,6 +198,19 @@ If you run into any issues, please try the following: If issues persist, please check the resolved issues in [the FLOWExaFMM repo](https://github.com/byuflowlab/FLOWExaFMM.jl/issues?q=), the discussion forum in [the FLOWUnsteady repo](https://github.com/byuflowlab/FLOWUnsteady/discussions?discussions_q=), and feel free to open a new issue or discussion for help. +## VSPGeom +FLOWUnsteady is able to import geometry created using OpenVSP using [VSPGeom.jl](https://github.com/byuflowlab/VSPGeom.jl) + +* Add VSPgeom: + ```julia + ] add VSPGeom + ``` + +* *[Optional]* Test VSPGeom: + ```julia + ] test VSPGeom + ``` + ## Other Packages Run the following commands in the Julia REPL to add some dependencies that are not in the official Julia registry: @@ -207,7 +220,7 @@ import Pkg url = "https://github.com/byuflowlab/" packages = (("AirfoilPrep.jl", "v2.1.2"), ("FLOWVLM", "v2.1.2"), - ("BPM.jl", "v2.0.1"), ("FLOWNoise", "v2.3.2"), ("VSPGeom.jl", nothing)) + ("BPM.jl", "v2.0.1"), ("FLOWNoise", "v2.3.2")) Pkg.add([ Pkg.PackageSpec(; url=url*name, rev=v) for (name, v) in packages ]) ``` From 0d5f74d5267c2ff0b9ddfa452c33d8e1b186c042 Mon Sep 17 00:00:00 2001 From: cibinjoseph Date: Sun, 17 Dec 2023 13:46:12 -0700 Subject: [PATCH 2/2] Rephrase documentation --- docs/src/installation/general.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/installation/general.md b/docs/src/installation/general.md index cb4d9783..cce22f0d 100644 --- a/docs/src/installation/general.md +++ b/docs/src/installation/general.md @@ -199,7 +199,7 @@ If issues persist, please check the resolved issues in [the FLOWExaFMM repo](htt and feel free to open a new issue or discussion for help. ## VSPGeom -FLOWUnsteady is able to import geometry created using OpenVSP using [VSPGeom.jl](https://github.com/byuflowlab/VSPGeom.jl) +FLOWUnsteady can import geometry created in [OpenVSP](https://openvsp.org/) using [VSPGeom.jl](https://github.com/byuflowlab/VSPGeom.jl). * Add VSPgeom: ```julia