How to resolve the algorithm Horizontal sundial calculations step by step in the Euphoria programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Horizontal sundial calculations step by step in the Euphoria programming language

Table of Contents

Problem Statement

Create a program that calculates the hour, sun hour angle, dial hour line angle from 6am to 6pm for an operator entered location.

For example, the user is prompted for a location and inputs the latitude and longitude 4°57′S 150°30′W (4.95°S 150.5°W of Jules Verne's Lincoln Island, aka Ernest Legouve Reef), with a legal meridian of 150°W. (Note: the "meridian" is approximately the same concept as the "longitude" - the distinction is that the meridian is used to determine when it is "noon" for official purposes. This will typically be slightly different from when the sun appears at its highest location, because of the structure of time zones. For most, but not all, time zones (hour wide zones with hour zero centred on Greenwich), the legal meridian will be an even multiple of 15 degrees.) Wikipedia: A sundial is a device that measures time by the position of the Sun. In common designs such as the horizontal sundial, the sun casts a shadow from its style (also called its Gnomon, a thin rod or a sharp, straight edge) onto a flat surface marked with lines indicating the hours of the day (also called the dial face or dial plate). As the sun moves across the sky, the shadow-edge progressively aligns with different hour-lines on the plate. Such designs rely on the style being aligned with the axis of the Earth's rotation. Hence, if such a sundial is to tell the correct time, the style must point towards true north (not the north or south magnetic pole) and the style's angle with horizontal must equal the sundial's geographical latitude.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Horizontal sundial calculations step by step in the Euphoria programming language

Source code in the euphoria programming language

include std/console.e
include std/mathcons.e

atom lat = prompt_number("Enter Latitude: ",{})
atom lng = prompt_number("Enter Longitude: ",{})
atom lm = prompt_number("Enter Legal Meridian: ",{})
puts(1,'\n')

atom ha, hla

function D2R(atom degrees)
	return degrees * PI / 180
end function

function R2D(atom radians)
	return radians * 180 / PI
end function

function atan2(atom y, atom x)
	return 2*arctan((sqrt(power(x,2)+power(y,2)) - x)/y)
end function

atom s_lat = sin(D2R(lat))

puts(1,"Hour,  Sun Hour Angle, Dial Hour Line Angle\n")

for hour = -6 to 6 do
	ha = hour * 15 - lng + lm
	atom s = sin(D2R(ha))
	atom c = cos(D2R(ha))
	hla = R2D(atan2(s_lat*s,c))
	printf(1,"%3d\t\t\t%7.3f\t\t\t%7.3f\n",{hour+12,ha,hla})
end for

if getc(0) then end if

  

You may also check:How to resolve the algorithm Lucky and even lucky numbers step by step in the Swift programming language
You may also check:How to resolve the algorithm Pi step by step in the BBC BASIC programming language
You may also check:How to resolve the algorithm Pangram checker step by step in the Smalltalk programming language
You may also check:How to resolve the algorithm Arithmetic/Integer step by step in the Little programming language
You may also check:How to resolve the algorithm Dutch national flag problem step by step in the Perl programming language