3D Ideal Flow For Non-Lifting Bodies

Size: px
Start display at page:

Download "3D Ideal Flow For Non-Lifting Bodies"

Transcription

1 3D Ideal Flow For Non-Lifting Bodies

2 3D Doublet Panel Method 1. Cover body with 3D onstant strength doublet panels of unknown strength (N panels) 2. Plae a ontrol point at the enter of eah panel (N ontrol points 3. Write down an expression for the normal veloity at eah.p. produed by the free stream veloity and N panels 4. Solve resulting N equations for N panel strengths 5. With panel strengths ompute tangent veloity at.p.s and thus surfae pressure, and rest of flow V

3 An Issue With Doublet Panels Consider a ut through the body surfae no flow V=V tang V<V tang V<<V tang Panels appear as a series of disrete vorties with strengths equal to the differene between adjaent panel strengths. At the ontrol points we see almost none of the tangential veloity generated by nearby vorties. This is wrong. It is as though the surfae were a ontinuous vortex sheet, and we alulated the tangential veloity at the.p. ignoring the disontinuous jump between the inside and outside. This jump, equal to half the loal sheet strength is alled the prinipal V=V tang value and must be added to the tangent veloity alulated at a ontrol point V=0 The prinipal value for a doublet panel an be estimated as This must be added to the tangential veloity alulated at any ontrol point

4 3D Doublet Panel Code Non-lifting bodies Handling vetors in Matlab Speifying a 3D body Speifying Panel Geometry Panel Influene solving for the panel strengths Getting the surfae pressure

5 %3D doublet panel method for ayli flow around 3D bodies. lear all; vinf=[1;0;0]; %free stream veloity %Speify body of revolution geometry th=-pi/2:pi/20:pi/2;xp=sin(th);yp=os(th);n=20; [r,r,nw,sw,se,ne,no,we,so,ea]=bodyofrevolution(xp,yp,n); % determine surfae area and normal vetors at ontrol points (assumes ounter lokwise around om a=0.5*v_ross(r(:,sw)-r(:,ne),r(:,se)-r(:,nw));n=a./v_mag(a); %determine influene oeffiient matrix oeff npanels=length(r(1,:));oef=zeros(npanels); for n=1:npanels mn=ffil(r(:,n),r(:,nw),r(:,sw))+ffil(r(:,n),r(:,sw),r(:,se))+ffil(r(:,n),r(:,se),r(:,ne))+f oef(n,:)=n(1,n)*mn(1,:)+n(2,n)*mn(2,:)+n(3,n)*mn(3,:); end %determine result vetor and solve matrix for filament strengths rm=(-n(1,:)*vinf(1)-n(2,:)*vinf(2)-n(3,:)*vinf(3))'; oef(end+1,:)=1;rm(end+1)=0; %prevents singular matrix - sum of panel strengths on losed body is z ga=oef\rm; %Determine veloity and pressure at ontrol points ga=repmat(ga',[3 1]); for n=1:npanels %Determine veloity at eah.p. without prinipal value mn=ffil(r(:,n),r(:,nw),r(:,sw))+ffil(r(:,n),r(:,sw),r(:,se))+ffil(r(:,n),r(:,se),r(:,ne))+f v(:,n)=vinf+sum(ga.*mn,2); end %Determine priniple value of veloity at eah.p., -grad(ga)/2 gg=v_ross((r(:,we)-r(:,no)).*(ga(:,we)+ga(:,no))+(r(:,so)-r(:,we)).*(ga(:,so)+ga(:,we))+(r(:, v=v-gg/2; %veloity vetor p=1-sum(v.^2)/(vinf'*vinf); %pressure %plotting of pressure distribution and veloity vetors

6 Vetors In Matlab Use arrays with 3 rows, one for eah omponent. E.g. V Easy to make funtions for vetor operations like dot and ross produts, and magnitude With these it is now easier to make more omplex funtions E.g. f fil (r,r s,r e ) %3D doublet panel method for flow around 3D bodies. lear all; vinf=[1;0;0]; %free stream veloity funtion =v_dot(a,b); =zeros(size(a)); (1,:)=a(1,:).*b(1,:)+a(2,:).*b(2,:)+a(3,:).*b(3,:); (2,:)=(1,:);(3,:)=(1,:); funtion =v_ross(a,b); =zeros(size(a)); (1,:)=(a(2,:).*b(3,:)-a(3,:).*b(2,:)); (2,:)=(a(3,:).*b(1,:)-a(1,:).*b(3,:)); (3,:)=(a(1,:).*b(2,:)-a(2,:).*b(1,:)); funtion q=ffil(r,rs,re); r1(1,:)=rs(1,:)-r(1,:); r1(2,:)=rs(2,:)-r(2,:); r1(3,:)=rs(3,:)-r(3,:); r2(1,:)=re(1,:)-r(1,:); r2(2,:)=re(2,:)-r(2,:); r2(3,:)=re(3,:)-r(3,:); r0(1,:)=r1(1,:)-r2(1,:);r0(2,:)=r1(2,:)-r2(2,:);r0(3,:)=r1(3,:)-r2(3,:); =v_ross(r1,r2); 2=v_dot(,); q=./2.*v_dot(r0,r1./v_mag(r1)-r2./v_mag(r2))/4/pi;

7 Speifying a 3D Body First we must hoose shape. E.g. Body of revolution: %Speify body of revolution geometry th=-pi/2:pi/20:pi/2;xp=sin(th);yp=os(th);n=20; [r,r,nw,sw,se,ne,no,we,so,ea]=bodyofrevolution(xp,yp,n) Then we generate the oordinates, in vetor form, of all the points on the body. These points (in a retangular array, beome the panel orner points r xp + yp n (number of irumferential points) funtion [r,r,nw,sw,se,ne,no,we,so,ea]=bodyofrevolution(xp,yp,n) %Define verties of panels x=repmat(xp,[n+1 1]); %grid of x points al=[0:n]/(n)*2*pi; %vetor of irumferential angles (about x axis) y=os(al)'*yp; z=sin(al)'*yp; r=zeros([3 size(x)]);r(1,:)=x(:);r(2,:)=y(:);r(3,:)=z(:); %position vetor of verties ri=reshape(1:prod(size(x)),size(x)); %index of verties

8 no Panel Geometry nw ne ea Control point loations have loations r Panel verties have loations r we n se r = r r sw so Defining the indies, also defines how the body loses r=zeros([3 size(x)]);r(1,:)=x(:);r(2,:)=y(:);r(3,:)=z(:); %position vetor of verties ri=reshape(1:prod(size(x)),size(x)); %index of verties %panel i,j has orners i,j i+1,j i+1,j+1 i,j+1 nw=ri(1:end-1,1:end-1);sw=ri(2:end,1:end-1); %indies of upper and lower left orners ne=ri(1:end-1,2:end);se=ri(2:end,2:end); %indies of upper and lower right orners % determine panel enters (ontrol points) and indies r=(r(:,nw)+r(:,sw)+r(:,ne)+r(:,se))/4;r=reshape(r,[3 size(nw)]); i=reshape(1:prod(size(nw)),size(nw)); % determine indies of panels bordering eah ontrol point no=i([end 1:end-1],:);so=i([2:end 1],:); %Panels above and below. we=i(:,[1 1:end-1]);ea=i(:,[2:end end]); %Panels to left and right.

9 Panel Geometry Defining the indies, also defines how the body loses Seam 2nd index inreasing w n e s 1st index inreasing

10 Panel Geometry r se -r nw nw ne Determine area vetor and outward normal of eah panel by ross produt r sw -r ne sw n se a n = = [r,r,nw,sw,se,ne,no,we,so,ea]=bodyofrevolution(xp,yp,n); % determine surfae area and normal vetors at ontrol points (assumes ounter lokwise around ompass by RH rule points out of surfae) a=0.5*v_ross(r(:,sw)-r(:,ne),r(:,se)-r(:,nw));n=a./v_mag(a);

11 Panel Influene Veloity due to panel m at ontrol point n: V( r ) = [ f fil ( r nw sw ) + f fil ( r sw se ) ne + f fil ( r se ne ) + f fil ( r ne nw ) ] Γ nw sw Panel m Γ se or V( r ) = C ( n, m) Γ Summed veloity at ontrol point n is thus: ( n, m) V( r ) V + C Γ = m (w/o tangential veloity due to prinipal value) r (m) r (n) Normal omponent is ( n, m) V( r ). n 0 = V n + C. n Γ = So, to get the Γ (m) s we need to solve the simultaneous equations: m Control point n Nx1 matrix of freestream omponents V n m ( n, m) = C.n Γ NxN oeffiient matrix Nx1 matrix of panel strengths

12 Panel Influene %determine influene oeffiient matrix oef npanels=length(r(1,:));oef=zeros(npanels); for n=1:npanels mn=ffil(r(:,n),r(:,nw),r(:,sw))+ffil(r(:,n),r(:,sw),r(:,se)) +ffil(r(:,n),r(:,se),r(:,ne))+ffil(r(:,n),r(:,ne),r(:,nw)); oef(n,:)=n(1,n)*mn(1,:)+n(2,n)*mn(2,:)+n(3,n)*mn(3,:); end %determine result vetor and solve matrix for filament strengths rm=(-n(1,:)*vinf(1)-n(2,:)*vinf(2)-n(3,:)*vinf(3))'; oef(end+1,:)=1;rm(end+1)=0; %prevents singular matrix ga=oef\rm;

13 Determining Surfae Pressure Total veloity at ontrol point r we no n so ea Γ V( r ) = V + C Tangential veloity due to prinipal value at r m = Using the gradient theorem and values of Γ at neighboring ontrol points we an show that ( rwe rno )( Γwe + Γno ) + ( rso rwe )( Γ + ( rea rso )( Γea + Γso ) + ( rno rea )( Γ ( r r ) ( r r ) no ( n, m) so Γ + we Tangential veloity due to prinipal value at r ea so no + Γwe ) n + Γea ) We an then use Bernoulli V( r ) C ( r ) = 1 to ompute the pressure p 2 V 2

14 Determining Surfae Pressure %Determine veloity and pressure at ontrol points for n=1:npanels %Get veloity at eah.p. w/o prinipal value mn=ffil(r(:,n),r(:,nw),r(:,sw))+ffil(r(:,n),r(:,sw),r(:,se)) +ffil(r(:,n),r(:,se),r(:,ne))+ffil(r(:,n),r(:,ne),r(:,nw)); v(:,n)=vinf+sum(ga.*mn,2); end %Determine priniple value, -grad(ga)/2 gg=v_ross((r(:,we)-r(:,no)).*(ga(:,we)+ga(:,no))+(r(:,so)-... v=v-gg/2; %veloity vetor p=1-sum(v.^2)/(vinf'*vinf); %pressure

15 Using the Code Plotting the pressure, streamlines Deforming the body shape Changing the shape More than one body

Physics of an Flow Over a Wing

Physics of an Flow Over a Wing Wings in Ideal Flow Physics of an Flow Over a Wing Werle, 1974, NACA 0012, 12.5 o, AR=4, Re=10000 Bippes, Clark Y, Rectangular Wing 9 o, AR=2.4, Re=100000 Head, 1982, Rectangular Wing, 24 o, Re=100000

More information

Why Airplanes Can t Fly

Why Airplanes Can t Fly body Z z body Y y body X x b dz dy dx k j i F U S V ds V s n d.. Why Airplanes an t Fly Physics of an Flow Over a Wing Werle, 974, NAA 00,.5 o, AR=4, Re=0000 Wake descends roughly on an extension of the

More information

And, the (low-pass) Butterworth filter of order m is given in the frequency domain by

And, the (low-pass) Butterworth filter of order m is given in the frequency domain by Problem Set no.3.a) The ideal low-pass filter is given in the frequeny domain by B ideal ( f ), f f; =, f > f. () And, the (low-pass) Butterworth filter of order m is given in the frequeny domain by B

More information

Supplementary Material: Geometric Calibration of Micro-Lens-Based Light-Field Cameras using Line Features

Supplementary Material: Geometric Calibration of Micro-Lens-Based Light-Field Cameras using Line Features Supplementary Material: Geometri Calibration of Miro-Lens-Based Light-Field Cameras using Line Features Yunsu Bok, Hae-Gon Jeon and In So Kweon KAIST, Korea As the supplementary material, we provide detailed

More information

Year 11 GCSE Revision - Re-visit work

Year 11 GCSE Revision - Re-visit work Week beginning 6 th 13 th 20 th HALF TERM 27th Topis for revision Fators, multiples and primes Indies Frations, Perentages, Deimals Rounding 6 th Marh Ratio Year 11 GCSE Revision - Re-visit work Understand

More information

Finding the Equation of a Straight Line

Finding the Equation of a Straight Line Finding the Equation of a Straight Line You should have, before now, ome aross the equation of a straight line, perhaps at shool. Engineers use this equation to help determine how one quantity is related

More information

Abstract. We describe a parametric hybrid Bezier patch that, in addition. schemes are local in that changes to part of the data only aect portions of

Abstract. We describe a parametric hybrid Bezier patch that, in addition. schemes are local in that changes to part of the data only aect portions of A Parametri Hyrid Triangular Bezier Path Stephen Mann and Matthew Davidhuk Astrat. We desrie a parametri hyrid Bezier path that, in addition to lending interior ontrol points, lends oundary ontrol points.

More information

We P9 16 Eigenray Tracing in 3D Heterogeneous Media

We P9 16 Eigenray Tracing in 3D Heterogeneous Media We P9 Eigenray Traing in 3D Heterogeneous Media Z. Koren* (Emerson), I. Ravve (Emerson) Summary Conventional two-point ray traing in a general 3D heterogeneous medium is normally performed by a shooting

More information

Folding. Hardware Mapped vs. Time multiplexed. Folding by N (N=folding factor) Node A. Unfolding by J A 1 A J-1. Time multiplexed/microcoded

Folding. Hardware Mapped vs. Time multiplexed. Folding by N (N=folding factor) Node A. Unfolding by J A 1 A J-1. Time multiplexed/microcoded Folding is verse of Unfolding Node A A Folding by N (N=folding fator) Folding A Unfolding by J A A J- Hardware Mapped vs. Time multiplexed l Hardware Mapped vs. Time multiplexed/mirooded FI : y x(n) h

More information

Pre-Critical incidence

Pre-Critical incidence Seismi methods: Refration I Refration reading: Sharma p58-86 Pre-Critial inidene Refletion and refration Snell s Law: sin i sin R sin r P P P P P P where p is the ray parameter and is onstant along eah

More information

1-D and 2-D Elements. 1-D and 2-D Elements

1-D and 2-D Elements. 1-D and 2-D Elements merial Methods in Geophysis -D and -D Elements -D and -D Elements -D elements -D elements - oordinate transformation - linear elements linear basis fntions qadrati basis fntions bi basis fntions - oordinate

More information

Introduction to Seismology Spring 2008

Introduction to Seismology Spring 2008 MIT OpenCourseWare http://ow.mit.edu 1.510 Introdution to Seismology Spring 008 For information about iting these materials or our Terms of Use, visit: http://ow.mit.edu/terms. 1.510 Leture Notes 3.3.007

More information

Prediction of Workpiece Location Due to Fixture-Induced Error

Prediction of Workpiece Location Due to Fixture-Induced Error Predition of Workpiee Loation Due to Fixture-Indued Error Anand Raghu: Graduate Student Dr. Shreyes Melkote: Faulty Advisor IAB Meeting for PMRC Otober 29 th, 2002 Outline: Projet goal Prior work Model

More information

Drawing lines. Naïve line drawing algorithm. drawpixel(x, round(y)); double dy = y1 - y0; double dx = x1 - x0; double m = dy / dx; double y = y0;

Drawing lines. Naïve line drawing algorithm. drawpixel(x, round(y)); double dy = y1 - y0; double dx = x1 - x0; double m = dy / dx; double y = y0; Naïve line drawing algorithm // Connet to grid points(x0,y0) and // (x1,y1) by a line. void drawline(int x0, int y0, int x1, int y1) { int x; double dy = y1 - y0; double dx = x1 - x0; double m = dy / dx;

More information

An Event Display for ATLAS H8 Pixel Test Beam Data

An Event Display for ATLAS H8 Pixel Test Beam Data An Event Display for ATLAS H8 Pixel Test Beam Data George Gollin Centre de Physique des Partiules de Marseille and University of Illinois April 17, 1999 g-gollin@uiu.edu An event display program is now

More information

Inverse Kinematics 1 1/29/2018

Inverse Kinematics 1 1/29/2018 Invere Kinemati 1 Invere Kinemati 2 given the poe of the end effetor, find the joint variable that produe the end effetor poe for a -joint robot, given find 1 o R T 3 2 1,,,,, q q q q q q RPP + Spherial

More information

Grade 6. Mathematics. Student Booklet SPRING 2009 RELEASED ASSESSMENT QUESTIONS. Assessment of Reading, Writing and Mathematics, Junior Division

Grade 6. Mathematics. Student Booklet SPRING 2009 RELEASED ASSESSMENT QUESTIONS. Assessment of Reading, Writing and Mathematics, Junior Division Grade 6 Assessment of Reading, Writing and Mathematis, Junior Division Student Booklet Mathematis SPRING 2009 RELEASED ASSESSMENT QUESTIONS Please note: The format of these booklets is slightly different

More information

Smooth Trajectory Planning Along Bezier Curve for Mobile Robots with Velocity Constraints

Smooth Trajectory Planning Along Bezier Curve for Mobile Robots with Velocity Constraints Smooth Trajetory Planning Along Bezier Curve for Mobile Robots with Veloity Constraints Gil Jin Yang and Byoung Wook Choi Department of Eletrial and Information Engineering Seoul National University of

More information

Sequential Incremental-Value Auctions

Sequential Incremental-Value Auctions Sequential Inremental-Value Autions Xiaoming Zheng and Sven Koenig Department of Computer Siene University of Southern California Los Angeles, CA 90089-0781 {xiaominz,skoenig}@us.edu Abstrat We study the

More information

End mills are widely used in industry for high-speed machining. End milling cutters are C H A P T E R 2

End mills are widely used in industry for high-speed machining. End milling cutters are C H A P T E R 2 C H A P T E R End Mill End mills are widely used in industry for high-speed mahining. End milling utters are multi-point milling utters with utting edges both on the fae end as well as on the periphery,

More information

Discrete sequential models and CRFs. 1 Case Study: Supervised Part-of-Speech Tagging

Discrete sequential models and CRFs. 1 Case Study: Supervised Part-of-Speech Tagging 0-708: Probabilisti Graphial Models 0-708, Spring 204 Disrete sequential models and CRFs Leturer: Eri P. Xing Sribes: Pankesh Bamotra, Xuanhong Li Case Study: Supervised Part-of-Speeh Tagging The supervised

More information

The Mathematics of Simple Ultrasonic 2-Dimensional Sensing

The Mathematics of Simple Ultrasonic 2-Dimensional Sensing The Mathematis of Simple Ultrasoni -Dimensional Sensing President, Bitstream Tehnology The Mathematis of Simple Ultrasoni -Dimensional Sensing Introdution Our ompany, Bitstream Tehnology, has been developing

More information

Constructing Hierarchies for Triangle Meshes

Constructing Hierarchies for Triangle Meshes IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS VOL. 4 NO. APRIL-JUNE 1998 145 Construting Hierarhies for Triangle Meshes Tran S. Gieng Bernd Hamann Member IEEE Kenneth I. Joy Member IEEE Gregory

More information

C 2 C 3 C 1 M S. f e. e f (3,0) (0,1) (2,0) (-1,1) (1,0) (-1,0) (1,-1) (0,-1) (-2,0) (-3,0) (0,-2)

C 2 C 3 C 1 M S. f e. e f (3,0) (0,1) (2,0) (-1,1) (1,0) (-1,0) (1,-1) (0,-1) (-2,0) (-3,0) (0,-2) SPECIAL ISSUE OF IEEE TRANSACTIONS ON ROBOTICS AND AUTOMATION: MULTI-ROBOT SSTEMS, 00 Distributed reonfiguration of hexagonal metamorphi robots Jennifer E. Walter, Jennifer L. Welh, and Nany M. Amato Abstrat

More information

100 format() 101 format(i8) 102 format(i8,i5,3(e20.12),i5) 103 format(i8,i5,8(i8)) 104 format(5(i8),e10.4) 106 format(2x,i8) 110 format(a52)

100 format() 101 format(i8) 102 format(i8,i5,3(e20.12),i5) 103 format(i8,i5,8(i8)) 104 format(5(i8),e10.4) 106 format(2x,i8) 110 format(a52) ----------Usable olumns for a Fortran 77 program (1-72)--------------- Delare variables ----------------------------------------------------------------------- impliit real*8 (p,q,r,s,t,u,v,w,x,y,z) impliit

More information

CleanUp: Improving Quadrilateral Finite Element Meshes

CleanUp: Improving Quadrilateral Finite Element Meshes CleanUp: Improving Quadrilateral Finite Element Meshes Paul Kinney MD-10 ECC P.O. Box 203 Ford Motor Company Dearborn, MI. 8121 (313) 28-1228 pkinney@ford.om Abstrat: Unless an all quadrilateral (quad)

More information

P-admissible Solution Space

P-admissible Solution Space P-admissible Solution Spae P-admissible solution spae or Problem P: 1. the solution spae is inite, 2. every solution is easible, 3. evaluation or eah oniguration is possible in polynomial time and so is

More information

Dubins Path Planning of Multiple UAVs for Tracking Contaminant Cloud

Dubins Path Planning of Multiple UAVs for Tracking Contaminant Cloud Proeedings of the 17th World Congress The International Federation of Automati Control Dubins Path Planning of Multiple UAVs for Traking Contaminant Cloud S. Subhan, B.A. White, A. Tsourdos M. Shanmugavel,

More information

The Implementation of RRTs for a Remote-Controlled Mobile Robot

The Implementation of RRTs for a Remote-Controlled Mobile Robot ICCAS5 June -5, KINEX, Gyeonggi-Do, Korea he Implementation of RRs for a Remote-Controlled Mobile Robot Chi-Won Roh*, Woo-Sub Lee **, Sung-Chul Kang *** and Kwang-Won Lee **** * Intelligent Robotis Researh

More information

Contributions to the cinematic and dynamic study of parallel mechanism robots with four degrees of freedom

Contributions to the cinematic and dynamic study of parallel mechanism robots with four degrees of freedom Equation Chapter Setion Forgó Zoltán, eng. hd. andidate Contributions to the inemati and dynami study of parallel mehanism robots with four degrees of freedom Abstrat of hd hesis Sientifi oordinator: Niolae

More information

Algebra Lab Investigating Trigonometri Ratios You an use paper triangles to investigate the ratios of the lengths of sides of right triangles. Virginia SOL Preparation for G.8 The student will solve realworld

More information

To Do. Assignment Overview. Outline. Mesh Viewer (3.1) Mesh Connectivity (3.2) Advanced Computer Graphics (Spring 2013)

To Do. Assignment Overview. Outline. Mesh Viewer (3.1) Mesh Connectivity (3.2) Advanced Computer Graphics (Spring 2013) daned Computer Graphis (Spring 23) CS 283, Leture 5: Mesh Simplifiation Rai Ramamoorthi http://inst.ees.berkeley.edu/~s283/sp3 To Do ssignment, Due Feb 22 Start reading and working on it now. This leture

More information

Detecting Moving Targets in Clutter in Airborne SAR via Keystoning and Multiple Phase Center Interferometry

Detecting Moving Targets in Clutter in Airborne SAR via Keystoning and Multiple Phase Center Interferometry Deteting Moving Targets in Clutter in Airborne SAR via Keystoning and Multiple Phase Center Interferometry D. M. Zasada, P. K. Sanyal The MITRE Corp., 6 Eletroni Parkway, Rome, NY 134 (dmzasada, psanyal)@mitre.org

More information

Self-Adaptive Parent to Mean-Centric Recombination for Real-Parameter Optimization

Self-Adaptive Parent to Mean-Centric Recombination for Real-Parameter Optimization Self-Adaptive Parent to Mean-Centri Reombination for Real-Parameter Optimization Kalyanmoy Deb and Himanshu Jain Department of Mehanial Engineering Indian Institute of Tehnology Kanpur Kanpur, PIN 86 {deb,hjain}@iitk.a.in

More information

A HYBRID LES / SGS-PDF COMPUTATIONAL MODEL FOR TURBULENT PREMIXED COMBUSTION

A HYBRID LES / SGS-PDF COMPUTATIONAL MODEL FOR TURBULENT PREMIXED COMBUSTION A HYBRID LES / -PDF COMPUTATIONAL MODEL FOR TURBULENT PREMIXED COMBUSTION Fernando Oliveira de Andrade, fandrade@aluno.pu-rio.br Luis Fernando Figueira da Silva, luisfer@esp.pu-rio.br Pontifíia Universidade

More information

Active Compliant Motion Control for Grinding Robot

Active Compliant Motion Control for Grinding Robot Proeedings of the 17th World Congress The International Federation of Automati Control Ative Compliant Motion Control for Grinding Robot Juyi Park*, Soo Ho Kim* and Sungkwun Kim** *Daewoo Shipbuilding

More information

A Unified Subdivision Scheme for Polygonal Modeling

A Unified Subdivision Scheme for Polygonal Modeling EUROGRAPHICS 2 / A. Chalmers and T.-M. Rhyne (Guest Editors) Volume 2 (2), Number 3 A Unified Subdivision Sheme for Polygonal Modeling Jérôme Maillot Jos Stam Alias Wavefront Alias Wavefront 2 King St.

More information

MATH STUDENT BOOK. 12th Grade Unit 6

MATH STUDENT BOOK. 12th Grade Unit 6 MATH STUDENT BOOK 12th Grade Unit 6 Unit 6 TRIGONOMETRIC APPLICATIONS MATH 1206 TRIGONOMETRIC APPLICATIONS INTRODUCTION 3 1. TRIGONOMETRY OF OBLIQUE TRIANGLES 5 LAW OF SINES 5 AMBIGUITY AND AREA OF A TRIANGLE

More information

Orientation of the coordinate system

Orientation of the coordinate system Orientation of the oordinate system Right-handed oordinate system: -axis by a positive, around the -axis. The -axis is mapped to the i.e., antilokwise, rotation of The -axis is mapped to the -axis by a

More information

Algorithms for External Memory Lecture 6 Graph Algorithms - Weighted List Ranking

Algorithms for External Memory Lecture 6 Graph Algorithms - Weighted List Ranking Algorithms for External Memory Leture 6 Graph Algorithms - Weighted List Ranking Leturer: Nodari Sithinava Sribe: Andi Hellmund, Simon Ohsenreither 1 Introdution & Motivation After talking about I/O-effiient

More information

Datum Transformations of NAV420 Reference Frames

Datum Transformations of NAV420 Reference Frames NA4CA Appliation Note Datum ranformation of NA4 Referene Frame Giri Baleri, Sr. Appliation Engineer Crobow ehnology, In. http://www.xbow.om hi appliation note explain how to onvert variou referene frame

More information

The four lines of symmetry have been drawn on the shape.

The four lines of symmetry have been drawn on the shape. 4Geometry an measures 4.1 Symmetry I an ientify refletion symmetry in 2D shapes ientify rotation symmetry in 2D shapes Example a i How many lines of symmetry oes this shape have? ii Colour two squares

More information

arxiv: v1 [cs.gr] 10 Apr 2015

arxiv: v1 [cs.gr] 10 Apr 2015 REAL-TIME TOOL FOR AFFINE TRANSFORMATIONS OF TWO DIMENSIONAL IFS FRACTALS ELENA HADZIEVA AND MARIJA SHUMINOSKA arxiv:1504.02744v1 s.gr 10 Apr 2015 Abstrat. This work introdues a novel tool for interative,

More information

The Alpha Torque and Quantum Physics

The Alpha Torque and Quantum Physics The Alpha Torque and Quantum Physis Zhiliang Cao, Henry Cao williamao15000@yahoo.om, henry.gu.ao@gmail.om July 18, 010 Abstrat In the enter of the unierse, there isn t a super massie blak hole or any speifi

More information

Given ABC with A(-1, 1), B(2, 4), and C(4, 1). Translate ABC left 4 units and up 1 unit. a) Vertex matrix: b) Algebraic (arrow) rule:

Given ABC with A(-1, 1), B(2, 4), and C(4, 1). Translate ABC left 4 units and up 1 unit. a) Vertex matrix: b) Algebraic (arrow) rule: Unit 7 Transformations 7 Rigid Motion in a Plane Transformation: The operation that maps, or moves, a preimage onto an image. Three basic transformations are reflection, rotation, and translation. Translation

More information

FOREGROUND OBJECT EXTRACTION USING FUZZY C MEANS WITH BIT-PLANE SLICING AND OPTICAL FLOW

FOREGROUND OBJECT EXTRACTION USING FUZZY C MEANS WITH BIT-PLANE SLICING AND OPTICAL FLOW FOREGROUND OBJECT EXTRACTION USING FUZZY C EANS WITH BIT-PLANE SLICING AND OPTICAL FLOW SIVAGAI., REVATHI.T, JEGANATHAN.L 3 APSG, SCSE, VIT University, Chennai, India JRF, DST, Dehi, India. 3 Professor,

More information

SCREEN LAYOUT AND HANDLING

SCREEN LAYOUT AND HANDLING Sreen layout & handling SCREEN LAYOUT AND HANDLING Generally, 7-1 Keyboard shortuts, 7-3 Keyboard Must Know, 7-5 Generally It is not intended that the manual or on-line Help should replae knowledge of

More information

Outline: Software Design

Outline: Software Design Outline: Software Design. Goals History of software design ideas Design priniples Design methods Life belt or leg iron? (Budgen) Copyright Nany Leveson, Sept. 1999 A Little History... At first, struggling

More information

Whole Numbers and Integers. Angles and Bearings

Whole Numbers and Integers. Angles and Bearings Whole Numbers and Integers Multiply two 2-digit whole numbers without a calculator Know the meaning of square number Add and subtract two integers without a calculator Multiply an integer by a single digit

More information

Accommodations of QoS DiffServ Over IP and MPLS Networks

Accommodations of QoS DiffServ Over IP and MPLS Networks Aommodations of QoS DiffServ Over IP and MPLS Networks Abdullah AlWehaibi, Anjali Agarwal, Mihael Kadoh and Ahmed ElHakeem Department of Eletrial and Computer Department de Genie Eletrique Engineering

More information

NONLINEAR BACK PROJECTION FOR TOMOGRAPHIC IMAGE RECONSTRUCTION. Ken Sauer and Charles A. Bouman

NONLINEAR BACK PROJECTION FOR TOMOGRAPHIC IMAGE RECONSTRUCTION. Ken Sauer and Charles A. Bouman NONLINEAR BACK PROJECTION FOR TOMOGRAPHIC IMAGE RECONSTRUCTION Ken Sauer and Charles A. Bouman Department of Eletrial Engineering, University of Notre Dame Notre Dame, IN 46556, (219) 631-6999 Shool of

More information

特集 Road Border Recognition Using FIR Images and LIDAR Signal Processing

特集 Road Border Recognition Using FIR Images and LIDAR Signal Processing デンソーテクニカルレビュー Vol. 15 2010 特集 Road Border Reognition Using FIR Images and LIDAR Signal Proessing 高木聖和 バーゼル ファルディ Kiyokazu TAKAGI Basel Fardi ヘンドリック ヴァイゲル Hendrik Weigel ゲルド ヴァニーリック Gerd Wanielik This paper

More information

OFF-LINE ROBOT VISION SYSTEM PROGRAMMING USING A COMPUTER AIDED DESIGN SYSTEM S. SRIDARAN. Thesis submitted to the Faculty of the

OFF-LINE ROBOT VISION SYSTEM PROGRAMMING USING A COMPUTER AIDED DESIGN SYSTEM S. SRIDARAN. Thesis submitted to the Faculty of the OFF-LINE ROBOT VISION SYSTEM PROGRAMMING USING A COMPUTER AIDED DESIGN SYSTEM by S. SRIDARAN Thesis submitted to the Faulty of the Virginia Polytehni Institute and State University in partial fulfillment

More information

Approach of design influence on air flow rate through the heat exchangers

Approach of design influence on air flow rate through the heat exchangers Approah of design influene on air flow rate through the heat exhangers Riardo de Oliveira Silva 1, Thaís Piva de Castro 2, Paulo Marel Alves Bandeira 1, Diego Erberelli 3, Carlos Teófilo Salinas Sedano

More information

Divide-and-conquer algorithms 1

Divide-and-conquer algorithms 1 * 1 Multipliation Divide-and-onquer algorithms 1 The mathematiian Gauss one notied that although the produt of two omplex numbers seems to! involve four real-number multipliations it an in fat be done

More information

FUZZY WATERSHED FOR IMAGE SEGMENTATION

FUZZY WATERSHED FOR IMAGE SEGMENTATION FUZZY WATERSHED FOR IMAGE SEGMENTATION Ramón Moreno, Manuel Graña Computational Intelligene Group, Universidad del País Vaso, Spain http://www.ehu.es/winto; {ramon.moreno,manuel.grana}@ehu.es Abstrat The

More information

Plot-to-track correlation in A-SMGCS using the target images from a Surface Movement Radar

Plot-to-track correlation in A-SMGCS using the target images from a Surface Movement Radar Plot-to-trak orrelation in A-SMGCS using the target images from a Surfae Movement Radar G. Golino Radar & ehnology Division AMS, Italy ggolino@amsjv.it Abstrat he main topi of this paper is the formulation

More information

FOLDS. Find the curvature graphically at the crest of the curve on the next page using

FOLDS. Find the curvature graphically at the crest of the curve on the next page using GG303 Lab 14 11/23/11 1 FOLDS Exercise 1: Graphical solution for curvature (10 points total) Find the curvature graphically at the crest of the curve on the next page using the three marked points and

More information

An axisymmetric analysis is appropriate here.

An axisymmetric analysis is appropriate here. Problem description A spherical monopole vibrates sinusoidally, producing spherical waves that propagate into the surrounding air, as shown:. u = 0.138230 sin t (m/sec) =2 f,f=10khz Air u R = 0.055 m Monopole

More information

Cracked Hole Finite Element Modeling

Cracked Hole Finite Element Modeling Craked Hole Finite Element Modeling (E-20-F72) Researh Report Submitted to: Lokheed Martin, Program Manager: Dr. Stephen P. Engelstad Prinipal Investigator: Dr. Rami M. Haj-Ali Shool of Civil and Environmental

More information

13.1 Numerical Evaluation of Integrals Over One Dimension

13.1 Numerical Evaluation of Integrals Over One Dimension 13.1 Numerial Evaluation of Integrals Over One Dimension A. Purpose This olletion of subprograms estimates the value of the integral b a f(x) dx where the integrand f(x) and the limits a and b are supplied

More information

A DYNAMIC ACCESS CONTROL WITH BINARY KEY-PAIR

A DYNAMIC ACCESS CONTROL WITH BINARY KEY-PAIR Malaysian Journal of Computer Siene, Vol 10 No 1, June 1997, pp 36-41 A DYNAMIC ACCESS CONTROL WITH BINARY KEY-PAIR Md Rafiqul Islam, Harihodin Selamat and Mohd Noor Md Sap Faulty of Computer Siene and

More information

KINEMATIC ANALYSIS OF VARIOUS ROBOT CONFIGURATIONS

KINEMATIC ANALYSIS OF VARIOUS ROBOT CONFIGURATIONS International Reearh Journal of Engineering and Tehnology (IRJET) e-in: 39-6 Volume: 4 Iue: May -7 www.irjet.net p-in: 39-7 KINEMATI ANALYI OF VARIOU ROBOT ONFIGURATION Game R. U., Davkhare A. A., Pakhale..

More information

Dynamic Algorithms Multiple Choice Test

Dynamic Algorithms Multiple Choice Test 3226 Dynami Algorithms Multiple Choie Test Sample test: only 8 questions 32 minutes (Real test has 30 questions 120 minutes) Årskort Name Eah of the following 8 questions has 4 possible answers of whih

More information

Honors Geometry CHAPTER 7. Study Guide Final Exam: Ch Name: Hour: Try to fill in as many as possible without looking at your book or notes.

Honors Geometry CHAPTER 7. Study Guide Final Exam: Ch Name: Hour: Try to fill in as many as possible without looking at your book or notes. Honors Geometry Study Guide Final Exam: h 7 12 Name: Hour: Try to fill in as many as possible without looking at your book or notes HPTER 7 1 Pythagorean Theorem: Pythagorean Triple: 2 n cute Triangle

More information

On - Line Path Delay Fault Testing of Omega MINs M. Bellos 1, E. Kalligeros 1, D. Nikolos 1,2 & H. T. Vergos 1,2

On - Line Path Delay Fault Testing of Omega MINs M. Bellos 1, E. Kalligeros 1, D. Nikolos 1,2 & H. T. Vergos 1,2 On - Line Path Delay Fault Testing of Omega MINs M. Bellos, E. Kalligeros, D. Nikolos,2 & H. T. Vergos,2 Dept. of Computer Engineering and Informatis 2 Computer Tehnology Institute University of Patras,

More information

Problem description. Initial velocity mm/sec. Beveled end with varying thickness Thickness=0.5 Thickness=1. Tube cross-section.

Problem description. Initial velocity mm/sec. Beveled end with varying thickness Thickness=0.5 Thickness=1. Tube cross-section. Problem 52: rushing of a crash tube Problem description onsider the crushing of a crash tube by a rigid weight: Initial velocity 12000 mm/sec eveled end with varying thickness Thickness=0.5 Thickness=1

More information

A Numerical optimization technique for the design of airfoils in viscous flows

A Numerical optimization technique for the design of airfoils in viscous flows Rohester Institute of Tehnology RIT Sholar Works Theses Thesis/Dissertation Colletions 7-1-1995 A Numerial optimization tehnique for the design of airfoils in visous flows Robert MaNeill Follow this and

More information

Simultaneous image orientation in GRASS

Simultaneous image orientation in GRASS Simultaneous image orientation in GRASS Alessandro BERGAMINI, Alfonso VITTI, Paolo ATELLI Dipartimento di Ingegneria Civile e Ambientale, Università degli Studi di Trento, via Mesiano 77, 38 Trento, tel.

More information

Video Data and Sonar Data: Real World Data Fusion Example

Video Data and Sonar Data: Real World Data Fusion Example 14th International Conferene on Information Fusion Chiago, Illinois, USA, July 5-8, 2011 Video Data and Sonar Data: Real World Data Fusion Example David W. Krout Applied Physis Lab dkrout@apl.washington.edu

More information

CUTTING FORCES AND CONSECUTIVE DEFORMATIONS AT MILLING PARTS WITH THIN WALLS

CUTTING FORCES AND CONSECUTIVE DEFORMATIONS AT MILLING PARTS WITH THIN WALLS Proeedings of the International Conferene on Manufaturing Systems ICMaS Vol. 4, 2009, ISSN 1842-3183 University POLITEHNICA of Buharest, Mahine and Manufaturing Systems Department Buharest, Romania CUTTING

More information

Travel-time sensitivity kernels versus diffraction patterns obtained through double beam-forming in shallow water

Travel-time sensitivity kernels versus diffraction patterns obtained through double beam-forming in shallow water Travel-time sensitivity kernels versus diffration patterns obtained through double beam-forming in shallow water Ion Iturbe a GIPSA Laboratory, INPG CNRS, 96 rue de la Houille Blanhe, Domaine Universitaire,

More information

Pipelined Multipliers for Reconfigurable Hardware

Pipelined Multipliers for Reconfigurable Hardware Pipelined Multipliers for Reonfigurable Hardware Mithell J. Myjak and José G. Delgado-Frias Shool of Eletrial Engineering and Computer Siene, Washington State University Pullman, WA 99164-2752 USA {mmyjak,

More information

Lecture Notes of Möbuis Transformation in Hyperbolic Plane

Lecture Notes of Möbuis Transformation in Hyperbolic Plane Applied Mathematis, 04, 5, 6-5 Published Online August 04 in SiRes http://wwwsirporg/journal/am http://dxdoiorg/0436/am04555 Leture Notes of Möbuis Transformation in Hyperboli Plane Rania B M Amer Department

More information

Dynamic Programming. Lecture #8 of Algorithms, Data structures and Complexity. Joost-Pieter Katoen Formal Methods and Tools Group

Dynamic Programming. Lecture #8 of Algorithms, Data structures and Complexity. Joost-Pieter Katoen Formal Methods and Tools Group Dynami Programming Leture #8 of Algorithms, Data strutures and Complexity Joost-Pieter Katoen Formal Methods and Tools Group E-mail: katoen@s.utwente.nl Otober 29, 2002 JPK #8: Dynami Programming ADC (214020)

More information

Chapter 11 Arc Extraction and Segmentation

Chapter 11 Arc Extraction and Segmentation Chapter 11 Arc Extraction and Segmentation 11.1 Introduction edge detection: labels each pixel as edge or no edge additional properties of edge: direction, gradient magnitude, contrast edge grouping: edge

More information

Lecture 1.1 Introduction to Fluid Dynamics

Lecture 1.1 Introduction to Fluid Dynamics Lecture 1.1 Introduction to Fluid Dynamics 1 Introduction A thorough study of the laws of fluid mechanics is necessary to understand the fluid motion within the turbomachinery components. In this introductory

More information

PROBABILISTIC SURFACE DAMAGE TOLERANCE ASSESSMENT OF AIRCRAFT TURBINE ROTORS

PROBABILISTIC SURFACE DAMAGE TOLERANCE ASSESSMENT OF AIRCRAFT TURBINE ROTORS Proeedings of ASE Turbo Expo 2 Power for Land, Sea, and Air June 16 19, 2, Atlanta, Georgia, USA GT2-871 PROBABILISTIC SURFACE DAAGE TOLERANCE ASSESSENT OF AIRCRAFT TURBINE ROTORS ihael P. Enright R. Craig

More information

p[4] p[3] p[2] p[1] p[0]

p[4] p[3] p[2] p[1] p[0] CMSC 425 : Sring 208 Dave Mount and Roger Eastman Homework Due: Wed, Marh 28, :00m. Submit through ELMS as a df file. It an either be distilled from a tyeset doument or handwritten, sanned, and enhaned

More information

Computer Vision Projective Geometry and Calibration. Pinhole cameras

Computer Vision Projective Geometry and Calibration. Pinhole cameras Computer Vision Projective Geometry and Calibration Professor Hager http://www.cs.jhu.edu/~hager Jason Corso http://www.cs.jhu.edu/~jcorso. Pinhole cameras Abstract camera model - box with a small hole

More information

ICCGLU. A Fortran IV subroutine to solve large sparse general systems of linear equations. J.J. Dongarra, G.K. Leaf and M. Minkoff.

ICCGLU. A Fortran IV subroutine to solve large sparse general systems of linear equations. J.J. Dongarra, G.K. Leaf and M. Minkoff. http://www.netlib.org/linalg/ig-do 1 of 8 12/7/2009 11:14 AM ICCGLU A Fortran IV subroutine to solve large sparse general systems of linear equations. J.J. Dongarra, G.K. Leaf and M. Minkoff July, 1982

More information

Measurement of the stereoscopic rangefinder beam angular velocity using the digital image processing method

Measurement of the stereoscopic rangefinder beam angular velocity using the digital image processing method Measurement of the stereosopi rangefinder beam angular veloity using the digital image proessing method ROMAN VÍTEK Department of weapons and ammunition University of defense Kouniova 65, 62 Brno CZECH

More information

Simulation of fiber reinforced composites using NX 8.5 under the example of a 3- point-bending beam

Simulation of fiber reinforced composites using NX 8.5 under the example of a 3- point-bending beam R Simulation of fiber reinforced composites using NX 8.5 under the example of a 3- point-bending beam Ralph Kussmaul Zurich, 08-October-2015 IMES-ST/2015-10-08 Simulation of fiber reinforced composites

More information

Viscous/Potential Flow Coupling Study for Podded Propulsors

Viscous/Potential Flow Coupling Study for Podded Propulsors First International Symposium on Marine Propulsors smp 09, Trondheim, Norway, June 2009 Viscous/Potential Flow Coupling Study for Podded Propulsors Eren ÖZSU 1, Ali Can TAKİNACI 2, A.Yücel ODABAŞI 3 1

More information

High-Precision Numerical Scheme for Vortical Flow

High-Precision Numerical Scheme for Vortical Flow Applied Mathematis, 013, 4, 17-5 http://dx.doi.org/10.436/am.013.410a1004 Published Online Otober 013 (http://www.sirp.org/journal/am) High-Preision Numerial Sheme for Vortial Flow Kei Ito 1*, Tomoaki

More information

CSE 554 Lecture 6: Fairing and Simplification

CSE 554 Lecture 6: Fairing and Simplification CSE 554 Lecture 6: Fairing and Simplification Fall 2012 CSE554 Fairing and simplification Slide 1 Review Iso-contours in grayscale images and volumes Piece-wise linear representations Polylines (2D) and

More information

Analysis of input and output configurations for use in four-valued CCD programmable logic arrays

Analysis of input and output configurations for use in four-valued CCD programmable logic arrays nalysis of input and output onfigurations for use in four-valued D programmable logi arrays J.T. utler H.G. Kerkhoff ndexing terms: Logi, iruit theory and design, harge-oupled devies bstrat: s in binary,

More information

Chapter 8: Right Triangle Trigonometry

Chapter 8: Right Triangle Trigonometry Haberman MTH 11 Setion I: The Trigonometri Funtions Chapter 8: Right Triangle Trigonometry As we studied in Part 1 of Chapter 3, if we put the same angle in the enter of two irles of different radii, we

More information

Triangle LMN and triangle OPN are similar triangles. Find the angle measurements for x, y, and z.

Triangle LMN and triangle OPN are similar triangles. Find the angle measurements for x, y, and z. 1 Use measurements of the two triangles elow to find x and y. Are the triangles similar or ongruent? Explain. 1a Triangle LMN and triangle OPN are similar triangles. Find the angle measurements for x,

More information

Matching. Compare region of image to region of image. Today, simplest kind of matching. Intensities similar.

Matching. Compare region of image to region of image. Today, simplest kind of matching. Intensities similar. Matching Compare region of image to region of image. We talked about this for stereo. Important for motion. Epipolar constraint unknown. But motion small. Recognition Find object in image. Recognize object.

More information

CNMN0039 DOUBLE PRECISION X(4),G(4),W(22),EPS,F,ACC CNMN0030 C SET STOPPING CRITERIA CNMN0046

CNMN0039 DOUBLE PRECISION X(4),G(4),W(22),EPS,F,ACC CNMN0030 C SET STOPPING CRITERIA CNMN0046 REMARK ON ALGORITHM 500 PROGRAM MAIN MINIMIZATION OF UNONSTRAINED MULTIVARIATE FUNTIONS BY D.F. SHANNO AND K.H. PHUA AM TRANSATIONS ON MATHEMATIAL SOFTWARE 6 (DEEMBER 1980), 618-622 TEST PROGRAM TO TEST

More information

with respect to the normal in each medium, respectively. The question is: How are θ

with respect to the normal in each medium, respectively. The question is: How are θ Prof. Raghuveer Parthasarathy University of Oregon Physis 35 Winter 8 3 R EFRACTION When light travels from one medium to another, it may hange diretion. This phenomenon familiar whenever we see the bent

More information

Manipulation and Active Sensing by Pushing Using Tactile Feedback

Manipulation and Active Sensing by Pushing Using Tactile Feedback Manipulation and Ative Sensing by Pushing Using Tatile Feedbak Kevin M. Lynh The Robotis Institute Carnegie Mellon University Pittsburgh, PA 1513 USA Hitoshi Maekawa Kazuo Tanie Cybernetis Division Biorobotis

More information

HIGHER ORDER full-wave three-dimensional (3-D) large-domain techniques in

HIGHER ORDER full-wave three-dimensional (3-D) large-domain techniques in FACTA UNIVERSITATIS (NIŠ) SER.: ELEC. ENERG. vol. 21, no. 2, August 2008, 209-220 Comparison of Higher Order FEM and MoM/SIE Approahes in Analyses of Closed- and Open-Region Eletromagneti Problems Milan

More information

Outline. CS38 Introduction to Algorithms. Administrative Stuff. Administrative Stuff. Motivation/Overview. Administrative Stuff

Outline. CS38 Introduction to Algorithms. Administrative Stuff. Administrative Stuff. Motivation/Overview. Administrative Stuff Outline CS38 Introdution to Algorithms Leture 1 April 1, 2014 administrative stuff motivation and overview of the ourse stale mathings example graphs, representing graphs graph traversals (BFS, DFS) onnetivity,

More information

BSPLND, A B-Spline N-Dimensional Package for Scattered Data Interpolation

BSPLND, A B-Spline N-Dimensional Package for Scattered Data Interpolation BSPLND, A B-Spline N-Dimensional Pakage for Sattered Data Interpolation Mihael P. Weis Traker Business Systems 85 Terminal Drive, Suite Rihland, WA 995-59-946-544 mike@vidian.net Robert R. Lewis Washington

More information

LAMC Junior Circle April 15, Constructing Triangles.

LAMC Junior Circle April 15, Constructing Triangles. LAMC Junior Cirle April 15, 2012 Olga Radko radko@math.ula.edu Oleg Gleizer oleg1140@gmail.om Construting Triangles. Copyright: for home use only. This handout is a part of the book in preparation. Using

More information

PhysicsAndMathsTutor.com 12

PhysicsAndMathsTutor.com 12 PhysisAndMathsTutor.om M. (a) sin θ = or.33 sin θ =.47 sin44 or sin 0.768 () θ = 50.5, 50., 50.35 ( ) () answer seen to > sf (b) refrats towards normal () 44 shown () () (TIR) only when ray travels from

More information

represent = as a finite deimal" either in base 0 or in base. We an imagine that the omputer first omputes the mathematial = then rounds the result to

represent = as a finite deimal either in base 0 or in base. We an imagine that the omputer first omputes the mathematial = then rounds the result to Sientifi Computing Chapter I Computer Arithmeti Jonathan Goodman Courant Institute of Mathemaial Sienes Last revised January, 00 Introdution One of the many soures of error in sientifi omputing is inexat

More information

A vertex-based hierarchical slope limiter for p-adaptive discontinuous Galerkin methods

A vertex-based hierarchical slope limiter for p-adaptive discontinuous Galerkin methods A vertex-based hierarhial slope limiter for p-adaptive disontinuous Galerkin methods Dmitri Kuzmin Institute of Applied Mathematis (LS III), Dortmund University of Tehnology Vogelpothsweg 87, D-44227,

More information