You are on page 1of 24

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

Scribd Upload a Document Search Documents Explore

Documents
Books - Fiction Books - Non-fiction Health & Medicine Brochures/Catalogs Government Docs How-To Guides/Manuals Magazines/Newspapers Recipes/Menus School Work + all categories Featured Recent

People
Authors Students Researchers Publishers Government & Nonprofits Businesses Musicians Artists & Designers Teachers + all categories Most Followed Popular Sign Up | Log In Silent Print PDF
www.ActiveTree.com

Silent Print existing PDF from Java and Web Browser (Without Adobe)

1 von 24

18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

Metal Finishing Benefits


Reduce Friction & Eliminate Failures with REM's ISF Process
www.remchem.com

/ 20 ment for Free


2 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


3 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

www.pageplace.de

Ads by Google

/ 20 ment for Free


4 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


5 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


6 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


7 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


8 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

soft.foxtab.com

Ads by Google

/ 20 ment for Free


9 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


10 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

HTML to PDF for .NET Convert HTML/Url to PDF in .NET app Handle anything browser can handle www.essentialobjects.com Material Test & Analysis Polymer testing, R&D, Consultancy Independent laboratory www.merl-ltd.co.uk CWT Geschftsreisen Ihr weltweiter Partner fr Planung und Buchung von Geschftsreisen. www.carlsonwagonlit.de/CWT Steuerberater USA US Tax Returns for US Citizens und Personen mit Einknften aus den USA www.cpa-dresden.com

/ 20 ment for Free


11 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

1kN, =0.3, R=1m Case

/ 20 ment for Free


12 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


13 von 24
14

18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

Appendix B MATLAB Code

clear %USER-DEFINED MATERIAL PROPERTIES (SI UNITS) R1=inf; %Asperity Radius (inf for flat surface) R2=0.1; E1=200*10^9; %Elastic Modulous E2=550*10^9; v1=0.3; %Poisson's Ratio v2=0.3; p=1000; %Forcing Load %Output Mode (Raw or Normalized Results) %Input choice=1 for normalized results %Choice=2 for dimensionalized results choice=1; %This section computes parameters necessary for subsurface calulations R=1/(1/R1+1/R2); %Composite Radius E=1/((1-v1^2)/E1+(1-v2^2)/E2); %Composite Modulous a=(0.75*p*R/E)^(1/3); %Contact Half-Width x=[-2*a:.01*3*a:2*a]; %Discrete values for the x-axis z=[0:.005*3*a:2*a]; %Discrete values for the z-axis Ph=(p.*E./(pi.*R)).^(1/2); %Hertzian Pressure for Line Contact %This loop discretizes pressure distribution. for i=1:length(x) P(i)=Ph*[1-(x(i)/a)^2]^.5; end %For contour plots, a square matrix is required for position arguments. %Therefore, this loops creates a constant value for x-axis positions %vertically (column constant) and constant values for the z-axis %horizontally (row constant). for i=1:length(z); for j=1:length(x); xx(i, j)=x(j); zz(i, j)=z(i); end end %Below is the loop which computes the subsurface stress matrices. for i=1:length(x); for j=1:length(z); m(j, i)=(0.5*(((a^2-xx(j, i)^2+zz(j, i)^2).^2+4.*xx(j, i)^2.*zz(j, i)^2).^0.5+(a.^2.-xx(j, i)^2+zz(j, i)^2))).^0.5; n(j, i)=(0.5*(((a^2-xx(j, i)^2+zz(j, i)^2).^2+4.*xx(j, i)^2.*zz(j, i)^2).^0.5-(a.^2.-xx(j, i)^2+zz(j, i)^2))).^0.5; if x(i) < 0 n(j, i)=-n(j, i); end sx(j, i)=(-Ph/a)*(m(j, i)*((1+((zz(j, i)^2+n(j, i)^2)/(m(j, i)^2+n(j, i)^2))))-2.*zz(j, i)); sz(j, i)=(-Ph/a)*m(j, i)*((1-((zz(j, i)^2+n(j, i)^2)/(m(j, i)^2+n(j, i)^2)))); sy(j, i)=v1*(sx(j, i)+sz(j, i)); txz(j, i)=(-Ph/a).*n(j, i)*((m(j, i)^2-zz(j, i)^2)./(m(j, i)^2+n(j, i)^2));

15

/ 20 ment for Free


14 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

Appendix B MATLAB Code

title( 'Normalized Stress Components along Axis-of-Symmetry' end if choice==2 figure( 'name' ,'Non-Normalized' subplot(231) contour(xx, -zz, sx) C = contour(xx, -zz, sx); clabel(C) xlabel( 'x' )

);

/ 20 ment for Free


15 von 24

18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

PDF Converter 7 Download Offizielle Nuance Webseite! Direkt vom Hersteller downloaden. www.Nuance.de Stress Measurement Ultrasonic Technique and Equipment for Residual Stress Measurement www.sintec.ca PDF to FLIP BOOK software NEW page flip software. Download free trial! www.WebbookBinder.com Online Payroll Calculator Find Providers of Online Payroll Solutions on Business.com. www.business.com

/ 20 ment for Free


16 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


17 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

/ 20 ment for Free


18 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

Download this Document for FreePrintMobileCollectionsReport Document This is a private document.

Info and Rating


Follow Eric Fleming
Like Be the first of your friends to like this.

Share & Embed Related Documents


PreviousNext

/ 20 ment for Free


19 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

1. p.

p.

p.

2. p.

p.

p.

3. p.

p.

/ 20p. ment for Free


20 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

4. p.

p.

p.

5. p.

p.

p.

6. p.

p.

/ 20p. ment for Free


21 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

7. p.

p.

More from this user


PreviousNext

1. 20 p.

Add a Comment

Characters: 400

/ 20 ment for Free


22 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

Upload a Document Search Documents Follow Us! scribd.com/scribd twitter.com/scribd facebook.com/scribd About Press Blog Partners Scribd 101 Web Stuff Support FAQ Developers / API Jobs Terms Copyright Privacy Copyright 2011 Scribd Inc. / 20 Language: English ment for Free
23 von 24 18.12.2011 17:13

Hertzian Line Contact

http://www.scribd.com/doc/54754902/Hertzian-Line-Contact

This document was uploaded by someone just like you and is now part of The Scribd Archive*. Give back to the community and gain 24 hours of download access by uploading something of your own.

Subscribe to The Scribd Archive and download as many documents as you'd like. Monthly Subscription Most Popular $9/mo. 1 Day Pass $5 1 Year Pass $59 Choose payment option Pay with Credit Card Pay with PayPal or Credit * The Scribd Archive is a collection of millions of documents, including research reports, best-selling books, news source materials, and more. Read the Scribd Archive FAQ for more information.

/ 20 ment for Free


24 von 24 18.12.2011 17:13

You might also like