Help for Vortex Lattice Method
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Altaïr
le 5 Déc 2024
Modifié(e) : Altaïr
le 5 Déc 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!
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Dynamic System Models dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!