Sungrazing Comets by Mohammad Khan

Slides:



Advertisements
Similar presentations
S-shaped growth Flowers. dA / dt = r * A * (K-A) / K If A
Advertisements

Numerical Solution for Initial Value Problem Numerical Analysis.
TNPL JoongJin-Cho Runge-kutta’s method of order 4.
South China University of Technology Oscillator motions Xiaobao Yang Department of Physics
PREFIXSPAN ALGORITHM Mining Sequential Patterns Efficiently by Prefix- Projected Pattern Growth
CE5504 – Surface Water Quality Modeling CE5504 Surface Water Quality Modeling Lab 2. Numerical Methods and Population Growth Modeling.
Numerical Integration CE5504 – Surface Water Quality Modeling  non-idealized loading functions  variable parameters  multi-segment systems  non-linear.
Magnetism Magnetic Force 1 Magnetic Force on a Moving Charge Magnetic Force on a Current Carrying Wire.
Dr. Turki F. Al-Somani VHDL synthesis and simulation – Part 1 Microcomputer Systems Design (Embedded Systems)
Ordinary Differential Equations (ODEs) 1Daniel Baur / Numerical Methods for Chemical Engineers / Explicit ODE Solvers Daniel Baur ETH Zurich, Institut.
Population Simulation Using MatLab Jie Ma EPS 109 Professor. Militzer.
Types of Conflict In the Literary Terms section of your notebook, please copy the following information about the types of conflict that form the basis.
Conflict is the dramatic struggle (problem) between two forces in a story. Without conflict, there is no plot.
Story Elements. Five Elements (Ingredients) of Story 1.Character 2.Plot 3.Setting 4.Conflict 5.Theme.
MA/CS 375 Fall MA/CS 375 Fall 2002 Lecture 12.
BEH.420 Matlab Tutorial Bambang Adiwijaya 09/20/01.
Apollo Flight Path Clayton Cantrall. Lunar Orbit Rendezvous Concept (LOR) One of three concepts considered for Apollo 11 mission One of three concepts.
I.Acceleration due to Gravity A.Special case of Uniform Acceleration 1)Constant force acting on an object imparts uniform acceleration 2)Gravity is a constant.
Ordinary Differential Equations (ODEs) 1Michael Sokolov / Numerical Methods for Chemical Engineers / Explicit ODE Solvers Michael Sokolov ETH Zurich, Institut.
Speed and Acceration. distance Total distance an object travels from a starting point to ending point.
Integration for physically based animation CSE 3541 Matt Boggus.
Creating a Short Story. Elements of a Short Story.
Arrays (Chapter 5)‏ Definition Applications One-Dimensional –Declaration –Initialization –Use Multidimensional.
Homework Questions. Chapter 6 Section 6.1 Vectors.
Plot Diagram.
3-4. The Tisserand Relation
Global Track Matching and Fitting
5.4 Runge-Kutta 4 Method.
Nathan Brasher February 13, 2005
Many-Body Gravity Simulator
Positron Capture Simulations: Runge-Kutta vs Boris
Position vs. time graphs Review (x vs. t)
The Scientific Importance of Comet C/2012 S1 (ISON)
Types of Conflict.
Numerical integration for physically based animation
SE301: Numerical Methods Topic 8 Ordinary Differential Equations (ODEs) Lecture KFUPM (Term 101) Section 04 Read , 26-2, 27-1 CISE301_Topic8L4&5.
Sharks, Mullet, and Mathematical Ecology
Vector Field Visualization
Michael Wong EPS 109 Multiple-Star Systems.
وزارة الثقافة والشباب والرياضة المؤتمر القومي الأول للشباب
Lettering on Maps (Type)
מיחזור במערכת החינוך.
Ch 8.6: Systems of First Order Equations
Crete PCA Plots Sam.
مفهوم التربية المدنية.
ME 123 Computer Applications I Lecture 24: Character Strings 4/18/03
تصميم المخازن باشراف الدكتورة مها عارف العزاوي.
The Martian: Hermes Spacecraft Trajectories
Numerical Method of DGLAP Evolution and Modified FFs in Medium
ORBITAL Trajectories!!! Made by Karol Sanchez
Story Elements.
Motion, Velocity, Acceleration
ME 123 Computer Applications I Lecture 23: Advanced Graphics 4/17/03
Impact of Time Integration Scheme on Supercell Development
Solving the differential equation by Using the Runge-Kutta's
Numerical solution of first-order ordinary differential equations
ELEMENTS OF PLOT.
Extensible Simulation of Planets and Comets
Greatest point of tension / action:
SE301: Numerical Methods Topic 8 Ordinary Differential Equations (ODEs) Lecture KFUPM Read , 26-2, 27-1 CISE301_Topic8L3 KFUPM.
*** Series 3RS Version 1, ***
Quizlet Study Links for Midterm
Numerical Computation and Optimization
Types of Conflict In the Literary Terms section of your notebook, please copy the following information about the types of conflict that form the basis.
Differential equations
ME 123 Computer Applications I Lecture 25: MATLAB Overview 4/28/03
The Search for Lagrange Point 1
Numerical solution of first-order ordinary differential equations 1. First order Runge-Kutta method (Euler’s method) Let’s start with the Taylor series.
Boundary value problems workshop
NUMERICAL ANALYSIS REVISION APKC FACULTY OF MET, AFAC.
Presentation transcript:

Sungrazing Comets by Mohammad Khan

I used Runge-Kutta method to plot the trajectories of the comets I used Runge-Kutta method to plot the trajectories of the comets. f1 = kepler_ode(t , y ); f2 = kepler_ode(t+dt/2, y+f1 .* (dt/2) ); f3 = kepler_ode(t+dt/2, y+f2 .* (dt/2) ); f4 = kepler_ode(t+dt , y+f3 .* dt ); Declare the following as global: mSun = 1e+7; mPlanet = 1e+4; G=1; mComet = 1; Define the vector y that contains 16 elements y=[rs(1); rs(2); vs(1); vs(2); rp(1);rp(2);vp(1);vp(2); rc(1);rc(2);vc(1);vc(2); rc2(1);rc2(2);vc2(1);vc2(2)];