Numerical Sedov-Taylor (blast-wave) solution

  • Thread starter Thread starter jdwood983
  • Start date Start date
  • Tags Tags
    Numerical
Click For Summary
SUMMARY

The discussion focuses on modeling the blast-wave of an explosion using Sedov's solution in MATLAB. The user expresses difficulty in transitioning from basic programming to the more complex requirements of this specific application. Key equations relevant to the Sedov-Taylor solution are provided, but the user struggles to implement them effectively. Recommendations include exploring Blandford and Thorne's free notes from CalTech for theoretical insights, although they lack coding examples.

PREREQUISITES
  • Understanding of Sedov's Similarity and Dimensional Methods in Mechanics
  • Proficiency in MATLAB programming
  • Familiarity with basic physics concepts related to blast waves
  • Knowledge of numerical methods for solving differential equations
NEXT STEPS
  • Study MATLAB's numerical integration techniques for modeling physical systems
  • Learn about the implementation of Sedov's solution in computational fluid dynamics
  • Explore advanced programming concepts in MATLAB, such as function handles and object-oriented programming
  • Review additional resources on blast wave theory and its mathematical formulations
USEFUL FOR

Students and researchers in physics and engineering, particularly those focusing on fluid dynamics and explosion modeling, will benefit from this discussion.

jdwood983
Messages
382
Reaction score
0

Homework Statement


I was asked to model the blast-wave of an explosion using Sedov's solution in MATLAB, but I'm not really sure where to begin. Most of the programming I have done has been

Code:
x=linspace(1,1000,1000);
for i=1:1000
     y(i)=x(i)^2;
end

type of code, and this one seems a lot more complex (I found a version of this code in C [sorta familiar with C, to some extent all object oriented languages are the same] which is long and has many functions in it which leads me to the 'complex' conclusion here).

Any suggestions on where to begin? If not, any suggestions on a better book than Sedov's Similarity and Dimensional Methods in Mechanics to get me started? Or maybe both?


Homework Equations



<br /> \frac{r}{r_2}=\left[\frac{(\nu+2)(\gamma+1)}{4}V\right]^{-2/(2+\nu)}\left[\frac{\gamma+1}{\gamma-1}\left(\frac{(\nu+2)\gamma}{2}V-1\right)\right]^{-\alpha_2}\left[\frac{(\nu+2)(\gamma+1)}{(\nu+2)(\gamma+1)-2[2+\nu(\gamma-1)]}\left(1-\frac{2+\nu(\gamma-1)}{2}V\right)\right]^{-\alpha_1}<br />
and a couple others

The Attempt at a Solution



Not sure where to begin, so not much of a solution attempt can exist. I did try using the equation above and changing V from its lower bound of 2/([\nu+2]\gamma) to its upper bound of 4/((\nu+2)(\gamma+1)) but that gave me bad data.

Any help would be appreciated.
 
Physics news on Phys.org
Blandford and Thorne's free notes from CalTech discuss the blast wave. It doesn't contain any code but it might help.

See the link below

http://www.pma.caltech.edu/Courses/ph136/yr2008/0616.1.K.pdf

Thanks
Matt
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
497
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 9 ·
Replies
9
Views
1K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K