Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ PreallocationTools = "d236fae5-4411-538c-8e31-a6e3d9e00b46"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
SharedArrays = "1a1011a3-84de-559e-8e89-a11a2f7dc383"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Timers = "21f18d07-b854-4dab-86f0-c15a3821819a"
Expand All @@ -44,7 +43,6 @@ DataFrames = "1.7"
DefaultApplication = "1"
DelimitedFiles = "1"
DifferentiationInterface = "0.6.48"
Distributed = "1.10"
Documenter = "1.8"
FiniteDiff = "2.27.0"
Interpolations = "0.15"
Expand All @@ -59,7 +57,6 @@ PreallocationTools = "0.4.25"
PrecompileTools = "1.2.1"
SciMLBase = "2.77.0"
Serialization = "1"
SharedArrays = "1"
StaticArrays = "1"
Statistics = "1"
Test = "1"
Expand All @@ -74,9 +71,8 @@ BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
ControlPlots = "23c2ee80-7a9e-4350-b264-8e670f12517c"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "DataFrames", "CSV", "Distributed", "Documenter", "BenchmarkTools", "ControlPlots", "Aqua"]
test = ["Test", "DataFrames", "CSV", "Documenter", "BenchmarkTools", "ControlPlots", "Aqua"]
195 changes: 0 additions & 195 deletions scripts/polars.jl

This file was deleted.

6 changes: 4 additions & 2 deletions src/VortexStepMethod.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ using Interpolations
using Interpolations: Extrapolation
using Parameters
using Serialization
using SharedArrays
using Timers
using PreallocationTools
using PrecompileTools
using Pkg
using DifferentiationInterface
import SciMLBase: successful_retcode
import YAML
using Xfoil

# Export public interface
export VSMSettings, WingSettings, SolverSettings, vs
Expand Down Expand Up @@ -266,7 +267,8 @@ end
# Include core functionality
include("settings.jl")
include("wing_geometry.jl")
include("kite_geometry.jl")
include("polars.jl")
include("ram_geometry.jl")
include("filament.jl")
include("panel.jl")
include("body_aerodynamics.jl")
Expand Down
Loading