1 / 15

Visualization

Visualization. Friday, 9/6/2002. Hedgehog Method. MATLAB functions. plot. Example x = 0:pi/100:2*pi; y = sin(x); plot(x,y). Bean-Bag Method. MATLAB functions. meshgrid mesh. Examples: [x,y]=meshgrid(-10:10,-10:10); [r,theta]=meshgrid(0:5:10,0:pi/20:pi); z=sqrt(x.^2+y.^2);

talen
Télécharger la présentation

Visualization

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Visualization Friday, 9/6/2002

  2. Hedgehog Method

  3. MATLAB functions plot Example x = 0:pi/100:2*pi; y = sin(x); plot(x,y)

  4. Bean-Bag Method

  5. MATLAB functions meshgrid mesh Examples: [x,y]=meshgrid(-10:10,-10:10); [r,theta]=meshgrid(0:5:10,0:pi/20:pi); z=sqrt(x.^2+y.^2); mesh(x,y,z)

  6. Sphere Scanning theta = linspace(0,2*pi,ntheta); phi = linspace(0,pi,nphi); [x,y] = meshgrid( theta, phi ); for i=1:nphi for j=1:ntheta n = [ sin(phi(i))*cos(theta(j)), ... sin(phi(i))*sin(theta(j)), ... cos(phi(i)) ]'; x(i,j) = … … ; y(i,j) = … … ; z(i,j) = … … ; end end mesh(x,y,z)

  7. Hole Problem

  8. Stress Field Tangential stress Radial stress

  9. Cymbals

  10. Stress Field Around Crack Tip Thin plate

  11. Von Mises’ Yield Criterion Perfect plasticity

  12. Crack Tip Stress Field

  13. Mountain Stream A mountain stream comes trickling in the sunlight down the hill, And gathers volume until it has strength to run the mill; It happily continues then, upon its useful way, Turns other mills still further down, until it joins the bay.

  14. Dislocation Emissions

More Related