Skip to content

Commit

Permalink
tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
cmichelenstrofer committed Jan 30, 2025
1 parent 4ca6e9a commit 45624d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vawt-ac/src/acmultiple.jl
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ function radialforce(uvec, vvec, thetavec, turbine, env)
# Buoyancy
F_buoy = zeros(3, ntheta)
section_area = chord * thickness / 2 * 1.0 # per unit length TODO: input volume
mass = -env.gravity .* (rho * section_area - turbine.rhoA) # buoyancy mass minus structural mass since added mass requires moving the gravity here
mass = -env.gravity .* (rho * section_area .- turbine.rhoA) # buoyancy mass minus structural mass since added mass requires moving the gravity here
if env.Aero_Buoyancy_Active
for (itheta, theta) in enumerate(thetavec)
dcm = [
Expand Down

0 comments on commit 45624d1

Please sign in to comment.