Panel Method Geometry

  Рет қаралды 17,693

JoshTheEngineer

JoshTheEngineer

Күн бұрын

Пікірлер: 54
@Jwil3743
@Jwil3743 5 жыл бұрын
Excellent work! This is an invaluable resource for information. It's gems like this that make KZbin worthwhile. Heading back for the potential flow video now! Many thanks for your time and selflessness
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
Thanks for the kind words! Comments like yours are part of the motivation that keeps me going.
@vishnu.prasad.official
@vishnu.prasad.official 4 жыл бұрын
4 years of Engineering and 1 year of working in the Aerospace Industry and this is the most convincing explanation of the panel method. Good work !
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
Thanks!
@CB47SK
@CB47SK 4 жыл бұрын
By far the easiest understandable lesson on panel method ever made. Great work!
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
Thanks!
@graaaaaa0
@graaaaaa0 4 жыл бұрын
I didn't understand your reasoning behind taking clockwise direction, It is at 4:35 in video. If you can explain it. Thanks in advance
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
You can use either direction for your code, but you have to be consistent with it all the way through your derivation, otherwise you'll have weird things happen to the results. I just decided to choose clockwise, but you can choose counter-clockwise if you want; you'll just have to change the appropriate equations if you do.
@TheEngineeringHub
@TheEngineeringHub Жыл бұрын
Amazing work Josh, perfect combination of theory and code implementation. KZbin is such an underestimated learning resource thanks to people like you (I try to pitch in too). Thank you so much!
@williamsworkshop8624
@williamsworkshop8624 4 жыл бұрын
Thanks for going over all this!! Is the source_panel code that you showed at 19:36 available? I didn't see it in the GitHub repo, did I miss it?
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
You're welcome! It's not available yet, but it will be soon. I generally post code when I get to that particular video, so when I post the video that goes over my airfoil source panel method code, I'll post the MATLAB and Python code as well. Should be in the near future.
@jacksledge8045
@jacksledge8045 3 жыл бұрын
You are literally a hero. This makes so much sense now. *bows* Thanks!!
@JoshTheEngineer
@JoshTheEngineer 3 жыл бұрын
You're welcome!
@blackguardian89
@blackguardian89 5 жыл бұрын
Can't wait the next video! Very nice and clear explanation :) Thank you!
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
Thanks Nikolai! I have everything written already, just takes some motivation to film it.
@beachboardfan9544
@beachboardfan9544 5 жыл бұрын
Could this variable defining also apply to parametric equations and integer geometry in python?
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
I can't say I'm familiar with integer geometry, but you'll notice that at line 80 of my code, I'm actually making a parametric definition of a circle. For a lot of CFD codes, when you define the grid cells you'll also need to know their face normals so you can compute fluxes, so this method of computing the panel geometry is relevant beyond just panel methods!
@georgianaichim6520
@georgianaichim6520 4 жыл бұрын
Will you explain implementing the panel method for multi element airfoil?
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
I will! I already have the code ready for it, I just need to finish filming the videos that come before the multi-element airfoil one.
@ruili9830
@ruili9830 5 жыл бұрын
Thanks for your video on panel method geometry! Is the code only defines the x and y coordinate of the circle? How to calculate the coordinates of boundary points when it is airfoil?
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
You're welcome! The code has options for both a circle and an airfoil. You can see me switch from the circle to the airfoil at 18:40. I'm just loading in the airfoil data, using some code from my previous videos in this Panel Methods playlist.
@carlosalbertolopezvillalob5059
@carlosalbertolopezvillalob5059 4 жыл бұрын
Thank you for your clear explanation, help me to understand some gaps that I had.
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
No problem, glad to hear it!
@MartinDoherty-h7o
@MartinDoherty-h7o Жыл бұрын
Could you explain why angle beta is used when calculating CN and CA in lines 204 & 205 of VP_Airfoil.m?
@luisfelipequinterogomez8267
@luisfelipequinterogomez8267 3 жыл бұрын
Amazing videos. My proffesor should teach like that
@관찰파리
@관찰파리 4 жыл бұрын
You are my savior.
@evoluindocomsino
@evoluindocomsino 4 жыл бұрын
Hello, great video! How can I do the code for an ellipse? can you help me?
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
Thanks! You can find the code for how to define an ellipse in my COMPUTE_CIRCULATION functions (for either MATLAB or Python). Here's the link to my GitHub where you can find those files: github.com/jte0419/Panel_Methods
@mickh7995
@mickh7995 3 жыл бұрын
Excellent material - I'm working through each video as a refresher. I did this at Uni almost 40 years ago. After more than 35 years in industry, you sometimes forget the basics! One minor comment on the code I downloaded from your github. When I run the airfoil for goe623, I don't get exactly the same results as you show in the video. The first panel ends up being the trailing edge thickness surface between upper and lower surfaces rather than the first 2 lower surface panels. Something to do with flipping from ccw to cw or maybe you're not closing the airfoil?
@Slyder2828
@Slyder2828 5 жыл бұрын
Love your videos
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
I appreciate it!
@Dani-ox6yw
@Dani-ox6yw 4 жыл бұрын
I couldn't run the code for Airfoil in Matlab, but the circle works only. please guide thanks
@WaqasAhmad-0
@WaqasAhmad-0 4 жыл бұрын
i am facing the same problem in python code plz respond
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
I responded to your email, but I'll put the same information here if anyone is having trouble. You need to make sure you have the LOAD_AIRFOIL_SELIG.m function in the same directory as the main script. You also need a directory called "Airfoil_DAT_Selig" in that directory, which houses all the necessary airfoil files. If you need any of the code, see my GitHub page (github.com/jte0419/Panel_Methods).
@Dani-ox6yw
@Dani-ox6yw 4 жыл бұрын
@@JoshTheEngineer Thanks, its working now
@redouanehemi9693
@redouanehemi9693 4 жыл бұрын
@@WaqasAhmad-0 same, how you solve it, please help me, i receive this message: could not convert string to float
@bilalyassin4999
@bilalyassin4999 4 жыл бұрын
@@Dani-ox6yw please can you tell us how you fix it or please would you send me the third file on my email:Bilalzyassin@gmail.com
@frieden6298
@frieden6298 7 ай бұрын
Great video, sir! Thank you very much ❤❤
@alejandroarias473
@alejandroarias473 5 жыл бұрын
Great video
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
Thanks!
@surajpreetham3107
@surajpreetham3107 4 жыл бұрын
These are Awesome!!! Thanks a lot!!!
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
You're welcome!
@dereksnow905
@dereksnow905 5 жыл бұрын
Dude you are amazing
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
Thanks!
@alirezarahimi7956
@alirezarahimi7956 3 жыл бұрын
Thank you 👍❤
@JoshTheEngineer
@JoshTheEngineer 3 жыл бұрын
You're welcome!
@bakrybsata3114
@bakrybsata3114 5 жыл бұрын
Thank you very much :)
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
You're welcome!
@MaderHerms
@MaderHerms 5 жыл бұрын
Good job
@JoshTheEngineer
@JoshTheEngineer 5 жыл бұрын
Thank you!
@lucasgrego123
@lucasgrego123 4 жыл бұрын
Thank you very much, very didactic!
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
No problem!
@zqtech.5421
@zqtech.5421 4 жыл бұрын
Good work. Could you tell me rules to make 3d polygon using panel method. Plz reply
@JoshTheEngineer
@JoshTheEngineer 4 жыл бұрын
Thanks! I'm sorry, I haven't done any 3D panel method work.
Building More Complex Potential Flows (Panel Methods)
10:30
JoshTheEngineer
Рет қаралды 6 М.
Panel methods [Aerodynamics #11]
24:54
Prof. Van Buren
Рет қаралды 19 М.
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
How To: Run XFoil from MATLAB
11:05
JoshTheEngineer
Рет қаралды 39 М.
Airfoil Analysis . Vortex Panel Method . Development
16:45
AeroAcademy
Рет қаралды 11 М.
Source Panel Method: Circular Cylinder
16:36
JoshTheEngineer
Рет қаралды 10 М.
XFOIL and Panel Methods
17:05
the Science of Flight
Рет қаралды 11 М.
Source Panel Method: Airfoil
18:43
JoshTheEngineer
Рет қаралды 10 М.
Source/Vortex Panel Method: System of Equations
15:56
JoshTheEngineer
Рет қаралды 6 М.
Google’s Quantum Chip: Did We Just Tap Into Parallel Universes?
9:34
Explained: Airfoil Cosine Spacing
9:32
JoshTheEngineer
Рет қаралды 4,1 М.
You have 30 seconds. Viral riddle from The 1% Club
8:42
MindYourDecisions
Рет қаралды 46 М.
How To Actually Achieve Your Goals in 2025 (Evidence-Based)
15:15
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН