Skip to content

Commit

Permalink
ope, missed a couple
Browse files Browse the repository at this point in the history
  • Loading branch information
argonaut22 authored and askprash committed Apr 23, 2024
1 parent c1905ab commit 2f80096
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions src/aero/aero.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,9 @@ include("airfoil.jl")
include("airtable.jl")
include("airfun.jl")

__abs_path_prefix__ = dirname(@__DIR__)
airfoil_data = joinpath(__abs_path_prefix__,"airfoil_data/C.air")

airfoil_data = joinpath(__TASOPTroot__,"airfoil_data/C.air")
airsection = airtable(airfoil_data);


include("surfcd.jl")
include("surfcm.jl")
include("wingpo.jl")
Expand Down
4 changes: 2 additions & 2 deletions src/misc/materials.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using TOML, DocStringExtensions

__abs_path_prefix__ = dirname(@__DIR__)
MaterialProperties = TOML.parsefile(joinpath(__abs_path_prefix__,"material_data/MaterialProperties.toml"))
filepath = joinpath(__TASOPTroot__,"material_data/MaterialProperties.toml")
MaterialProperties = TOML.parsefile(filepath)

"""
$TYPEDEF
Expand Down

0 comments on commit 2f80096

Please sign in to comment.