Skip to content

Commit 3e53ff3

Browse files
committed
remove second parameter yaw rate comment
1 parent 4fcc3b9 commit 3e53ff3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ wa = BodyAerodynamics([wing])
114114

115115
# Set inflow conditions
116116
vel_app = [cos(alpha), 0.0, sin(alpha)] .* v_a
117-
set_va!(wa, (vel_app, 0.0)) # Second parameter is yaw rate
117+
set_va!(wa, vel_app)
118118
```
119119
It is possible to import the wing geometry using an `.obj` file as shown in the example `ram_air_kite.jl`.
120120

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ wa = BodyAerodynamics([wing])
115115

116116
# Set inflow conditions
117117
vel_app = [cos(alpha), 0.0, sin(alpha)] .* v_a
118-
set_va!(wa, (vel_app, 0.0)) # Second parameter is yaw rate
118+
set_va!(wa, vel_app)
119119
```
120120
It is possible to import the wing geometry using an `.obj` file as shown in the example `ram_air_kite.jl`.
121121

examples/bench.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ wa = BodyAerodynamics([wing])
3131

3232
# Set inflow conditions
3333
vel_app = [cos(alpha), 0.0, sin(alpha)] .* v_a
34-
set_va!(wa, (vel_app, 0.0)) # Second parameter is yaw rate
34+
set_va!(wa, vel_app)
3535

3636
# Step 4: Initialize solvers for both LLT and VSM methods
3737
llt_solver = Solver(aerodynamic_model_type=:LLT)

test/bench.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ using LinearAlgebra
3636
body_aero = BodyAerodynamics([wing])
3737

3838
vel_app = [cos(alpha), 0.0, sin(alpha)] .* v_a
39-
set_va!(body_aero, vel_app) # Second parameter is yaw rate
39+
set_va!(body_aero, vel_app)
4040

4141
# Initialize solvers for both LLT and VSM methods
4242
solver = Solver()

test/test_plotting.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function create_wa()
2929
wa = BodyAerodynamics([wing])
3030
# Set inflow conditions
3131
vel_app = [cos(alpha), 0.0, sin(alpha)] .* v_a
32-
set_va!(wa, vel_app) # Second parameter is yaw rate
32+
set_va!(wa, vel_app)
3333
wa
3434
end
3535

0 commit comments

Comments
 (0)