Skip to content
Snippets Groups Projects
Verified Commit 2d38e042 authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

fix(indVel): crit error in non dim

parent c8a4d095
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,7 @@ function force = coeff2force(coeff, OpRot, speed) ...@@ -125,7 +125,7 @@ function force = coeff2force(coeff, OpRot, speed)
% COEFF2FORCE Convert aerodynamic coefficient to force % COEFF2FORCE Convert aerodynamic coefficient to force
rho = OpRot.Op.Flow.rho; rho = OpRot.Op.Flow.rho;
nondim = 0.5 * rho * 2 * pi * OpRot.Rot.Bl.area .* speed.^2; nondim = 0.5 * rho * OpRot.Rot.Bl.area .* speed.^2;
force = coeff .* nondim; force = coeff .* nondim;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment