Skip to content

Commit 3fec22d

Browse files
authored
Remove parallelized polar computation (#162)
* Remove parallel compute * Remove unused deps * Remove unused deps * Remove unused import
1 parent 805d876 commit 3fec22d

File tree

5 files changed

+174
-207
lines changed

5 files changed

+174
-207
lines changed

Project.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ PreallocationTools = "d236fae5-4411-538c-8e31-a6e3d9e00b46"
2121
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
2222
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
2323
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
24-
SharedArrays = "1a1011a3-84de-559e-8e89-a11a2f7dc383"
2524
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2625
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
2726
Timers = "21f18d07-b854-4dab-86f0-c15a3821819a"
@@ -44,7 +43,6 @@ DataFrames = "1.7"
4443
DefaultApplication = "1"
4544
DelimitedFiles = "1"
4645
DifferentiationInterface = "0.6.48"
47-
Distributed = "1.10"
4846
Documenter = "1.8"
4947
FiniteDiff = "2.27.0"
5048
Interpolations = "0.15"
@@ -59,7 +57,6 @@ PreallocationTools = "0.4.25"
5957
PrecompileTools = "1.2.1"
6058
SciMLBase = "2.77.0"
6159
Serialization = "1"
62-
SharedArrays = "1"
6360
StaticArrays = "1"
6461
Statistics = "1"
6562
Test = "1"
@@ -74,9 +71,8 @@ BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
7471
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
7572
ControlPlots = "23c2ee80-7a9e-4350-b264-8e670f12517c"
7673
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
77-
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
7874
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
7975
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
8076

8177
[targets]
82-
test = ["Test", "DataFrames", "CSV", "Distributed", "Documenter", "BenchmarkTools", "ControlPlots", "Aqua"]
78+
test = ["Test", "DataFrames", "CSV", "Documenter", "BenchmarkTools", "ControlPlots", "Aqua"]

scripts/polars.jl

Lines changed: 0 additions & 195 deletions
This file was deleted.

src/VortexStepMethod.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ using Interpolations
1414
using Interpolations: Extrapolation
1515
using Parameters
1616
using Serialization
17-
using SharedArrays
17+
using Timers
1818
using PreallocationTools
1919
using PrecompileTools
2020
using Pkg
2121
using DifferentiationInterface
2222
import SciMLBase: successful_retcode
2323
import YAML
24+
using Xfoil
2425

2526
# Export public interface
2627
export VSMSettings, WingSettings, SolverSettings, vs
@@ -266,7 +267,8 @@ end
266267
# Include core functionality
267268
include("settings.jl")
268269
include("wing_geometry.jl")
269-
include("kite_geometry.jl")
270+
include("polars.jl")
271+
include("ram_geometry.jl")
270272
include("filament.jl")
271273
include("panel.jl")
272274
include("body_aerodynamics.jl")

0 commit comments

Comments
 (0)