Help for Vortex Lattice Method
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello, I am working on the vortex lattice method code. I have now solved it up to DeltaV speed. But when I run it from the test function, I find DeltaV (0,0,0.1125) and this is the correct answer. But when I run it in the main file, I get a different value. After finding DeltaV, I need to find downwash, CL and CD. I need help from here.
2 Kommentare
Akzeptierte Antwort
Altaïr
am 5 Dez. 2024
Bearbeitet: Altaïr
am 5 Dez. 2024
The issue appears to be in the calculation of the 'G' and 'C' matrices within the 'Panel' function. The values of 'PC', 'P1', and 'P2' in the test script result in the following vectors:
- r0 = [2; 0; 0]
- r1 = [1; 1; 0]
- r2 = [-1; 1; 0]
However, when the 'Main.m' file is called, the vectors are:
- r0 = [0; 1; 0]
- r1 = [0.5; 0.5; 0]
- r2 = [0.5; -0.5; 0]
Looking at the plot of the 'P', 'G', and 'C' matrices, the control points seem to be positioned at midpoints between the chords along the span.

Please verify if this is the intended location for the control points. The method for calculating the points in the 'G' matrix, i.e. the vortex endpoints, is unclear.
Debugging the calculation of the 'G' matrix should help resolve the issue.
I believe this will assist you!
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Dynamic System Models finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!