EGEE 437: HWK #2. Brownson. Yaqdaan Alkayyoomi, Mackenzie Ailes, Nicholas Minutillo, Sheel Vora. Group 17. Due on Thursday, Feb.

Size: px
Start display at page:

Download "EGEE 437: HWK #2. Brownson. Yaqdaan Alkayyoomi, Mackenzie Ailes, Nicholas Minutillo, Sheel Vora. Group 17. Due on Thursday, Feb."

Transcription

1 EGEE 437: HWK #2 Group 17 Due on Thursday, Feb. 18, 2016 Brownson Yaqdaan Alkayyoomi, Mackenzie Ailes, Nicholas Minutillo, Sheel Vora

2 Contents Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem

3 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 5.1 Problem 5.1 What is the sky dome in solar energy? The sky dome is all of the components of light interaction contained in the hemisphere enclosing the terrestrial surface of Earth. It is the primary driver of short-wave scattering and it can be both an absorber and a source of longwave irradiation. The semi-spherical sky dome can be projected onto a flat surface for analysis. Page 2 of 21

4 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 5.2 Problem 5.2 Describe the difference between a meteorological air mass and the empirical air mass used to calibrate short-term performance of solar technologies (AM1.5). An air mass can be defined in a meteorological sense as a large body of interacting particles that has homogenous physical characteristics in pressure, chemistry and temperature. These properties are established while the air mass was situated a specific source and can dynamically change as it subsequently moves away. On the other hand, solar energy engineers define air mass as AM = 1 cos(θ z ) where z is the zenith angle in degrees, when using it to calibrate the short-term performance of solar technologies. This describes the direct optical length light must take to travel through the Earth s atmosphere. Here, air mass can be used to describe the solar spectrum after the effects of the atmosphere and characterizes how light is attenuated as a result. Page 3 of 21

5 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 5.3 Problem 5.3 How does one calculate AM0 (extraterrestrial irradiance)? The equation to calculate AM0 in W/m 2 is provided in the SECS textbook, p. 203 (8.1): G 0 = G sc [ cos ( )] 360n [sin φ sin δ + cos φ cos δ cos ω] 365 where G sc is the solar constant, n is the day, φ is the latitude, δ is the declination and ω is the hour angle. Page 4 of 21

6 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 5.4 Problem 5.4 What is the meaning of clear sky in solar energy conversion? included and excluded from a clear sky calculation. Specify what parameters are The clear sky is used as a baseline condition, to which the effects of clouds and aerosols can further decrease the solar budget by. Parameters that are included in the calculation of a clear sky model include: Surface pressure Zenith angle (θ z ) Precipitable water Reduced ozone and NO 2 Solar constant (G 0 ) Ground albedo (ρ g ) Scattering factors of Ångström s exponents of scattering Parameters that are excluded from a clear sky model include the effects of clouds, trees, terrestrial landscape topology and the effects of urban shading. Page 5 of 21

7 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.1 Problem 6.1 Assign definitions, correct symbols, and sign convention to the following terms. Angle of Incidence. Solar Azimuth. Collector Azimuth. Solar Altitude. Zenith Angle. Declination. Hour Angle. Angle of Incidence: the angle between a ray and the surface vector (θ). Solar Azimuth: the angle defining the location of the Sun in relation to an observer, located between 0 and 360. The angle is clockwise relative to the northernmost point of the horizon (γ s ). Collector Azimuth: the angle defining the location of the Sun in relation to a SECS, located between 0 and 360. The angle is clockwise relative to the northernmost point of the horizon (γ). Solar Altitude: the angle between the horizon and line existing between an observer and the center of the Sun (α s ). Zenith Angle: the complement of α s. The angle between a vector perpendicular to the Earth s surface and ray of the Sun (θ z ). Declination: the observed or apparent angle between the plane of the equator and the plane the Earth follows in orbiting the Sun. Independent of the observer s location on Earth (δ). Hour Angle: the celestial angular value of the Sun with respect to a meridian on Earth. The local hour angle is 0 at solar noon. Prior to noon is -15 /hr and after noon is +15 /hr (ω). Page 6 of 21

8 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.2 Problem 6.2 Calculate the solar declination (δ) for the spring and fall Equinoxes and the summer and winter Solstices. [Extra] estimate the error between the calculation and the defined declinations for each event Dates Equinox: Solstice: March 20th (spring), September 22nd (fall) June 20th (summer), December 21st (winter) n values n SE = = 79 n F E = = 265 n SS = = 171 n W S = = 355 The values of δ can be found using the equation δ = sin[ (284+n)]. The problem is solved using the following scilab code: //N values n se = 79 n fe = 265 n ss = 171 n ws = 355 delta se = 23.45*(sind((360/365)*(284+n se))) delta fe = 23.45*(sind((360/365)*(284+n fe))) delta ss = 23.45*(sind((360/365)*(284+n ss))) delta ws = 23.45*(sind((360/365)*(284+n ws))) δ SE = δ F E = δ SS = δ W S = Problem 6.2 continued on next page... Page 7 of 21

9 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.2 Extra We can then compare these values with the known actual values to compute our error: Spring equinox δ = 0 Fall equinox δ = 0 Summer solstice δ = Winter solstice δ = Error = Calculated-Actual E δse = 0.81 E δf E = 0.61 E δss = 0 E δw S = 0 Page 8 of 21

10 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.3 Problem 6.3 Calculate the sunrise and sunset times (standard time) for four days in Paris: the spring and fall Equinoxes and the summer and winter Solstices, given 49 N latitude (φ) and 2 E longitude (λ). Do not use daylight savings in any of these solutions. The following equations were used to calculate the specified times along with the δ values obtained from Problem 6.3: t sol = ω ss hr ω ss = cos 1 ( tan(φ) tan(δ)) The following scilab code was used to solve the problem: //Variables phi = 49 // Angle of latitude in degrees delta se = delta fe = delta ss = delta ws = // Hour angle omega se = acosd(-tand(phi)*tand(delta se)) omega fe = acosd(-tand(phi)*tand(delta fe)) omega ss = acosd(-tand(phi)*tand(delta ss)) omega ws= acosd(-tand(phi)*tand(delta ws)) // Solar times of Sunrise tsr ss = -omega se*(1/15)+12 tsr fe = -omega fe*(1/15)+12 tsr ss = -omega ss*(1/15)+12 tsr ws = -omega ws*(1/15)+12 // Solar times of sunset tss se = omega spring*(1/15)+12 tss fe = omega fall*(1/15)+12 tss ss = omega summer*(1/15)+12 tss ws = omega winter*(1/15)+12 Problem 6.3 [] continued on next page... Page 9 of 21

11 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.3 Sunrise Spring equinox: 6:04 am Fall equinox: 6:03 am Summer solstice: 4:00 am Winter solstice: 8:00 am Sunset Spring equinox: 7:56 pm Fall equinox: 6:55 pm Summer solstice: 8:00 pm Winter solstice: 4:00 pm Page 10 of 21

12 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.4 Problem 6.4 Calculate the day lengths for four days in Paris: the spring and fall Equinoxes and the summer and winter Solstices, given 49 N latitude (φ) and 2 E longitude (λ). Do not use daylight savings in any of these solutions. The following equations were used to calculate the specified day lengths: ω ss = cos 1 (tan(φ) tan(δ)) Length Day = 2 ω ss ( 1h 15 ) Along with the ω values obtained in the last problem (6.3), the following scilab script was used: // Day lengths DL se = 2* -omega se*(1/15) DL fe = 2* -omega fe*(1/15) DL ss = 2* -omega ss*(1/15) DL ws = 2* -omega ws*(1/15) Spring Equinox: hrs. Fall Equinox: hrs. Summer Solstice: hrs. Winter Solstice: 8.00 hrs. Page 11 of 21

13 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.5 Problem 6.5 Determine the solar altitude and azimuth angles at 14h00 local time (watch time) for Fargo, North Dakota on August 13. Assume daylight savings is in effect (DST). The following equations were used to calculate the specified angles: δ = sin( 360 (284 + n)) 365 ω = 15 h (t sol 12h) B = (360 )( n ) E t = 229.2( ) ( cos B sin B) 229.2( cos 2B sin 2B) t sol = t std (±4(λ std λloc) + E t 60) α s = sin 1 (sin(φ) sin(δ) + cos(φ) cos(δ) cos(ω)) θ z = cos 1 (sin(φ) sin(δ) + cos(φ) cos(δ) cos(ω)) γ s = sin(ω) cos 1 cos(θ z sin(φ) sin(δ)) sin(θ z cos(φ)) Fargo, ND is located at N (φ) and W (λ loc ) 1. Using these coordinates and the following scilab script, the answer was calculated. 1 according to google.com //Variables n = 225 t std = 14 phi = //latitude lambda = //longitude UTC = -6 // in Hours long std = UTC*15 // B constant B=360*((n-1)/365); // E t equation E t=229.2*( )+229.2*( *cosd(b) *sind(b)) *( *cosd(2*B) *sind(2*B)); // Cacluating t sol t lambda=4*(long std - lambda) TC=(E t+t lambda)/60 tsol=(t std+tc-1) // Get the angles now delta=23.45*(sind((360/365)*(284+n))) omega=(tsol-12)*15 Problem 6.5 [] continued on next page... Page 12 of 21

14 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.5 //alpha s alpha s=asind(sind(phi)*sind(delta)+cosd(phi)*cosd(delta)*cosd(omega)) theta z=acosd(sind(phi)*sind(delta)+cosd(phi)*cosd(delta)*cosd(omega)) //gamma s gamma s=acosd((cosd(theta z)*sind(phi)-sind(delta))/(sind(theta z)*cosd(phi))) Solar altitude (α s ) = Solar azimuth (γ s ) = Page 13 of 21

15 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.6 Problem 6.6 Calculate three condition for the day of June 9, at 10h30 solar time in Athens, Greece: (a) the solar zenith and azimuth angles, (b) the sunrise and sunset times, and (c) the day length. a The latitude of Athens, Greece is located at N (φ) and the longitude is located at E (λ loc ) 2. The following equations were used to find the specified angles: n = = 160 δ = sin( 360 (284 + n)) 365 ω = 15 h (t sol 12h) θ z = cos 1 (sin(φ) sin(δ) + cos(φ) cos(δ) cos(ω)) γ s = sin(ω) cos 1 cos(θ z sin(φ) sin(δ)) sin(θ z cos(φ)) These equations are also used in the scilab script form problem 6.5. The same code was used for this problem, with the new solar time, n, φ and λ values as inputs. Solar zenith (θ z ) = Solar azimuth (γ s ) = b The following equations are used to find the specified times: ω = cos 1 (tan(φ) tan(δ)) t sol = ω h These equations were used in the following scliab script to compute the answer: 2 According to google.com //Variables phi = n = 160 //Now find the times using declination angle and phi delta=23.45*(sind((360/365)*(284+n))) omega = acosd(-tand(phi)*tand(delta)) tsr = -omega*(1/15)+12 tss = omega*(1/15)+12 Problem 6.6 [b] continued on next page... Page 14 of 21

16 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.6 Sunrise : 4:43am Sunset : 7:17pm c Using the equation of L day = 2 ω ss ( 1h 15 ), the day length can be found: Day Length : hours Page 15 of 21

17 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.7 Problem 6.7 Repeated calculations for two days and two times: Match 15 and September 15, each at 10h00 and 14h30 solar time. Solve for the following two conditions given the locale of the borrough of Brooklyn in New York City, NY.: (a) the solar azimuth (γ s ) and altitude (α s ) angles at the appointed times, and (b) the sunrise and sunset times. a The latitude of Brooklyn, NYC, NY is N and the longitude is located at W (λ loc ) 3. Using t sol1 = 10 and t sol2 = 14.5, the following equations were used: n 1 = = 74 n 2 = = 258 δ = sin( 360 (284 + n)) 365 ω = 15 h (t sol 12h) α s = sin 1 (sin(φ) sin(δ) + cos(φ) cos(δ) cos(ω)) θ z = cos 1 (sin(φ) sin(δ) + cos(φ) cos(δ) cos(ω)) γ s = sin(ω) cos 1 cos(θ z sin(φ) sin(δ)) sin(θ z cos(φ)) The new φ and n values were used as input for the scilab script from problem 6.5. Solar altitude (10h00) (α s ) = Solar azimuth (10h00) (γ s ) = Solar altitude (14h30) (α s ) = Solar azimuth (14h30) (γ s ) = Solar altitude (10h00) (α s ) = Solar azimuth (10h00) (γ s ) = Solar altitude (14h30) (α s ) = Solar azimuth (14h30) (γ s ) = March 15 September 15 3 according to google.com Problem 6.7 continued on next page... Page 16 of 21

18 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.7 b The following equations are used to find the specified times using the scilab script from Problem 6.6 (b): Sunrise : 6:09 am Sunset : 5:50 pm Sunrise : 5:52 am Sunset : 6:08 pm ω = cos 1 (tan(φ) tan(δ)) t sol = ω h March 15 September 15 Page 17 of 21

19 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.12 Problem 6.12 A flat plate collector in Pittsburgh, PA, is tilted at 34 from horizontal and pointed 5 West of South. Calculate the angle of incidence (θ) on the collector at 10:30am and 2:30pm solar times for both March 15 and September 15. The latitude and longitude of Pittsburgh, PA are N and W 4.Using t sol1 = 10 and t sol2 = 14.5, the following equations were used to calculate the angle of incidence (θ) on the collector: n 1 = = 74 n 2 = = 258 δ = sin( 360 (284 + n)) 365 ω = 15 h (t sol 12h) θ = cos 1 (sin(φ) sin(δ) sin(β) cos(φ) cos(δ) cos(β) cos(γ) + cos(φ) cos(δ) cos(β) cos(γ) + sin(φ) cos(δ) sin(β) cos(γ) cos(ω) + cos(δ) sin(β) sin(ω) sin(γ)) The following scilab script was used to solve this problem. changed for each given date and time. The n and t values were beta= 34 gamma=5 phi= ; //latitude n=74; //change n value here delta=23.45*sind((360/365)*(284+n)); //declination angle t=10.5 //change time value here omega=15*(t-12) costheta = sind(phi) * sind(delta) * cosd(beta) - cosd(phi) * sind(delta) *.. sind(beta)* cosd(gamma) + cosd(phi) * cosd(delta) * cosd(beta) *.. cosd(omega) + sind(phi) * cosd(delta) * sind(beta) * cosd(gamma) *.. cosd(omega) + cosd(delta) * sind(beta) * sind(omega) * sind(gamma); theta = acosd(costheta); 4 according to google.com Problem 6.12 [] continued on next page... Page 18 of 21

20 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 6.12 March 15 10:30am (θ) : :30pm (θ) : September 15 10:30am (θ) : :30pm (θ) : Page 19 of 21

21 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 7.1 Problem 7.1 Plot an orthographic projection of a southeasterly tall building interfering with a first floor window of interest, seen in Figure 7.9 (problem adapted To plot the projections, the following calculations were used: α X A = tan 1 9 ( ) = α X B = tan 1 ( 9 8 ) = 48 α X C = tan 1 ( 9 80 ) = 45.2 γ X A = tan 1 ( 7 8 ) 25 = 66 γ X B = 0 25 = 25 γ X C = tan 1 ( 4 8 ) 25 = 1.5 Figure 1: Orthographic projection of a southeasterly tall building Page 20 of 21

22 Group 17 EGEE 437 (Brownson): HWK #2 PROBLEM 7.2 Problem 7.2 Plot a polar projection of the same scenario (using the same critical points). Figure 2: Polar projection of a southeasterly tall building Page 21 of 21

Observer-Sun Angles. ), Solar altitude angle (α s. ) and solar azimuth angle (γ s )). θ z. = 90 o α s

Observer-Sun Angles. ), Solar altitude angle (α s. ) and solar azimuth angle (γ s )). θ z. = 90 o α s Observer-Sun Angles Direction of Beam Radiation: The geometric relationships between a plane of any particular orientation relative to the earth at any time and the incoming beam solar radiation can be

More information

1. SOLAR GEOMETRY, EXTRATERRESTRIAL IRRADIANCE & INCIDENCE ANGLES

1. SOLAR GEOMETRY, EXTRATERRESTRIAL IRRADIANCE & INCIDENCE ANGLES 1. SOLAR GEOMETRY, EXTRATERRESTRIAL IRRADIANCE & INCIDENCE ANGLES The Sun A blackbody with T ~ 6000 K Blackbody radiation with the same amount of energy per unit of area T ~ 5762 K Blackbody radiating

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

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

Basic Solar Geometry. Contents

Basic Solar Geometry. Contents Basic Solar Geometry Soteris A. Kalogirou Cyprus University of Technology Limassol, Cyprus Contents Introduction The sun (general characteristics) Solar geometry Solar Geometry Reckoning of time (AST)

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

Chapter Seven. Solar Energy

Chapter Seven. Solar Energy Chapter Seven Solar Energy Why Studying Solar energy To know the heat gain or heat loss in a building In making energy studies In the design of solar passive homes. Thermal Radiation Solar spectrum is

More information

Chapter 5. Daylighting

Chapter 5. Daylighting Chapter 5. Daylighting 5.1. History of Daylighting The history of daylighting and the history of architecture were one. The major structural changes in buildings reflected the goal of increasing the amount

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

4. Solar radiation on tilted surfaces

4. Solar radiation on tilted surfaces 4. Solar radiation on tilted surfaces Petros Axaopoulos TEI of Athens Greece Learning Outcomes After studying this chapter, readers will be able to: define the direct, diffuse and reflected solar radiation

More information

Estimation of Hourly Solar Radiation on Horizontal and Inclined Surfaces in Western Himalayas

Estimation of Hourly Solar Radiation on Horizontal and Inclined Surfaces in Western Himalayas Smart Grid and Renewable Energy, 2011, 2, 45-55 doi:10.4236/sgre.2011.21006 Published Online February 2011 (http://www.scirp.org/journal/sgre) 45 Estimation of Hourly Solar Radiation on Horizontal and

More information

Motion of the Sun. View Comments

Motion of the Sun. View Comments Login 2017 Survey to Improve Photovoltaic Education Christiana Honsberg and Stuart Bowden View Comments Instructions 1. Introduction 2. Properties of Sunlight 2.1. Basics of Light Properties of Light Energy

More information

COMPUTER PROGRAM FOR THE ANGLES DESCRIBING THE SUN S APPARENT MOVEMENT IN THE SKY

COMPUTER PROGRAM FOR THE ANGLES DESCRIBING THE SUN S APPARENT MOVEMENT IN THE SKY COMPUTER PROGRAM FOR THE ANGLES DESCRIBING THE SUN S APPARENT MOVEMENT IN THE SKY B. BUTUC 1 Gh. MOLDOVEAN 1 Abstract: The paper presents software developed for the determination of the Sun-Earth geometry.

More information

Page 1. Name:

Page 1. Name: Name: 1) What is the primary reason New York State is warmer in July than in February? A) The altitude of the noon Sun is greater in February. B) The insolation in New York is greater in July. C) The Earth

More information

SURFACE ORIENTATIONS AND ENERGY POLICY FOR SOLAR MODULE APPLICATIONS IN DHAKA, BANGLADESH

SURFACE ORIENTATIONS AND ENERGY POLICY FOR SOLAR MODULE APPLICATIONS IN DHAKA, BANGLADESH International Journal of Scientific & Engineering Research, Volume 5, Issue, February-014 83 ISSN 9-5518 SURFACE ORIENTATIONS AND ENERGY POLICY FOR SOLAR MODULE APPLICATIONS IN DHAKA, BANGLADESH 1 Debazit

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 6. Solar Geometry. Contents

Chapter 6. Solar Geometry. Contents Chapter 6. Solar Geometry Contents 6.1 Introduction 6.2 The Sun 6.3 Elliptical Orbit 6.4 Tilt of the Earth s Axis 6.5 Consequences of the Altitude Angle 6.6 Winter 6.7 The Sun Revolves Around the Earth!

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

FLATE Hillsborough Community College - Brandon (813)

FLATE Hillsborough Community College - Brandon (813) The Florida Advanced Technological Education (FLATE) Center wishes to make available, for educational and noncommercial purposes only, materials relevant to the EST1830 Introduction to Alternative/Renewable

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

For most observers on Earth, the sun rises in the eastern

For most observers on Earth, the sun rises in the eastern 632 CHAPTER 25: EARTH, SUN, AND SEASONS WHAT IS THE SUN S APPARENT PATH ACROSS THE SKY? For most observers on Earth, the sun rises in the eastern part of the sky. The sun reaches its greatest angular altitude

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

NAME; LAB # SEASONAL PATH OF THE SUN AND LATITUDE Hemisphere Model #3 at the Arctic Circle

NAME; LAB # SEASONAL PATH OF THE SUN AND LATITUDE Hemisphere Model #3 at the Arctic Circle NAME; PERIOD; DATE; LAB # SEASONAL PATH OF THE SUN AND LATITUDE Hemisphere Model #3 at the Arctic Circle 1 OBJECTIVE Explain how latitude affects the seasonal path of the Sun. I) Path of the Sun and Latitude.

More information

Calculating equation coefficients

Calculating equation coefficients Solar Energy 1 Calculating equation coefficients Construction Conservation Equation Surface Conservation Equation Fluid Conservation Equation needs flow estimation needs radiation and convection estimation

More information

The Sun. Fabio Peron Università IUAV - Venezia. Earth-Sun relationships. The Sun. Photosphere (Emits much of the solar radiant power)

The Sun. Fabio Peron Università IUAV - Venezia. Earth-Sun relationships. The Sun. Photosphere (Emits much of the solar radiant power) Università IUAV Venezia Corso di Fisica Tecnica Ambientale Laboratorio Integrato Innovazione-Sostenibilità Sun and solar radiation Fabio Peron Università IUAV - Venezia The Sun The Sun Earth-Sun relationships

More information

EE Properties of Sunlight. Y. Baghzouz Professor of Electrical Engineering

EE Properties of Sunlight. Y. Baghzouz Professor of Electrical Engineering EE 495-695 2.2 Properties of Sunlight Y. Baghzouz Professor of Electrical Engineering Azimuth angle The azimuth angle is the compass direction from which the sunlight is coming. At the equinoxes, the sun

More information

Solar Radiation 1.1 THE SUN

Solar Radiation 1.1 THE SUN 1 Solar Radiation The sun s structure and characteristics determine the nature of the energy it radiates into space. The first major topic in this chapter concerns the characteristics of this energy outside

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

Solar Insolation and Earth Radiation Budget Measurements

Solar Insolation and Earth Radiation Budget Measurements Week 13: November 19-23 Solar Insolation and Earth Radiation Budget Measurements Topics: 1. Daily solar insolation calculations 2. Orbital variations effect on insolation 3. Total solar irradiance measurements

More information

Heat Transfer. Energy from the Sun. Introduction

Heat Transfer. Energy from the Sun. Introduction Heat Transfer Energy from the Sun Introduction The sun rises in the east and sets in the west, but its exact path changes over the course of the year, which causes the seasons. In order to use the sun

More information

Photovoltaic Systems Solar Radiation

Photovoltaic Systems Solar Radiation PowerPoint Presentation Photovoltaic Systems Solar Radiation The Sun Solar Radiation Sun- Earth Relationships Array Orientation Solar Radiation Data Sets Estimating Array Performance Arizona Solar Power

More information

BMM4753 RENEWABLE ENERGY RESOURCES

BMM4753 RENEWABLE ENERGY RESOURCES BMM4753 RENEWABLE ENERGY RESOURCES Prof Dr Shahrani Haji Anuar Energy Sustainability Focus Group 1 Summary 2.1 Introduction 2.2 How to use solar thermal energy 2.3 Solar radiation component; diffuse, beam,

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 The Year Aileen A. O Donoghue Priest Associate Professor of Physics Celestial Coordinates Right Ascension RA or From prime meridian (0 h ) to 23 h

More information

Questions you should be able to answer after reading the material

Questions you should be able to answer after reading the material Module 4 Radiation Energy of the Sun is of large importance in the Earth System, it is the external driving force of the processes in the atmosphere. Without Solar radiation processes in the atmosphere

More information

Earth Motions Packet 14

Earth Motions Packet 14 Earth Motions Packet 14 Your Name Group Members Score Minutes Standard 4 Key Idea 1 Performance Indicator 1.1 Explain complex phenomena, such as tides, variations in day length, solar insolation, apparent

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

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

C2: NĂNG LƯỢNG ĐIỆN MẶT TRỜI

C2: NĂNG LƯỢNG ĐIỆN MẶT TRỜI C2: NĂNG LƯỢNG ĐIỆN MẶT TRỜI 1. Nguồn năng lượng mặt trời 2. Tế bào quang điện 3. Đặc tuyến I-V của pin quang điện 4. Công nghệ chế tạo pin quang điện 5. Đặc tính làm việc của pin quang điện 6. Hệ điện

More information

DELIVERABLE 5.3 Report on Predictive control system development and performance tests 1

DELIVERABLE 5.3 Report on Predictive control system development and performance tests 1 ENER/FP7/296009/InSun InSun Industrial Process Heat by Solar Collectors DELIVERABLE 5.3 Report on Predictive control system development and performance tests 1 Work Package 5 Simulation based system design

More information

1/55. Solar energy. solar radiation definitions incident solar energy

1/55. Solar energy. solar radiation definitions incident solar energy 1/55 Solar energy solar radiation definitions incident solar energy 2/55 Sun closest star centre of our planetary system solar system 3/55 Sun diameter 1 392 000 km 109 x larger than Earth weight 2 x 10

More information

Daily Motions. Daily Motions. Solar and Sidereal Days. Annual Motions of the Sun. Coordinate system on Earth. Annual Motion of the Stars.

Daily Motions. Daily Motions. Solar and Sidereal Days. Annual Motions of the Sun. Coordinate system on Earth. Annual Motion of the Stars. Sun: rises in the east sets in the west travels on an arc across the sky 24 hours Daily Motions Solar Day = 24 hours Stars: stars travel on arcs in the sky moving from east to west. some stars rise and

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

Principles of Energy Conversion Part 11A. Solar Energy Insolation

Principles of Energy Conversion Part 11A. Solar Energy Insolation Principles of Energy Conversion Part 11A. Solar Energy Insolation April 19, 2018 19 Solar Radiation 3 19.1 Overview and Background.............................. 3 19.2 Solar Energy......................................

More information

Exercise 6. Solar Panel Orientation EXERCISE OBJECTIVE DISCUSSION OUTLINE. Introduction to the importance of solar panel orientation DISCUSSION

Exercise 6. Solar Panel Orientation EXERCISE OBJECTIVE DISCUSSION OUTLINE. Introduction to the importance of solar panel orientation DISCUSSION Exercise 6 Solar Panel Orientation EXERCISE OBJECTIVE When you have completed this exercise, you will understand how the solar illumination at any location on Earth varies over the course of a year. You

More information

Seasonal Path of the Sun and Latitude

Seasonal Path of the Sun and Latitude Seasonal Path of the Sun and Latitude Overview This lesson is a modification of what Dave Hess and I, Stan Skotnicki, use in our Earth Science classes at Cheektowaga Central High School. It is an extension

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

The optimal tilt angle of a solar collector

The optimal tilt angle of a solar collector Available online at www.sciencedirect.com Energy Procedia 00 (01) 000 000 www.elsevier.com/locate/procedia International Conference on Sustainable Energy Engineering and Application [ICSEEA 01] The optimal

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

LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME. a. understand the basic concepts needed for any astronomical coordinate system.

LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME. a. understand the basic concepts needed for any astronomical coordinate system. UNIT 2 UNIT 2 LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME Goals After mastery of this unit, you should: a. understand the basic concepts needed for any astronomical coordinate system. b. understand

More information

ZW2000 and Your Vertical Sundial Carl Sabanski

ZW2000 and Your Vertical Sundial Carl Sabanski 1 The Sundial Primer created by At this point I assume that you have downloaded and set up ZW2000 on your computer and have also read the overview document. If not please read Getting Started with ZW2000

More information

Theoretical Analysis of Solar Thermal Collector with a Flat Plate Bottom Booster Reflector

Theoretical Analysis of Solar Thermal Collector with a Flat Plate Bottom Booster Reflector Energy Science and Technology Vol. 2, No. 2, 2011, pp. 26-34 DOI:10.3968/j.est.1923847920110202.107 ISSN 1923-8460[PRINT] ISSN 1923-8479[ONLINE] www.cscanada.net www.cscanada.org Theoretical Analysis of

More information

These notes may contain copyrighted material! They are for your own use only during this course.

These notes may contain copyrighted material! They are for your own use only during this course. Licensed for Personal Use Only DO NOT DISTRIBUTE These notes may contain copyrighted material! They are for your own use only during this course. Distributing them in anyway will be considered a breach

More information

Chapter 2 Available Solar Radiation

Chapter 2 Available Solar Radiation Chapter 2 Available Solar Radiation DEFINITIONS Figure shows the primary radiation fluxes on a surface at or near the ground that are important in connection with solar thermal processes. DEFINITIONS It

More information

THE SOLAR RESOURCE: PART I MINES ParisTech Center Observation, Impacts, Energy (Tel.: +33 (0) )

THE SOLAR RESOURCE: PART I MINES ParisTech Center Observation, Impacts, Energy (Tel.: +33 (0) ) MASTER REST Solar Resource Part I THE SOLAR RESOURCE: PART I MINES ParisTech Center Observation, Impacts, Energy philippe.blanc@mines-paristech.fr (Tel.: +33 (0)4 93 95 74 04) MASTER REST Solar Resource

More information

March 21. Observer located at 42 N. Horizon

March 21. Observer located at 42 N. Horizon March 21 Sun Observer located at 42 N Horizon 48 June 21 March 21 A 48 90 S 23.5 S 0 23.5 N 42 N 90 N Equator (June 21) C (March 21) B A 71.5 48 Horizon 24.5 Observer Sun 40 Observer Sun 22 Observer Sun

More information

(1) Over the course of a day, the sun angle at any particular place varies. Why?

(1) Over the course of a day, the sun angle at any particular place varies. Why? (1) Over the course of a day, the sun angle at any particular place varies. Why? (Note: Although all responses below are true statements, only one of them actually explains the observation!) (A)The sun

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

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

Earth Science Seasons Test Name Per Date

Earth Science Seasons Test Name Per Date Name Per Date Page 1 1. The diagram below represents four positions of the Earth as it revolves around the Sun. 5. Base your answer to the following question on the diagram below, which shows the apparent

More information

AVAILABLE SOLAR RADIATION THEORETICAL BACKGROUND

AVAILABLE SOLAR RADIATION THEORETICAL BACKGROUND AVAILABLE SOLAR RADIATION THEORETICAL BACKGROUND DETERMINING THE OPTIMUM ORIENTATION OF A GREENHOUSE ON THE BASIS OF THE TOTAL SOLAR RADIATION AVAILABILITY THE SOLAR CONSTANT At a distance of one astronomical

More information

Chapter 1: Discovering the Night Sky. The sky is divided into 88 unequal areas that we call constellations.

Chapter 1: Discovering the Night Sky. The sky is divided into 88 unequal areas that we call constellations. Chapter 1: Discovering the Night Sky Constellations: Recognizable patterns of the brighter stars that have been derived from ancient legends. Different cultures have associated the patterns with their

More information

Student Exploration: Seasons in 3D

Student Exploration: Seasons in 3D Name: Date: Student Exploration: Seasons in 3D Vocabulary: axis, equinox, latitude, Northern Hemisphere, revolve, rotate, solar energy, solar intensity, Southern Hemisphere, summer solstice, winter solstice

More information

The University of British Columbia Geography 200 Sample Exam Questions. Here are some reminders about GEOB 200 Fianl exam:

The University of British Columbia Geography 200 Sample Exam Questions. Here are some reminders about GEOB 200 Fianl exam: 1 The University of British Columbia Geography 200 Sample Exam Questions Here are some reminders about GEOB 200 Fianl exam: Date: Dec 06, Time: 12:00 pm Room: GEOG 100 Examination Period: 2 Hours Topics:

More information

In the News: &id= &m=

In the News:  &id= &m= In the News: http://www.npr.org/templates/player/mediaplayer.html?action=1&t=1&islist=false &id=112755481&m=112805055 1 In the News: http://www.economist.com/scien cetechnology/displaystory.cfm?st ory_id=14302001

More information

Sunset Phenomena. Roger Bailey North American Sundial Society Hartford Oct 1999

Sunset Phenomena. Roger Bailey North American Sundial Society Hartford Oct 1999 Sunset Phenomena Roger Bailey North American Sundial Society Hartford Oct 1999 Sunset Phenomena Sunset Phenomena Simple spherical trigonometry can be used to determine for any location and day of the year

More information

1. The frequency of an electromagnetic wave is proportional to its wavelength. a. directly *b. inversely

1. The frequency of an electromagnetic wave is proportional to its wavelength. a. directly *b. inversely CHAPTER 3 SOLAR AND TERRESTRIAL RADIATION MULTIPLE CHOICE QUESTIONS 1. The frequency of an electromagnetic wave is proportional to its wavelength. a. directly *b. inversely 2. is the distance between successive

More information

5 - Seasons. Figure 1 shows two pictures of the Sun taken six months apart with the same camera, at the same time of the day, from the same location.

5 - Seasons. Figure 1 shows two pictures of the Sun taken six months apart with the same camera, at the same time of the day, from the same location. ASTR 110L 5 - Seasons Purpose: To plot the distance of the Earth from the Sun over one year and to use the celestial sphere to understand the cause of the seasons. What do you think? Write answers to questions

More information

Solar Time, Angles, and Irradiance Calculator: User Manual

Solar Time, Angles, and Irradiance Calculator: User Manual Solar Time, Angles, and Irradiance Calculator: User Manual Circular 674 Thomas Jenkins and Gabriel Bolivar-Mendoza 1 Cooperative Extension Service Engineering New Mexico Resource Network College of Agricultural,

More information

1/71 AES-LECTURE 1. Solar energy. solar radiation definitions incident solar energy

1/71 AES-LECTURE 1. Solar energy. solar radiation definitions incident solar energy 1/71 AES-LECTURE 1 Solar energy solar radiation definitions incident solar energy Sun 2/71 closest star centre of our planetary system solar system Sun 3/71 diameter 1 392 000 km 109 x larger than Earth

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

June 15, 2006 July 19, 2009 A south facing vertical declining sundial by a barn in, Silver City, NM Using a trigon and empirical methods, and a gnomon whose sub-style was vertical True N Magnetic N Silver

More information

Astron 104 Laboratory #2 The Celestial Sphere

Astron 104 Laboratory #2 The Celestial Sphere Name: Date: Section: Astron 104 Laboratory #2 The Celestial Sphere Basic Setup Once the celestial sphere is properly setup, it will serve as an exact model of the heavens relative to your location on Earth.

More information

Computer Activity #3 SUNRISE AND SUNSET: THE SEASONS

Computer Activity #3 SUNRISE AND SUNSET: THE SEASONS NAME(S)!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ASTRONOMY 25 Computer Activity #3 SUNRISE AND SUNSET: THE SEASONS SECTION DAY/TIME S. V. LLOYD Overview The seasonal variation in temperature is due to two changes

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

Outline. The Path of the Sun. Emissivity and Absorptivity. Average Radiation Properties II. Average Radiation Properties

Outline. The Path of the Sun. Emissivity and Absorptivity. Average Radiation Properties II. Average Radiation Properties The Path of the Sun Larry Caretto Mechanical Engineering 83 Alternative Energy Engineering II March, 2 Outline Review radiation properties for solar collectors Orientation of earth and sun Earth-based

More information

CHAPTER 3. The sun and the seasons. Locating the position of the sun

CHAPTER 3. The sun and the seasons. Locating the position of the sun zenith 90 observer summer solstice 75 altitude angles equinox 52 winter solstice 29 Figure 3.1: Solar noon altitude angles for Melbourne SOUTH winter midday shadow WEST summer midday shadow summer EAST

More information

DIRECTING SUN PANELS

DIRECTING SUN PANELS sunpan, April 9, 2015 1 DIRECTING SUN PANELS GERRIT DRAISMA 1. Introduction The quantity of sun light captured by sun panels depends on intensity and direction of solar radiation, area of the panels, and

More information

Appearance of the Sky Orientation Motion of sky Seasons Precession (?)

Appearance of the Sky Orientation Motion of sky Seasons Precession (?) Today Appearance of the Sky Orientation Motion of sky Seasons Precession (?) The Celestial Sphere Stars at different distances all appear to lie on the celestial sphere. The ecliptic is the Sun s apparent

More information

The Earth-Moon-Sun System

The Earth-Moon-Sun System chapter 7 The Earth-Moon-Sun System section 2 Time and Seasons What You ll Learn how to calculate time and date in different time zones how to distinguish rotation and revolution what causes seasons Before

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

Motions of the Sun Model Exploration

Motions of the Sun Model Exploration Name Date Bell Motions of the Sun Model Exploration 1. Go to the University of Nebraska-Lincoln Motions of the Sun Simulator: http://astro.unl.edu/naap/motion3/animations/sunmotions.swf 2. This is what

More information

Interaction between building services and environment.

Interaction between building services and environment. Introduction Man s settlement on the earth s surface has become sufficiently extensive during the last hundred years to give rise to considerable changes in the natural environment. It seems that nature

More information

Solutions Manual to Exercises for Weather & Climate, 8th ed. Appendix A Dimensions and Units 60 Appendix B Earth Measures 62 Appendix C GeoClock 63

Solutions Manual to Exercises for Weather & Climate, 8th ed. Appendix A Dimensions and Units 60 Appendix B Earth Measures 62 Appendix C GeoClock 63 Solutions Manual to Exercises for Weather & Climate, 8th ed. 1 Vertical Structure of the Atmosphere 1 2 Earth Sun Geometry 4 3 The Surface Energy Budget 8 4 The Global Energy Budget 10 5 Atmospheric Moisture

More information

Oberth: Energy vs. Momentum

Oberth: Energy vs. Momentum 1 2 The Oberth Effect 3 Oberth: Energy vs. Momentum 4 The Celestial Sphere From our perspective on Earth the stars appear embedded on a distant 2-dimensional surface the Celestial Sphere. 5 The Celestial

More information

Prentice Hall EARTH SCIENCE. Tarbuck Lutgens

Prentice Hall EARTH SCIENCE. Tarbuck Lutgens Prentice Hall EARTH SCIENCE Tarbuck Lutgens Chapter 17 The Atmosphere: Structure and Temperature 17.1 Atmosphere Characteristics Composition of the Atmosphere Weather is constantly changing, and it refers

More information

Student Exploration: Seasons: Earth, Moon, and Sun

Student Exploration: Seasons: Earth, Moon, and Sun Name: Date: Student Exploration: Seasons: Earth, Moon, and Sun Vocabulary: altitude, axis, azimuth, equinox, horizon, latitude, revolution, rotation, solstice Prior Knowledge Questions (Do these BEFORE

More information

3. The Sun s Position

3. The Sun s Position 3. The Sun s Position In order to understand how to collect energy from the sun, one must first be able to predict the location of the sun relative to the collection device. In this chapter we develop

More information

Astronomy 101: 9/18/2008

Astronomy 101: 9/18/2008 Astronomy 101: 9/18/2008 Announcements Pick up a golf ball at the front of the class or get one from Alex; you will need it for an in-class activity today. You will also need the question sheet from Alex.

More information

Numerical Model for the Orbit of the Earth

Numerical Model for the Orbit of the Earth Universal Journal of Geoscience 5(2): 33-39, 2017 DOI: 10.13189/ujg.2017.050203 http://www.hrpub.org Numerical Model for the Orbit of the Earth S. Karna 1,*, A. K. Mallik 2 1 Physics Department, Tri-Chandra

More information

ESTIMATION OF HOURLY GLOBAL SOLAR RADIATION INCIDENT ON INCLINED SURFACES IN IRAQ AT DIFFERENT SKY CONDITION

ESTIMATION OF HOURLY GLOBAL SOLAR RADIATION INCIDENT ON INCLINED SURFACES IN IRAQ AT DIFFERENT SKY CONDITION IMPACT: International Journal of Research in Applied, Natural and Social Sciences (IMPACT: IJRANSS) ISSN(P): 2347-4580; ISSN(E): 2321-8851 Vol. 5, Issue 2, Feb 2017, 13-28 Impact Journals ESTIMATION OF

More information

01) The Sun s rays strike the surface of the Earth at 90 degrees at the on December 22.

01) The Sun s rays strike the surface of the Earth at 90 degrees at the on December 22. Package Title: Testbank Course Title: Introducing Physical Geography 6e Chapter Number: 01 Question Type: Multiple Choice 01) The Sun s rays strike the surface of the Earth at 90 degrees at the on December

More information

Reminder: Seasonal Motion

Reminder: Seasonal Motion Seasonal Motion Reminder: Seasonal Motion If you observe the sky at the same time, say midnight, but on a different date, you find that the celestial sphere has turned: different constellations are high

More information

Which graph best shows the relationship between intensity of insolation and position on the Earth's surface? A) B) C) D)

Which graph best shows the relationship between intensity of insolation and position on the Earth's surface? A) B) C) D) 1. The hottest climates on Earth are located near the Equator because this region A) is usually closest to the Sun B) reflects the greatest amount of insolation C) receives the most hours of daylight D)

More information

Modern Navigation. Thomas Herring

Modern Navigation. Thomas Herring 12.215 Modern Navigation Thomas Herring Review of Monday s Class Spherical Trigonometry Review plane trigonometry Concepts in Spherical Trigonometry Distance measures Azimuths and bearings Basic formulas:

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

DEVELOPING A ROUTINE TO POLAR ALIGN A TELESCOPE

DEVELOPING A ROUTINE TO POLAR ALIGN A TELESCOPE DEVELOPING A ROUTINE TO POLAR ALIGN A TELESCOPE Assumptions: It is assumed that the reader is familiar with a monograph by Toshimi Taki, (http://www.asahi-net.or.jp/~zs3t-tk/), especially Section 4 wherein

More information

Study on the Optimal Tilt Angle of Solar Collector According to Different Radiation Types

Study on the Optimal Tilt Angle of Solar Collector According to Different Radiation Types nternational Journal of Applied Science and Engineering 8. 6, : 151-161 Study on the Optimal Tilt Angle of Solar Collector According to Different Radiation Types Tian Pau Chang * Department of Computer

More information

Geometry of Earth Sun System

Geometry of Earth Sun System 12S56 Geometry of Earth Sun System Figure below shows the basic geometry Northern Hemisphere Winter ω equator Earth s Orbit Ecliptic ω ω SUN equator Northern Hemisphere Spring Northern Hemisphere Fall

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

Seasons ASTR 101 2/12/2018

Seasons ASTR 101 2/12/2018 Seasons ASTR 101 2/12/2018 1 What causes the seasons? Perihelion: closest to Sun around January 4 th Northern Summer Southern Winter 147 million km 152 million km Aphelion (farthest to Sun) around July

More information