【问题标题】:Sunset in C languageC语言的日落
【发布时间】:2018-10-04 15:12:15
【问题描述】:

我想在 C 中计算特定定位(纬度、经度)的日落。

我模仿的是:http://edwilliams.org/sunrise_sunset_algorithm.htm

对于给定的模型,我尝试计算日出 - 这个值很好。 我仍然得到不正确的日落值:-11:-22。

这里有一些代码:

#include <stdio.h>
#include <math.h>
#define PI 3.1415926
#define ZENITH -.83

float calculateSunset(int year,int month,int day,float lat, float lng,int localOffset) {

//1. first calculate the day of the year
float N1 = floor(275 * month / 9);
float N2 = floor((month + 9) / 12);
float N3 = (1 + floor((year - 4 * floor(year / 4) + 2) / 3));
float N = N1 - (N2 * N3) + day - 30;

//2. convert the longitude to hour value and calculate an approximate time  
float lngHour = lng / 15;
float t = N + ((18 - lngHour) / 24);   //if setting time is desired:

//3. calculate the Sun's mean anomaly   
float M = (0.9856 * t) - 3.289;

//4. calculate the Sun's true longitude
float L = fmod(M + (1.916 * sin((PI/180)*M)) + (0.020 * sin(2 *(PI/180) * M)) + 282.634,360.0);

//5a. calculate the Sun's right ascension      
float RA = fmod(180/PI*atan(0.91764 * tan((PI/180)*L)),360.0);

//5b. right ascension value needs to be in the same quadrant as L   
float Lquadrant  = floor( L/90) * 90;
float RAquadrant = floor(RA/90) * 90;
RA = RA + (Lquadrant - RAquadrant);

//5c. right ascension value needs to be converted into hours   
RA = RA / 15;

//6. calculate the Sun's declination
float sinDec = 0.39782 * sin((PI/180)*L);
float cosDec = cos(asin(sinDec));

//7a. calculate the Sun's local hour angle
float cosH = (sin((PI/180)*ZENITH) - (sinDec * sin((PI/180)*lat))) / (cosDec * cos((PI/180)*lat));

if (cosH >  1) {
    printf("the sun never rises on this location (on the specified date)");
    return 0;
}

if (cosH < -1) {
    printf("the sun never sets on this location (on the specified date)");
    return 0;
}

//7b. finish calculating H and convert into hours
float H = acos(cosH); //   if setting time is desired:      
H = H / 15;

//8. calculate local mean time of rising/setting      
float T = H + RA - (0.06571 * t) - 6.622;

//9. adjust back to UTC
float UT = fmod(T - lngHour,24.0);

//10. convert UT value to local time zone of latitude/longitude
return UT + localOffset;

}

void printSunset() {

    float localT = calculateSunset(2018,10,4,51.8446,19.2094,2);
    double hours;
    float minutes = modf(localT,&hours)*60;
    printf("Sunset: ");
    printf("%.0f:%.0f",hours,minutes);   
    printf("\n"); 
}


int main()
{
  printSunset();
  return 0;
}

谁能帮助我?我做错了什么?

【问题讨论】:

  • 你做错了什么?您没有阅读并遵循How do I ask a good question? 页面上的说明。 “这是一些代码……我做错了什么?”期望人们做很多工作来弄清楚发生了什么。您应该提供更多信息,让人们更容易为您提供帮助。
  • 另外,请密切注意 整数除法 发生的位置。
  • 在处理浮点值时总是 (*) 首选 double。 (*) 是的,永远!

标签: c time calculation astronomy


【解决方案1】:

我认为您的主要问题是您希望 fmod 返回一个肯定的结果 - 这是不正确的,fmod 保留符号,即如果您使用负值的 fmod,您将得到一个(正确的)否定结果,如果您将其用于正值,(也是正确的)结果将是正值。如果您需要一个肯定的结果,例如,如果结果是否定的,您可以简单地添加除数,即

float a = fmod(T, 360.0);
if(a < 0) { a = a + 360.0; }

【讨论】:

    猜你喜欢
    • 2018-05-08
    • 2015-08-19
    • 1970-01-01
    • 2019-06-20
    • 2022-11-15
    • 2011-05-05
    • 2020-07-30
    • 1970-01-01
    • 2010-12-03
    相关资源
    最近更新 更多