Heated Earth Domain Model

Size: px
Start display at page:

Download "Heated Earth Domain Model"

Transcription

1 Heated Earth Domain Model 10/24/14 Understanding the geometry of the Earth and the physics of solar radiation are required to build a simulation of the heated Earth To reduce your research burden, I have collected here some background information and formulas that you might find useful Note that I am not mandating an implementation Note also, that the formula have not been thoroughly vetted You still need to make sure that they are correct and make sense in your situation If you find errors or find other useful background information that you want to add, please post to the forum Inputs Requested input grid spacing in degrees: 1 gstentative 180 Simulated time interval for recomputations, in minutes: The Earth The radius of the Earth in meters: R = The circumference of the Earth in meters: C = 2 R = The surface area of the Earth in meters 2 : A 4 R 2 14 = = The surface area of the Earth visible to the Sun at any one time in meters 2 : A Day = 2 R 2 = The Grid 14 The surface of the Earth is modeled as a grid The actual grid spacing in degrees: gs = argmax( i, ( 1 i gs tentative ) ( mod( 180, gs) = 0) ); that is, the largest integer less than or equal to gs tentative that evenly divides 180 Note that gs {, 1 2, 3, 4, 5, 6, 9, 10, 12, 15, 18, 20, 30, 36, 45, 60, 90, 180} The proportion of the Equator used by one unit of grid spacing: p = gs 360 The number of columns in the grid: cols = ( 360 ) ( gs) The number of rows in the grid: rows = ( 180 ) gs Number of cells in the grid: N = rows cols The grid itself can be represented as an array: GRID[ 0 ( rows 1), 0 ( cols 1) ] Note that rows count Northward from the South Pole Columns count Westward from the Primary Meridian West neighbor of GRID[,] i j : GRID[, i mod( j + 1, cols) ] East neighbor of GRID[,] i j : GRID[, i mod( j 1 + cols, cols) ] 6 7

2 North neighbor of GRID[,] i j : ( i + 1 rows 1) GRID[ i + 1, j] ; GRID[ i; mod( j + ( cols 2), cols) ] (In this and subsequent formulas, the notation C V 1 ; V 2 is a conditional expression (if-then-else), with C being a Boolean expression and V 1 and V 2 being arithmetic expression of the same type If C evaluates to true, then the overall result is the value of V 1 ; otherwise, it is the value of V 2 ) South neighbor of GRID[,] i j : i 1 0 GRID[ i 1, j] ; GRID[, imodj ( + ( cols 2), cols) ] Latitude Longitude (latlon) Mapping to Grid Indices The Earth is subdivided by parallels of latitude and meridians of longitude One way of specifying the position of a point on the surface of the Earth is by giving its latitude and longitude Latitude ( ) is given in degrees North or South of the Equator We will denote North as the positive direction and South as the negative Longitude ( ) is given by degrees East or West of the Primary Meridian We will denote East as the positive direction and West as the negative The GRID row i corresponding to latitude : gs + ( rows 2) The GRID column j corresponding to longitude : if we define = ( + gs) ( gs) 1 then j can be computed as: < 0 ( 1) ;( cols ( + 1) ) enables the formula to work for longitudes any place in a cell, not just at its origin Cell Properties Each cell in the grid has certain properties used in support of the simulation To specify these, we use the following terminology The grid consists of cells in the shape of isosceles trapezoids The origin of a cell is at its lower left hand corner Its base is the horizontal side of the trapezoid that goes through its origin The cell s row index in GRID: i Its column index in GRID: j The latitude of the origin of cells in row i: = ( i ( rows 2) ) gs The longitude of the origin of cells in column j: = ( j < (( cols) 2) ) d; 360 d, where d = ( j + 1) gs Length of each of the vertical sides of the cell in meters: l v = C p Length of the base of the cell in meters: = cos( ) l Note that this and all subsequent formulas in this section are dependent on the grid coordinates i and j Length of the top of the cell in meters: l t = cos( + gs) 2 The height or altitude of the cell in meters: h = l v 1 4 ( l b l t ) 2 l b v l v

3 The perimeter of the cell in meters: pm = l t + l b + 2 l v From this can be computed the proportion of the perimeter accorded to each of the sides The area of the cell in meters 2 : a = 1 2 ( l t + l b ) h The proportion of the Earth s surface area taken by the cell: ra = a A X-coordinate of the origin of the cells in GRID column j as the number of meters West of the Primary Meridian: x = ( mod( j + ( cols 2), cols) (( cols 2) 1) ) C cols Y-coordinate of the origin of the cells in GRID row i as the number of meters North of the Equator: y = ( i ( rows 2) ) C rows Rotation The Earth rotates West to East Rotational period of the Earth is 24 hours or 1440 minutes Rotational angle in degrees as a function of time t in minutes since the simulation s start: t = mod( t, 1440) GRID column under the Sun at time t: j t = mod( cols ( t 360 ) + ( cols 2), cols) Number of grid cells per (24-hour) time zone (at the Equator): gcptz = cols 24 The GRID columns in daylight at time : j + 5 gcptz j 6 gcptz Physical Units Newton (force): 1 kilogram * meter / sec 2 Joule (energy): one newton meter Watt (power): one joule per second Kelvin (temperature): basic unit of temperature Solar Heating I The Earth is heated primarily by the Sun, which provides energy in the form of radiation This process can be summarized with the following equations The total power the Earth receives from the Sun: P = watts The amount of solor power reaching the Earth per unit of area, also called the Solar Constant: S = watts per meter² The Earth s aldebo (average fraction of energy reflected): a = 03 The Earth s emissivity (average fraction of energy reradiated): e = 0612 The Stefan-Boltzmann constant: = J K 4 m 2 s 1 The average temperature of the Earth in kelvins due to Solar radiation: ( 1 a) S T E = = e 3 17

4 Heat Attenuation The energy received by a cell is attenuated due both to the cell s latitude and the time of day For a planet without tilt, the cell s heat attenuation at noon at latitudes ± : = cos( ) For a planet without tilt, the cell s heat attenuation on the Equator at the Primary Meridian at time t is tprimarymeridian, = t < 90 cos( t ); 0 That is, if at time t, the Sun is visible at the Primary Meridian, then the attenuation there is cos( ); otherwise it is 0 More generally, we need to know what the attenuation is at the Equator at longitude at time t To compute this, we first determine the number of degrees of rotation d that corresponds to: d = ;, where d is always positive and less than or equal to 360 The number of degrees of rotation that is from the spot on the Equator that is currently at noon: d Noon = d t Hence, for a planet without tilt, the cell s heat attenuation on the Equator at longitude at time t is t, = d Noon < 90 cos( d Noon ); 0 For a planet without tilt, when a particular cell at latitude and longitude is in daylight at time t, the cell s combined attenuation is: = cos t, ; otherwise it is 0 Cell Temperature The temperature at a cell is affected by several factors: its current temperature, T, the power it receives from the Sun,, the amount it loses due to cooling,, and the affect of its neighbors, T Neighbors T Sun will always be positive, while T Cool will always be negative Although will always be a non-negative value, its affect on the cell may be to heat it or cool it depending on whether its net contributed temperature is greater or less than T Solar Heating II T Neighbors T Sun T Cool The Earth is heated primarily by the Sun Total power reaching the Earth per meter 2 in watts: S, (from above) Power radiated from the Sun gets converted to heat depending on the thermal conductivity of the Earth Because the Sun is only heating the day side of the Earth, we would expect cells in the simulation to show a marked difference in temperatures between cells on the night and day sides of the grid t

5 Cell Cooling Because the overall temperature of the Earth remains constant, and because the Sun is heating the Earth, this means that the individual cells are responsible for shedding the excess heat As indicated in the previous section, this heat has the average value of Thus, each cell on average must shed this much heat However, cells loose energy T Sun in proportion to their areas and to their current temperatures That is, larger cells emit more energy in a unit of time than smaller ones do, and hotter cells shed more heat than cooler ones do Average grid cell size: = A N Actual grid cell size: a (from above) Relative size factor: = a Diffusion We can think of each cell in the GRID as sharing borders with its neighbors Heat will flow among these cells depending on their relative temperatures and the lengths of there common borders For cells at the poles, one of the neighbors of the cell will be directly across the pole from it, but the amount of shared border is zero This means that even though these cells are triangular, we can go ahead and treat each cell as having four neighbors Proportion of a cell s border shared with its neighbors to the East and West: = p W = l v pm p E Proportion of a cell s border shared with its neighbor to the North: p N = l t pm Proportion of a cell s border shared with its neighbor to the South: p S = l b pm T Neighbors in kelvins can now be computed as follows: T Neighbors = ( p N T N ) + ( p S T S ) + ( p E T E ) + ( p W T W ), where T N, T S, T E and T W are the temperature of the cell s neighbors to the North, South, East and West, respectively Note that there is no need to divide by four because the shared border proportions have already been factored in References

Latitude and Longitude Pre Test

Latitude and Longitude Pre Test Name Date Latitude and Longitude Pre Test Multiple Choice Directions: For questions, 1 10 circle the answer that letter that best answers the question. Each question is worth 1 point each. 1. To locate

More information

The Earth is a Rotating Sphere

The Earth is a Rotating Sphere The Earth is a Rotating Sphere The Shape of the Earth Earth s Rotation ( and relative movement of the Sun and Moon) The Geographic Grid Map Projections Global Time The Earth s Revolution around the Sun

More information

Name and Student ID Section Day/Time:

Name and Student ID Section Day/Time: AY2 - Overview of the Universe - Midterm #1 - Instructor: Maria F. Duran Name and Student ID Section Day/Time: 1) Imagine we ve discovered a planet orbiting another star at 1 AU every 6 months. The planet

More information

Cartesian Coordinates Need two dimensional system 2 number lines perpendicular to each other X-axis is horizontal Y-axis is vertical Position relative

Cartesian Coordinates Need two dimensional system 2 number lines perpendicular to each other X-axis is horizontal Y-axis is vertical Position relative General Physical Science Chapter 15 Place and Time Space and Time Einstein Space and time related Single entity Time is the 4 th dimension! Cartesian Coordinates Need some system to tell us where something

More information

Energy. Kinetic and Potential Energy. Kinetic Energy. Kinetic energy the energy of motion

Energy. Kinetic and Potential Energy. Kinetic Energy. Kinetic energy the energy of motion Introduction to Climatology GEOGRAPHY 300 Tom Giambelluca University of Hawai i at Mānoa Solar Radiation and the Seasons Energy Energy: The ability to do work Energy: Force applied over a distance kg m

More information

Module 2: Mapping Topic 2 Content: Determining Latitude and Longitude Notes

Module 2: Mapping Topic 2 Content: Determining Latitude and Longitude Notes Introduction In order to more easily locate points on a globe or map, cartographers designed a system of imaginary vertical lines (also called parallels) and horizontal lines (also called meridians) that

More information

Sunlight and its Properties Part I. EE 446/646 Y. Baghzouz

Sunlight and its Properties Part I. EE 446/646 Y. Baghzouz Sunlight and its Properties Part I EE 446/646 Y. Baghzouz The Sun a Thermonuclear Furnace The sun is a hot sphere of gas whose internal temperatures reach over 20 million deg. K. Nuclear fusion reaction

More information

Astron 104 Laboratory #7 Sunspots and the Solar Cycle

Astron 104 Laboratory #7 Sunspots and the Solar Cycle Name: Section: Astron 104 Laboratory #7 Sunspots and the Solar Cycle Section 9.4 In this exercise, you will observe how the physical appearance of the Sun changes from day to day over the period of one

More information

Practice Questions: Seasons #1

Practice Questions: Seasons #1 1. Seasonal changes on Earth are primarily caused by the A) parallelism of the Sun's axis as the Sun revolves around Earth B) changes in distance between Earth and the Sun C) elliptical shape of Earth's

More information

Chapter 2. Heating Earth's Surface & Atmosphere

Chapter 2. Heating Earth's Surface & Atmosphere Chapter 2 Heating Earth's Surface & Atmosphere Topics Earth-Sun Relationships Energy, Heat and Temperature Mechanisms of Heat Transfer What happens to Incoming Solar Radiation? Radiation Emitted by the

More information

Sunlight and its Properties II. EE 446/646 Y. Baghzouz

Sunlight and its Properties II. EE 446/646 Y. Baghzouz Sunlight and its Properties II EE 446/646 Y. Baghzouz Solar Time (ST) and Civil (clock) Time (CT) There are two adjustments that need to be made in order to convert ST to CT: The first is the Longitude

More information

Discovering the Universe for Yourself (Chapter 2) Years, Seasons, and Months: The Motions of Sun, Earth, and Moon

Discovering the Universe for Yourself (Chapter 2) Years, Seasons, and Months: The Motions of Sun, Earth, and Moon Discovering the Universe for Yourself (Chapter 2) Years, Seasons, and Months: The Motions of Sun, Earth, and Moon Based on Chapter 2 This material will be useful for understanding Chapters 3 and 4 on The

More information

Latitude and Longitude

Latitude and Longitude Latitude and Longitude Finding Your Location on a Sphere Coordinate Systems n When you are locating a point on a flat surface you can use Cartesian coordinates of x and y. n The point 2, 3 is plotted on

More information

Response to Unified Theory of Climate

Response to Unified Theory of Climate Response to Unified Theory of Climate Dr. Daniel M. Sweger National College Introduction During the last two years that I have been teaching Environmental Science and attempting to explain global warming

More information

Lecture #03. January 20, 2010, Wednesday

Lecture #03. January 20, 2010, Wednesday Lecture #03 January 20, 2010, Wednesday Causes of Earth s Seasons Earth-Sun geometry Day length Solar angle (beam spread) Atmospheric beam depletion Shape and Size of the Earth North Pole E Geoid: not

More information

Time, coordinates and how the Sun and Moon move in the sky

Time, coordinates and how the Sun and Moon move in the sky Time, coordinates and how the Sun and Moon move in the sky Using the colors and magnitudes of quasars drawn from the SDSS Catalog Archive Server to distinguish quasars from stars using the light they emit

More information

Response to Unified Theory of Climate

Response to Unified Theory of Climate Response to Unified Theory of Climate Dr. Daniel M. Sweger National College Introduction During the last two years that I have been teaching Environmental Science and attempting to explain global warming

More information

Time, Seasons, and Tides

Time, Seasons, and Tides Time, Seasons, and Tides Celestial Sphere Imagine the sky as a great, hollow, sphere surrounding the Earth. The stars are attached to this sphere--- some bigger and brighter than others--- which rotates

More information

Today. Spectra. Thermal Radiation. Wien s Law. Stefan-Boltzmann Law. Kirchoff s Laws. Emission and Absorption. Spectra & Composition

Today. Spectra. Thermal Radiation. Wien s Law. Stefan-Boltzmann Law. Kirchoff s Laws. Emission and Absorption. Spectra & Composition Today Spectra Thermal Radiation Wien s Law Stefan-Boltzmann Law Kirchoff s Laws Emission and Absorption Spectra & Composition Spectrum Originally, the range of colors obtained by passing sunlight through

More information

Which Earth latitude receives the greatest intensity of insolation when Earth is at the position shown in the diagram? A) 0 B) 23 N C) 55 N D) 90 N

Which Earth latitude receives the greatest intensity of insolation when Earth is at the position shown in the diagram? A) 0 B) 23 N C) 55 N D) 90 N 1. In which list are the forms of electromagnetic energy arranged in order from longest to shortest wavelengths? A) gamma rays, x-rays, ultraviolet rays, visible light B) radio waves, infrared rays, visible

More information

3. Which color of the visible light has the shortest wavelength? A) violet B) green C) yellow D) red

3. Which color of the visible light has the shortest wavelength? A) violet B) green C) yellow D) red Name: Topic 6 Test 1. Which process is responsible for the greatest loss of energy from Earth's surface into space on a clear night? A) condensation B) conduction C) radiation D) convection 2. Base your

More information

LONGITUDE AND LATITUDE. Semi great circles joining the true or geographic poles of the earth (true meridians).

LONGITUDE AND LATITUDE. Semi great circles joining the true or geographic poles of the earth (true meridians). MERIDIANS OF LONGITUDE LONGITUDE AND LATITUDE Semi great circles joining the true or geographic poles of the earth (true meridians). They are measured from 0 to 180 degrees East and West of the PRIME MERIDIAN,

More information

PHYSICAL GEOGRAPHY. By Brett Lucas

PHYSICAL GEOGRAPHY. By Brett Lucas PHYSICAL GEOGRAPHY By Brett Lucas INTRODUCTION Introduction to Earth Geography as a Field of Learning Geography is from two Greek words, Geo Earth, and Graphien to write. Elements/Branches of Geography

More information

Earth s Orbit. Sun Earth Relationships Ridha Hamidi, Ph.D. ESCI-61 Introduction to Photovoltaic Technology

Earth s Orbit. Sun Earth Relationships Ridha Hamidi, Ph.D. ESCI-61 Introduction to Photovoltaic Technology 1 ESCI-61 Introduction to Photovoltaic Technology Sun Earth Relationships Ridha Hamidi, Ph.D. Spring (sun aims directly at equator) Winter (northern hemisphere 23.5 tilts away from sun) 2 Solar radiation

More information

Earth s Energy Budget: How Is the Temperature of Earth Controlled?

Earth s Energy Budget: How Is the Temperature of Earth Controlled? 1 NAME Investigation 2 Earth s Energy Budget: How Is the Temperature of Earth Controlled? Introduction As you learned from the reading, the balance between incoming energy from the sun and outgoing energy

More information

Name(s) Period Date. Earth s Energy Budget: How Is the Temperature of Earth Controlled?

Name(s) Period Date. Earth s Energy Budget: How Is the Temperature of Earth Controlled? Name(s) Period Date 1 Introduction Earth s Energy Budget: How Is the Temperature of Earth Controlled? As you learned from the reading, the balance between incoming energy from the sun and outgoing energy

More information

Lecture 2 Global and Zonal-mean Energy Balance

Lecture 2 Global and Zonal-mean Energy Balance Lecture 2 Global and Zonal-mean Energy Balance A zero-dimensional view of the planet s energy balance RADIATIVE BALANCE Roughly 70% of the radiation received from the Sun at the top of Earth s atmosphere

More information

A2 Principi di Astrofisica. Coordinate Celesti

A2 Principi di Astrofisica. Coordinate Celesti A2 Principi di Astrofisica Coordinate Celesti ESO La Silla Tel. 3.6m Celestial Sphere Our lack of depth perception when we look into space creates the illusion that Earth is surrounded by a celestial sphere.

More information

Name... Class... Date...

Name... Class... Date... Radiation and temperature Specification reference: P6.3 Black body radiation (physics only) Aims This is an activity that has been designed to help you improve your literacy skills. In this activity you

More information

ASTR 1P01 Test 1, May 2017 Page 1 BROCK UNIVERSITY. Test 1: May 2017 Number of pages: 9 Course: ASTR 1P01, Section 1 Number of students: 614

ASTR 1P01 Test 1, May 2017 Page 1 BROCK UNIVERSITY. Test 1: May 2017 Number of pages: 9 Course: ASTR 1P01, Section 1 Number of students: 614 ASTR 1P01 Test 1, May 2017 Page 1 BROCK UNIVERSITY Test 1: May 2017 Number of pages: 9 Course: ASTR 1P01, Section 1 Number of students: 614 Examination date: 13 May 2017 Time limit: 50 min Time of Examination:

More information

Mid Term Prep-Latitude and Longitude

Mid Term Prep-Latitude and Longitude 1. What is the approximate altitude of Polaris at Syracuse, New York? A) 43 B) 47 C) 76 D) 90º 2. If an observer on Earth views Polaris on the horizon, the observer is located at the A) equator (0 ) B)

More information

ME 430 Fundamentals of Solar Energy Conversion for heating and Cooling Applications

ME 430 Fundamentals of Solar Energy Conversion for heating and Cooling Applications ME 430 Fundamentals of Solar Energy Conversion for heating and Cooling Applications Lecture (1 of 2) Solar Energy Resource and Availability C. Cruickshank and S. Harrison 2008 The Solar Constant 1 Variation

More information

Period 13 Solutions: Earth as an Energy System

Period 13 Solutions: Earth as an Energy System Period 13 Solutions: Earth as an Energy System 13.1 The Earth-Sun System 1) Energy from the sun Observe the models of the Earth, Moon, and Sun in the room. a) Imagine that the distance between the Earth

More information

Deducing Temperatures and Luminosities of Stars (and other objects ) Electromagnetic Fields. Sinusoidal Fields

Deducing Temperatures and Luminosities of Stars (and other objects ) Electromagnetic Fields. Sinusoidal Fields Deducing Temperatures and Luminosities of Stars (and other objects ) Review: Electromagnetic Radiation Gamma Rays X Rays Ultraviolet (UV) Visible Light Infrared (IR) Increasing energy Microwaves Radio

More information

Period 13: Earth as an Energy System

Period 13: Earth as an Energy System Name Section Period 13: Earth as an Energy System 13.1 The Earth-Sun System 1) Energy from the sun Observe the models of the Earth, Moon, and Sun in the room. a) Imagine that the distance between the Earth

More information

ME 476 Solar Energy UNIT THREE SOLAR RADIATION

ME 476 Solar Energy UNIT THREE SOLAR RADIATION ME 476 Solar Energy UNIT THREE SOLAR RADIATION Unit Outline 2 What is the sun? Radiation from the sun Factors affecting solar radiation Atmospheric effects Solar radiation intensity Air mass Seasonal variations

More information

Agronomy 406 World Climates January 11, 2018

Agronomy 406 World Climates January 11, 2018 Agronomy 406 World Climates January 11, 2018 Greenhouse effect quiz. Atmospheric structure and Earth's energy budget. Review for today: Online textbook: 2.1.1 The heat balance at the top of the atmosphere.

More information

Stamp Area. Earth Science - Note Packet #7. The shape of the Earth. The Earth is shaped like a ball or a. To go completely around the Earth,.

Stamp Area. Earth Science - Note Packet #7. The shape of the Earth. The Earth is shaped like a ball or a. To go completely around the Earth,. Name: Earth Science - Note Packet #7 Mr. LaFranca s - Period Aim: What are time zones and why are they important? Date: Stamp Area Do Now: Why do you think East Coast football games start at 1:00 and West

More information

Lecture Outline. Energy 9/25/12

Lecture Outline. Energy 9/25/12 Introduction to Climatology GEOGRAPHY 300 Solar Radiation and the Seasons Tom Giambelluca University of Hawai i at Mānoa Lauren Kaiser 09/05/2012 Geography 300 Lecture Outline Energy Potential and Kinetic

More information

Lab Exploration #4: Solar Radiation & Temperature Part II: A More Complex Computer Model

Lab Exploration #4: Solar Radiation & Temperature Part II: A More Complex Computer Model METR 104: Our Dynamic Weather (w/lab) Lab Exploration #4: Solar Radiation & Temperature Part II: A More Complex Computer Model Dr. Dave Dempsey, Department of Earth & Climate Sciences, SFSU, Spring 2014

More information

Phys Lab #1: The Sun and the Constellations

Phys Lab #1: The Sun and the Constellations Phys 10293 Lab #1: The Sun and the Constellations Introduction Astronomers use a coordinate system that is fixed to Earth s latitude and longitude. This way, the coordinates of a star or planet are the

More information

Clouds and Rain Unit (3 pts)

Clouds and Rain Unit (3 pts) Name: Section: Clouds and Rain Unit (Topic 8A-2) page 1 Clouds and Rain Unit (3 pts) As air rises, it cools due to the reduction in atmospheric pressure Air mainly consists of oxygen molecules and nitrogen

More information

Planetary Atmospheres: Earth and the Other Terrestrial Worlds Pearson Education, Inc.

Planetary Atmospheres: Earth and the Other Terrestrial Worlds Pearson Education, Inc. Planetary Atmospheres: Earth and the Other Terrestrial Worlds 10.1 Atmospheric Basics Our goals for learning: What is an atmosphere? How does the greenhouse effect warm a planet? Why do atmospheric properties

More information

Lesson 20: The Earth in its Orbit

Lesson 20: The Earth in its Orbit 291 Lesson 20: The Earth in its Orbit Recall that the Earth s orbit around the un is an ellipse which is almost a perfect circle. The average distance from the un to the Earth is 152,100,000 km (to the

More information

GLOBE : LATITUDES AND LONGITUDES

GLOBE : LATITUDES AND LONGITUDES 2 Figure 2.1 : Globe Let s Do Take a big round potato or a ball. Pierce a knitting needle through it. The needle resembles the axis shown in a globe. You can now move the potato or the ball around this

More information

4. Zero-dimensional Model of Earth s Temperature

4. Zero-dimensional Model of Earth s Temperature 4. Zero-dimensional Model of Earth s Temperature Introduction The term zero-dimensional implies that the earth is treated as a single point having a single temperature. Later we will consider a one-dimensional

More information

MAPH & & & & & & 02 LECTURE

MAPH & & & & & & 02 LECTURE Climate & Earth System Science Introduction to Meteorology & Climate MAPH 10050 Peter Lynch Peter Lynch Meteorology & Climate Centre School of Mathematical Sciences University College Dublin Meteorology

More information

Data and formulas at the end. Exam would be Weds. May 8, 2008

Data and formulas at the end. Exam would be Weds. May 8, 2008 ATMS 321: Science of Climate Practice Mid Term Exam - Spring 2008 page 1 Atmospheric Sciences 321 Science of Climate Practice Mid-Term Examination: Would be Closed Book Data and formulas at the end. Exam

More information

HEATING THE ATMOSPHERE

HEATING THE ATMOSPHERE HEATING THE ATMOSPHERE Earth and Sun 99.9% of Earth s heat comes from Sun But

More information

Lecture 9: Climate Sensitivity and Feedback Mechanisms

Lecture 9: Climate Sensitivity and Feedback Mechanisms Lecture 9: Climate Sensitivity and Feedback Mechanisms Basic radiative feedbacks (Plank, Water Vapor, Lapse-Rate Feedbacks) Ice albedo & Vegetation-Climate feedback Cloud feedback Biogeochemical feedbacks

More information

NABCEP Entry Level Exam Review Solfest practice test by Sean White

NABCEP Entry Level Exam Review Solfest practice test by Sean White 1. A fall protection system must be in place for all work done at heights in excess of a. 4 feet b. 6 feet c. 8 feet d. 10 feet 2. A circuit breaker performs the same function a. as a fuse b. as a switch

More information

TOPIC # 6 The RADIATION LAWS

TOPIC # 6 The RADIATION LAWS TOPIC # 6 The RADIATION LAWS More KEYS to unlocking the topics of: The GREENHOUSE EFFECT, GLOBAL WARMING & OZONE DEPLETION! Topic #6 pp 33-38 OBJECTIVES FOR TODAY S CLASS: To understand the essentials

More information

Earth: the Goldilocks Planet

Earth: the Goldilocks Planet Earth: the Goldilocks Planet Not too hot (460 C) Fig. 3-1 Not too cold (-55 C) Wave properties: Wavelength, velocity, and? Fig. 3-2 Reviewing units: Wavelength = distance (meters or nanometers, etc.) Velocity

More information

Newton s Universal Law of Gravitation and planetary orbits. Gravity (cont.) / Night Sky / Seasons 1/23/07

Newton s Universal Law of Gravitation and planetary orbits. Gravity (cont.) / Night Sky / Seasons 1/23/07 Newton s Universal Law of Gravitation and planetary orbits Announcements The first homework due Thursday (at the start of class). The next assignment will be posted on the website on Thursday Weekly preceptor-led

More information

Stellar Composition. How do we determine what a star is made of?

Stellar Composition. How do we determine what a star is made of? Stars Essential Questions What are stars? What is the apparent visual magnitude of a star? How do we locate stars? How are star classified? How has the telescope changed our understanding of stars? What

More information

Latitude and Longitude:

Latitude and Longitude: Latitude and Longitude: Finding Locations on Planet Earth. With thanks and credit to Step.com Typical Graph This is an example of a typical graph. It is made up of points that are connected by a line.

More information

LECTURE 3 - SOLAR ENERGY AND SOLAR RADIATION -

LECTURE 3 - SOLAR ENERGY AND SOLAR RADIATION - LECTURE 3 - SOLAR ENERGY AND SOLAR RADIATION - Prof. Marco Perino DENER Politecnico di Torino C.so Duca degli Abruzzi 24 10129 Torino e-mail: marco.perino@polito.it http://areeweb.polito.it/ricerca/tebe/

More information

Data and formulas at the end. Real exam is Wednesday May 8, 2002

Data and formulas at the end. Real exam is Wednesday May 8, 2002 ATMS 31: Physical Climatology Practice Mid Term Exam - Spring 001 page 1 Atmospheric Sciences 31 Physical Climatology Practice Mid-Term Examination: Would be Closed Book Data and formulas at the end. Real

More information

L.O: EARTH'S 23.5 DEGREE TILT ON ITS AXIS GIVES EARTH ITS SEASONS March 21 (SPRING), June 21(SUMMER), Sept 22 (AUTUMN) & Dec 21(WINTER)

L.O: EARTH'S 23.5 DEGREE TILT ON ITS AXIS GIVES EARTH ITS SEASONS March 21 (SPRING), June 21(SUMMER), Sept 22 (AUTUMN) & Dec 21(WINTER) L.O: EARTH'S 23.5 DEGREE TILT ON ITS AXIS GIVES EARTH ITS SEASONS March 21 (SPRING), June 21(SUMMER), Sept 22 (AUTUMN) & Dec 21(WINTER) 1. The apparent daily path of the Sun changes with the seasons because

More information

Energy and Seasons A B1. 9. Which graph best represents the general relationship between latitude and average surface temperature?

Energy and Seasons A B1. 9. Which graph best represents the general relationship between latitude and average surface temperature? Energy and Seasons A B1 1. Which type of surface absorbs the greatest amount of electromagnetic energy from the Sun? (1) smooth, shiny, and light colored (2) smooth, shiny, and dark colored (3) rough,

More information

Earth-Sun Relationships. The Reasons for the Seasons

Earth-Sun Relationships. The Reasons for the Seasons Earth-Sun Relationships The Reasons for the Seasons Solar Radiation The earth intercepts less than one two-billionth of the energy given off by the sun. However, the radiation is sufficient to provide

More information

Practice Seasons Moon Quiz

Practice Seasons Moon Quiz 1. Which diagram represents the tilt of Earth's axis relative to the Sun's rays on December 15? A) B) C) D) 2. The diagram below represents Earth in space on the first day of a season. 5. Base your answer

More information

Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate

Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate Exercise: Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate Objectives In Part 1 you learned about Celestial Sphere and how the stars appear to move across the night

More information

Lecture # 04 January 27, 2010, Wednesday Energy & Radiation

Lecture # 04 January 27, 2010, Wednesday Energy & Radiation Lecture # 04 January 27, 2010, Wednesday Energy & Radiation Kinds of energy Energy transfer mechanisms Radiation: electromagnetic spectrum, properties & principles Solar constant Atmospheric influence

More information

HNRS 227 Fall 2007 Chapter 14. Earth in Space presented by Prof. Geller 25 October 2007

HNRS 227 Fall 2007 Chapter 14. Earth in Space presented by Prof. Geller 25 October 2007 HNRS 227 Fall 2007 Chapter 14 Earth in Space presented by Prof. Geller 25 October 2007 Key Points of Chapter 14 Shape, Size and Motions of the Earth Rotation and Revolution Precession Coordinate Systems

More information

Lecture: October 6, 2010

Lecture: October 6, 2010 Lecture: October 6, 2010 Announcements: Next Observatory Opportunity: Tonight at 7:30 Problem Set 3 Due next Monday Second Exam October 25 Tides Since gravitational force decreases with (distance) 2, the

More information

MIDTERM REVIEW QUESTIONS - PACKET #2 (75 MULTIPLE CHOICE QUESTIONS)

MIDTERM REVIEW QUESTIONS - PACKET #2 (75 MULTIPLE CHOICE QUESTIONS) MIDTERM REVIEW QUESTIONS - PACKET #2 (75 MULTIPLE CHOICE QUESTIONS) 1. Which graph best represents the effect that heating has on air density in the atmosphere? 2. An empty 250-milliliter beaker has a

More information

CCMR Educational Programs

CCMR Educational Programs CCMR Educational Programs Title: Date Created: August 10, 2006 Latest Revision: August 10, 2006 Author(s): Myriam Ibarra Appropriate Level: Grades 8-10 Abstract: Energy and the Angle of Insolation Sun

More information

AT350 EXAM #1 September 23, 2003

AT350 EXAM #1 September 23, 2003 AT350 EXAM #1 September 23, 2003 Name and ID: Enter your name and student ID number on the answer sheet and on this exam. Record your answers to the questions by using a No. 2 pencil to completely fill

More information

Chapter 1 Solar Radiation

Chapter 1 Solar Radiation Chapter 1 Solar Radiation THE SUN The sun is a sphere of intensely hot gaseous matter with a diameter of 1.39 10 9 m It is, on the average, 1.5 10 11 m away from the earth. The sun rotates on its axis

More information

The Earth, Moon, and Sky. Lecture 5 1/31/2017

The Earth, Moon, and Sky. Lecture 5 1/31/2017 The Earth, Moon, and Sky Lecture 5 1/31/2017 From Last Time: Stable Orbits The type of orbit depends on the initial speed of the object Stable orbits are either circular or elliptical. Too slow and gravity

More information

The celestial sphere, the coordinates system, seasons, phases of the moon and eclipses. Chapters 2 and S1

The celestial sphere, the coordinates system, seasons, phases of the moon and eclipses. Chapters 2 and S1 The celestial sphere, the coordinates system, seasons, phases of the moon and eclipses Chapters 2 and S1 The celestial sphere and the coordinates system Chapter S1 How to find our way in the sky? Let s

More information

Midterm 1. - Covers Ch. 1, 2, 3, 4, & 5 (HW 1, 2, 3, & 4) ** bring long green SCANTRON 882 E short answer questions (show work)

Midterm 1. - Covers Ch. 1, 2, 3, 4, & 5 (HW 1, 2, 3, & 4) ** bring long green SCANTRON 882 E short answer questions (show work) Midterm 1 - Covers Ch. 1, 2, 3, 4, & 5 (HW 1, 2, 3, & 4) - 20 multiple choice/fill-in the blank ** bring long green SCANTRON 882 E - 10 short answer questions (show work) - formula sheet will be included

More information

Earth Moon Motions A B1

Earth Moon Motions A B1 Earth Moon Motions A B1 1. The Coriolis effect provides evidence that Earth (1) rotates on its axis (2) revolves around the Sun (3) undergoes cyclic tidal changes (4) has a slightly eccentric orbit 9.

More information

A1101, Lab 5: The Hertzsprung- Russell Diagram Laboratory Worksheet

A1101, Lab 5: The Hertzsprung- Russell Diagram Laboratory Worksheet Student Name: Lab TA Name: A1101, Lab 5: The Hertzsprung- Russell Diagram Laboratory Worksheet One of the most basic physical properties of a star is its luminosity, the rate at which it radiates energy

More information

Section 2. Locating Astronomical Objects in the Night Sky What Do You See? What Do You See? Think About It. Investigate.

Section 2. Locating Astronomical Objects in the Night Sky What Do You See? What Do You See? Think About It. Investigate. Section 2 Locating Astronomical Objects in the Night Sky Section 2 Locating Astronomical Objects in the Night Sky What Do You See? What Do You See? Learning Outcomes In this section, you will Construct

More information

Photovoltaic Systems Engineering

Photovoltaic Systems Engineering Photovoltaic Systems Engineering Ali Karimpour Associate Professor Ferdowsi University of Mashhad Reference for this lecture: Photovoltaic Systems Engineering Third Edition CRC Roger Messenger, Jerry Ventre

More information

OBJECTIVES FOR TODAY S CLASS:

OBJECTIVES FOR TODAY S CLASS: OBJECTIVES FOR TODAY S CLASS: To understand the key differences between Solar radiation & Terrestrial radiation based on the principles of the Radiation Laws. WRAP UP OF TOPIC #4... ELECTROMANGETIC RADIATION

More information

Aileen A. O Donoghue Priest Associate Professor of Physics

Aileen A. O Donoghue Priest Associate Professor of Physics SOAR: The Sky in Motion Life on the Tilted Teacup Ride Celestial Coordinates and the Day Aileen A. O Donoghue Priest Associate Professor of Physics Reference Points Poles Equator Prime Meridian Greenwich,

More information

A Sky Full of Stars - II.

A Sky Full of Stars - II. A Sky Full of Stars - II. Learning Objectives! What is the latitude of the Equator and of the Earth s North and South Poles? What is the declination of the Celestial Equator and of the Celestial Poles?!

More information

SUB-PROBLEM 2: HOW DO SUN AND EARTH MOVE FOR THE EXISTING CYCLES AND SYMMETRIES TO OCCUR? (The invention of a Sun/Earth model)

SUB-PROBLEM 2: HOW DO SUN AND EARTH MOVE FOR THE EXISTING CYCLES AND SYMMETRIES TO OCCUR? (The invention of a Sun/Earth model) SUB-PROBLEM 2: HOW DO SUN AND EARTH MOVE FOR THE EXISTING CYCLES AND SYMMETRIES TO OCCUR? (The invention of a Sun/Earth model) We have made several advancements in the problem of interest proposed at the

More information

Lecture 5: Greenhouse Effect

Lecture 5: Greenhouse Effect /30/2018 Lecture 5: Greenhouse Effect Global Energy Balance S/ * (1-A) terrestrial radiation cooling Solar radiation warming T S Global Temperature atmosphere Wien s Law Shortwave and Longwave Radiation

More information

Chapter 10 Planetary Atmospheres: Earth and the Other Terrestrial Worlds Pearson Education, Inc.

Chapter 10 Planetary Atmospheres: Earth and the Other Terrestrial Worlds Pearson Education, Inc. Chapter 10 Planetary Atmospheres: Earth and the Other Terrestrial Worlds 10.1 Atmospheric Basics Our goals for learning: What is an atmosphere? How does the greenhouse effect warm a planet? Why do atmospheric

More information

Earth s Time Zones. Time Zones In The United States

Earth s Time Zones. Time Zones In The United States Name: Mr. DeLeo Date: Period: Earth s Time Zones Goal: Students will understand why humans have developed time zones on Earth, and how to figure out time at different positions on Earth. Background: One

More information

C) the seasonal changes in constellations viewed in the night sky D) The duration of insolation will increase and the temperature will increase.

C) the seasonal changes in constellations viewed in the night sky D) The duration of insolation will increase and the temperature will increase. 1. Which event is a direct result of Earth's revolution? A) the apparent deflection of winds B) the changing of the Moon phases C) the seasonal changes in constellations viewed in the night sky D) the

More information

Detect patterns in the distribution of temperatures on the earth s surface

Detect patterns in the distribution of temperatures on the earth s surface Detect patterns in the distribution of temperatures on the earth s surface Greenhouse Effect Is this a Good thing or a BAD thing?????? Greenhouse Effect The greenhouse effect is often misunderstood and

More information

Meridian Circle through Zenith, North Celestial Pole, Zenith Direction Straight Up from Observer. South Celestial Pole

Meridian Circle through Zenith, North Celestial Pole, Zenith Direction Straight Up from Observer. South Celestial Pole Chapter 3 How Earth and Sky Work- Effects of Latitude In chapters 3 and 4we will learn why our view of the heavens depends on our position on the Earth, the time of day, and the day of the year. We will

More information

AST 104 LAB 1 Temperature and Luminosity of Stars: Wein s Law and the Stephan-Boltzmann Law

AST 104 LAB 1 Temperature and Luminosity of Stars: Wein s Law and the Stephan-Boltzmann Law AST 104 LAB 1 Temperature and Luminosity of Stars: Wein s Law and the Stephan-Boltzmann Law Learning Objectives To understand thermal spectra To understand Wien s Law and the Stephan-Boltzmann Law To understand

More information

Which property of a star would not change if we could observe it from twice as far away? a) Angular size b) Color c) Flux d) Parallax e) Proper Motion

Which property of a star would not change if we could observe it from twice as far away? a) Angular size b) Color c) Flux d) Parallax e) Proper Motion Exam #1 is in class next monday 25 multiple-choice questions 50 minutes Similar to questions asked in class Review sheet to be posted this week. We will have two 1-hour review sessions Friday 5-6pm (with

More information

Name: Exam 1, 9/30/05

Name: Exam 1, 9/30/05 Multiple Choice: Select the choice that best answers each question. Write your choice in the blank next to each number. (2 points each) 1. At the North Pole in mid-november, the sun rises at a. North of

More information

Astronomy I Exam I Sample Name: Read each question carefully, and choose the best answer.

Astronomy I Exam I Sample Name: Read each question carefully, and choose the best answer. Name: Read each question carefully, and choose the best answer. 1. During a night in Schuylkill Haven, most of the stars in the sky (A) are stationary through the night. (B) the actual motion depends upon

More information

5. In which diagram is the observer experiencing the greatest intensity of insolation? A) B)

5. In which diagram is the observer experiencing the greatest intensity of insolation? A) B) 1. Which factor has the greatest influence on the number of daylight hours that a particular Earth surface location receives? A) longitude B) latitude C) diameter of Earth D) distance from the Sun 2. In

More information

Lecture 5: Greenhouse Effect

Lecture 5: Greenhouse Effect Lecture 5: Greenhouse Effect S/4 * (1-A) T A 4 T S 4 T A 4 Wien s Law Shortwave and Longwave Radiation Selected Absorption Greenhouse Effect Global Energy Balance terrestrial radiation cooling Solar radiation

More information

ASTRO Fall 2012 LAB #2: Observing the Night Sky

ASTRO Fall 2012 LAB #2: Observing the Night Sky ASTRO 1050 - Fall 2012 LAB #2: Observing the Night Sky ABSTRACT Today we will be calibrating your hand as an angular measuring device, and then heading down to the planetarium to see the night sky in motion.

More information

C) wavelength C) eastern horizon B) the angle of insolation is high B) increases, only D) thermosphere D) receive low-angle insolation

C) wavelength C) eastern horizon B) the angle of insolation is high B) increases, only D) thermosphere D) receive low-angle insolation 1. What is the basic difference between ultraviolet, visible, and infrared radiation? A) half-life B) temperature C) wavelength D) wave velocity 2. In New York State, the risk of sunburn is greatest between

More information

Coordinates on the Sphere

Coordinates on the Sphere Survey Observations Coordinates on the Sphere Any position on the surface of a sphere (such as the Earth or the night sky) can be expressed in terms of the angular coordinates latitude and longitude Latitude

More information

Meteorology Pretest on Chapter 2

Meteorology Pretest on Chapter 2 Meteorology Pretest on Chapter 2 MULTIPLE CHOICE 1. The earth emits terrestrial radiation a) only at night b) all the time c) only during winter d) only over the continents 2. If an imbalance occurs between

More information

CA1 2.11: Designing an Equatorial Sundial Activity

CA1 2.11: Designing an Equatorial Sundial Activity Purpose: To design an equatorial sundial and learn about motions of the sun and earth that have a bearing on its design. Materials: poster board, length of stiff wire or dowel rod, tape, protractor, ruler,

More information

Lecture 2-07: The greenhouse, global heat engine.

Lecture 2-07: The greenhouse, global heat engine. Lecture 2-07: The greenhouse, global heat engine http://en.wikipedia.org/ the sun s ultraviolet (left) and infrared radiation imagers.gsfc.nasa.gov/ems/uv.html www.odysseymagazine.com/images SOLAR FLARES

More information

Using Your Astrolabe

Using Your Astrolabe Using Your Astrolabe So, you are working on your Astronomy Before the Telescope certification with the Astronomical League. You have built your Astrolabe. Now what? It seems easy enough to use a rotating

More information