EP208 Computational Methods in Physics

Slides:



Advertisements
Similar presentations
Chapter 1 Introduction The solutions of engineering problems can be obtained using analytical methods or numerical methods. Analytical differentiation.
Advertisements

Object-Oriented Programming Dr. Napoleon H. Reyes, Ph.D. Computer Science Institute of Information and Mathematical Sciences Rm QA, IIMS, Albany.
Computer Network Fundamentals CNT4007C
Scientific Computing Lab Organization Dr. Miriam Mehl Institut für Informatik Scientific Computing in Computer Science.
Numerical Computation Lecture 0: Course Introduction Dr. Weifeng SU United International College Autumn 2010.
EECE 310 Software Engineering Lecture 0: Course Orientation.
Welcome to CSIS10A Computer Science: Beginning Programming Please, take a syllabus.
ACADEMIC SKILLS IN ENGLISH-1 ENG 101 ECONOMICS AND ADMINISTRATIVE SCIENCES
CSE 541 Rick Parent ELEMENTARY NUMERICAL METHODS Winter 2012.
EE210 Digital Electronics Introductory Class September 03, 2008.
E E 2415 Circuits I Lecture 0 - Basic Information.
Applied Numerical Method for Engineers and Scientists
Introduction to Engineering Analysis:IEA Instructor: Prof. Zvi Rusak Office Hours: Tuesday: 4:00-6:00 PM JEC Room 4009 Tel
CSE 3802 / ECE 3431 Numerical Methods in Scientific Computation
Welcome to Numerical Analysis Math 448/548 Cpt S 430/530 Fall 2015 Instructor: John Miller, West 134E Class web page can be found.
MAT120 Asst. Prof. Dr. Ferhat PAKDAMAR (Civil Engineer) M Blok - M106 Gebze Technical University Department of Architecture Spring.
S17: Introduction to Numerical Methods TT 2008 Lecture 1 Numerical aspects of computing.
BA 5202 Human Resource Management Introduction Course syllabus available at Instructor: Ça ğ rı Topal 1.
Introduction Fall 2001 Foundations of Computer Systems Prerequisite:91.166* or * Section A Instructor: Dr. David Hutchinson Office:
The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Introduction Course Outline.
Introduction and Course Information. Content Course Presentation Creating a Sample Project Muzaffer DOĞAN - Anadolu University2.
1 Lecture 1 Post-Graduate Students Advanced Programming (Introduction to MATLAB) Code: ENG 505 Dr. Basheer M. Nasef Computers & Systems Dept.
Quadratics Solving Quadratic Equations. Solving by Factorising.
CS 162 Introduction to Computer Science II Winter, 2014: 60 Spring, 2014: 60 Summer, 2014: 71.
MTH 204 NUMERICAL ANALYSIS Spring Term MTH 204 NUMERICAL ANALYSIS Spring Term DEPARTMENT of INFORMATION TECHNOLOGIES Assoc. Prof. Dr.
MTH Spring Term NUMERICAL ANALYSIS Spring Term MTH Spring Term NUMERICAL ANALYSIS Spring Term INTERNATIONAL.
Chemical Hydrogeology GLY What this course is: Diffusion equation Dispersion Convection-Dispersion equation Boundary conditions Sorption Production.
CS 161 Introduction to Computer Science I Winter, 2014: 112 Spring, 2014: 131 Summer, 2014: 132.
S5.40. Module Structure 30% practical tests / 70% written exam 3h lectures / week (except reading week) 3 x 2h of computer labs (solving problems practicing.
Computer Network Fundamentals CNT4007C
Welcome to Computers in Civil Engineering 53:081 Spring 2003
Software Engineering (1)
Introduction to EGR115 Welcome! Your instructors Class format
EGR 115 Introduction to Computing for Engineers
Computer Application in Engineering Design
Introduction to CS Senior Design Project I / II
Fall 2016 MATH 250: Calculus III.
Welcome to the course! Meetings and communication: AC meetings
Computer Architecture Syllabus
Software Engineering (CSI 321)
CSC 111 Course orientation
Computer Skills Lecturer Muhammed YASIN
Artificial Intelligence (CS 461D)
Math-254 Numerical Methods.
Welcome to my AP Calculus AB class
FINAL EXAM INFORMATION
FINAL EXAM INFORMATION
Introduction to CS Senior Design Project I / II
Introduction to CS Senior Design Project I / II
EECE 310 Software Engineering
INTRODUCTION TO INFORMATION SYSTEMS AND TECHNOLOGY (NET 201)
ME 123 Computer Applications I Lecture 24: Character Strings 4/18/03
Lecturer: Sri Parameswaran
CS & CS Capstone Project & Software Development Project
Net 222: Communications and networks fundamentals (Practical Part)
EDUCATION PERIOD REGULAR PERIOD MAXIMUM PERIOD 1 YEAR 2 YEARS 4 YEARS
26 July 2011 SC 611 Class 1.
Notes Over 9.1 Finding Square Roots of Numbers
CSC227: Operating Systems
Lecture 0: Introduction
Computer Programming (ECE 201)
Orientation CSC 111.
Find a if: a2 + b2 = c2 1.) c=10, b= 8 2.) c=20,b=16 3.) a2+152=172
Introduction to CS Senior Design Project I / II
Computer Networks CNT5106C
ME 123 Computer Applications I Lecture 25: MATLAB Overview 4/28/03
CMPT 102 Introduction to Scientific Computer Programming
Completing the Square pages 544–546 Exercises , – , –2
Introduction CSE 541.
Numerical Method Lecture 1: Introduction
Presentation transcript:

EP208 Computational Methods in Physics INTRODUCTION TO COURSE Department of Engineering Physics University of Gaziantep Feb 2014

Content Introduction The Course Example Numerical Problems

Introduction This is an introductory level course in numerical and computational methods with emphasis on applied computing. Solving problems in engineering often relies on a numerical method when an analytical method is complex or not available. In such cases computers are employed to perform the numerical calculations with speed and accuracy. Numerical analysis is very large discipline; see the list of topics given in wikipedia.

By the end of the course, the student will be able to approach some problems from a computational point of view and be able to implement solutions in the form of dedicated computer programs. We will use C++ Programming Language for the implementation of the numerical methods on the computer. gnuplot for plotting data Processing for plotting data

Course Web Page http://www.gantep.edu.tr/~bingul/ep208 Also search Google and Wikipedia for any of the expressions used in this course.

Course Content Sources of Errors Numerical Differentiation Roots of Equations Optimization Numerical Integration Solutions of Differential Equations Least Square Fitting Monte Carlo Methods

Lectures, Labs, Attendance, Exams Mondays – 08:30-10:20 (17:00-18:40) two-hour lecture Thursdays – 13:30-15:20 (19:45-21:30) two-hour lab Attendance You must attend at least 70% of the course Exams Mid-term 30% 22 Mar 2014 Quiz 30% Weekly Final 40% ?? May 2014

Grading FIRST & SECOND EDUCATION Independent from the arithmetic mean of the class, the following rules will be applied for each student: 00-19 -> FF 20-29 -> FD 30-39 -> DD 40-49 -> DC 50-59 -> CC 60-66 -> CB 67-75 -> BB 75-84 -> BA 85-99 -> AA

YOUR LAPTOP or FLASH DISK WITH YOU Computer Labs We’ll use Windows and/or Linux operating systems Every week, there will be a QUIZ You may need to save them on a flash drive or on the internet. DO NOT FORGET TO BRING YOUR LAPTOP or FLASH DISK WITH YOU

Example Numerical Problems Find the root of the equation: Evaluate the integral: Solve the differential equation:

Example Numerical Problems Aerospace engineers sometimes compute the trajectories (path) of projectiles like rockets. A trajectory of a rocket is defined by a (x, y) coordinates and is modelled by Find the appropriate initial angle θ if v0 = 200 m/s and x = 1950 m (a) For y0 = 0 and y1 = 0 (a) For y0 = 28 m and y1 = 123 m.

Solution: (a) We have analytical solution (b) It is not easy to find the analytical solution of the last equation. We can use a numerical method which gives We’ll see later…