| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2401 人关注过本帖
标题:求助:用经度、纬度、年月日计算日出日落的纯C++程序
只看楼主 加入收藏
mandyzhlh
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2009-9-25
结帖率:0
收藏
已结贴  问题点数:20 回复次数:6 
求助:用经度、纬度、年月日计算日出日落的纯C++程序
向高人请教如何用经度、纬度、年月日计算日出日落的纯C++程序
搜索更多相关主题的帖子: 日出 纬度 经度 年月日 
2009-09-25 16:51
pangding
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:北京
等 级:贵宾
威 望:94
帖 子:6784
专家分:16751
注 册:2008-12-20
收藏
得分:6 
回复 楼主 mandyzhlh
呵呵,也不给点公式,我们可不都是学天文的~
2009-09-26 09:38
mandy01
Rank: 1
等 级:新手上路
帖 子:1
专家分:7
注 册:2009-9-28
收藏
得分:6 

这是计算日出日落的公式
已知:日出日落时太阳的位置h=-0.833°,要计算地的地理位置,经度Long,纬度G1at,时区zone,UTo为上次计算的日出日落时间,第一次计算时UTo=180°。

(1)先计算出从格林威治时间公元2000年1月1日到计算日天数days;

(2)计算从格林威治时间公元2000年1月1日到计算日的世纪数t,

        t=(days+UTo/360)/36525;

(3)计算太阳的平黄径   L=280.460+36000.770×t;

(4)计算太阳的平近点角

G=357.528+35999.050×t

(5)计算太阳的黄道经度

λ=L+1.915×sinG+0.020xsin(2G);

(6)计算地球的倾角  ε=23.4393-0.0130×t;

(7)计算太阳的偏差  δ=arcsin(sinε×sinλ);

(8)计算格林威治时间的太阳时间角GHA:

    GHA=UTo-180-1.915×sinG-0.020×sin(2G) +2.466×sin(2λ)-0.053×sin(4λ)

(9)计算修正值e:

    e=arcos{[ sinh-sin(Glat)sin(δ)]/cos(Glat)cos(δ)}

(10)计算新的日出日落时间

UT=UTo-(GHA+Long±e);

其中“+”表示计算日出时间,“-”表示计算日落时间;

(11)比较UTo和UT之差的绝对值,如果大于0.1°即0.007小时,把UT作为新的日出日落时间值,重新从第(2)步开始进行迭代计算,如果UTo和UT之差的绝对值小于0.007小时,则UT即为所求的格林威治日出日落时间;

(12)上面的计算以度为单位,即180°=12小时,因此需要转化为以小时表示的时间,再加上所在的时区数Zone,即要计算地的日出日落时间为

T=UT/15+Zone

上面的计算日出日落时间方法适用于小于北纬60°和南纬60°之间的区域,如果计算位置为西半球时,经度Long为负数
2009-09-28 21:08
forclwy
Rank: 4
等 级:业余侠客
帖 子:167
专家分:255
注 册:2008-10-21
收藏
得分:6 
真复杂
2009-09-29 09:50
narcissushtl
Rank: 2
等 级:论坛游民
帖 子:6
专家分:12
注 册:2009-10-3
收藏
得分:0 

#define PI 3.1415926
#include<math.h>
#include<iostream>
using namespace std;
 
int days_of_month_1[]={31,28,31,30,31,30,31,31,30,31,30,31};
int days_of_month_2[]={31,29,31,30,31,30,31,31,30,31,30,31};
long double h=-0.833;
//定义全局变量
 
void input_date(int c[]){
    int i;
    cout<<"Enter the date (form: 2009 03 10):"<<endl;
    for(i=0;i<3;i++){
        cin>>c[i];
    }
}
//输入日期
 
void input_glat(int c[]){
    int i;
    cout<<"Enter the degree of latitude(range: 0°- 60°,form: 40 40 40 (means 40°40′40″)):"<<endl;
    for(i=0;i<3;i++){
        cin>>c[i];
    }
}
//输入纬度
 
void input_glong(int c[]){
    int i;
    cout<<"Enter the degree of longitude(west is negativ,form: 40 40 40 (means 40°40′40″)):"<<endl;
    for(i=0;i<3;i++){
        cin>>c[i];
    }
}
//输入经度
 
int leap_year(int year){
    if(((year%400==0) || (year%100!=0) && (year%4==0))) return 1;
    else return 0;
}
//判断是否为闰年:若为闰年,返回1;若非闰年,返回0
 
int days(int year, int month, int date){
    int i,a=0;
    for(i=2000;i<year;i++){
        if(leap_year(i)) a=a+366;
        else a=a+365;
    }
    if(leap_year(year)){
        for(i=0;i<month-1;i++){
            a=a+days_of_month_2[i];
        }
    }
    else {
        for(i=0;i<month-1;i++){
            a=a+days_of_month_1[i];
        }
    }
    a=a+date;
    return a;
}
//求从格林威治时间公元2000年1月1日到计算日天数days
 
long double t_century(int days, long double UTo){
    return ((long double)days+UTo/360)/36525;
}
//求格林威治时间公元2000年1月1日到计算日的世纪数t
 
long double L_sun(long double t_century){
    return (280.460+36000.770*t_century);
}
//求太阳的平黄径
 
long double G_sun(long double t_century){
    return (357.528+35999.050*t_century);
}
//求太阳的平近点角
 
long double ecliptic_longitude(long double L_sun,long double G_sun){
    return (L_sun+1.915*sin(G_sun*PI/180)+0.02*sin(2*G_sun*PI/180));
}
//求黄道经度
 
long double earth_tilt(long double t_century){
    return (23.4393-0.0130*t_century);
}
//求地球倾角
 
long double sun_deviation(long double earth_tilt, long double ecliptic_longitude){
    return (180/PI*asin(sin(PI/180*earth_tilt)*sin(PI/180*ecliptic_longitude)));
}
//求太阳偏差
 
long double GHA(long double UTo, long double G_sun, long double ecliptic_longitude){
    return (UTo-180-1.915*sin(G_sun*PI/180)-0.02*sin(2*G_sun*PI/180)+2.466*sin(2*ecliptic_longitude*PI/180)-0.053*sin(4*ecliptic_longitude*PI/180));
}
//求格林威治时间的太阳时间角GHA
 
long double e(long double h, long double glat, long double sun_deviation){
    return 180/PI*acos((sin(h*PI/180)-sin(glat*PI/180)*sin(sun_deviation*PI/180))/(cos(glat*PI/180)*cos(sun_deviation*PI/180)));
}
//求修正值e
 
long double UT_rise(long double UTo, long double GHA, long double glong, long double e){
    return (UTo-(GHA+glong+e));
}
//求日出时间
 
long double UT_set(long double UTo, long double GHA, long double glong, long double e){
    return (UTo-(GHA+glong-e));
}
//求日落时间
 
long double result_rise(long double UT, long double UTo, long double glong, long double glat, int year, int month, int date){
    long double d;
    if(UT>=UTo) d=UT-UTo;
    else d=UTo-UT;
    if(d>=0.1) {
        UTo=UT;
        UT=UT_rise(UTo,GHA(UTo,G_sun(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))),glong,e(h,glat,sun_deviation(earth_tilt(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo))))));
        result_rise(UT,UTo,glong,glat,year,month,date);
    }
    return UT;
}
//判断并返回结果(日出)
 
long double result_set(long double UT, long double UTo, long double glong, long double glat, int year, int month, int date){
    long double d;
    if(UT>=UTo) d=UT-UTo;
    else d=UTo-UT;
    if(d>=0.1){
        UTo=UT;
        UT=UT_set(UTo,GHA(UTo,G_sun(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))),glong,e(h,glat,sun_deviation(earth_tilt(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo))))));
        result_set(UT,UTo,glong,glat,year,month,date);
    }
    return UT;
}
//判断并返回结果(日落)
 
int Zone(long double glong){
    if(glong>=0) return (int)((int)(glong/15.0)+1);
    else return (int)((int)(glong/15.0)-1);
}
//求时区
 
void output(long double rise, long double set, long double glong){
    if((int)(60*(rise/15+Zone(glong)-(int)(rise/15+Zone(glong))))<10)
        cout<<"The time at which the sun rises is "<<(int)(rise/15+Zone(glong))<<":0"<<(int)(60*(rise/15+Zone(glong)-(int)(rise/15+Zone(glong))))<<" .\n";
    else cout<<"The time at which the sun rises is "<<(int)(rise/15+Zone(glong))<<":"<<(int)(60*(rise/15+Zone(glong)-(int)(rise/15+Zone(glong))))<<" .\n";
    if((int)(60*(set/15+Zone(glong)-(int)(set/15+Zone(glong))))<10)
        cout<<"The time at which the sun sets is "<<(int)(set/15+Zone(glong))<<": "<<(int)(60*(set/15+Zone(glong)-(int)(set/15+Zone(glong))))<<" .\n";
    else cout<<"The time at which the sun sets is "<<(int)(set/15+Zone(glong))<<":"<<(int)(60*(set/15+Zone(glong)-(int)(set/15+Zone(glong))))<<" .\n";
}
//打印结果
         
int main(){
    long double UTo=180.0;
    int year,month,date;
    long double glat,glong;
    int c[3];
    input_date(c);
    year=c[0];
    month=c[1];
    date=c[2];
    input_glat(c);
    glat=c[0]+c[1]/60+c[2]/3600;
    input_glong(c);
    glong=c[0]+c[1]/60+c[2]/3600;
    long double rise,set;
    rise=result_rise(UT_rise(UTo,GHA(UTo,G_sun(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))),glong,e(h,glat,sun_deviation(earth_tilt(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))))),UTo,glong,glat,year,month,date);
    set=result_set(UT_set(UTo,GHA(UTo,G_sun(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))),glong,e(h,glat,sun_deviation(earth_tilt(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))))),UTo,glong,glat,year,month,date);
    output(rise,set,glong);
    system("pause");
    return 0;
}
2009-10-03 20:17
dr0526
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2009-7-20
收藏
得分:0 
好厉害
2009-10-03 22:41
a632034079
Rank: 2
等 级:论坛游民
帖 子:115
专家分:34
注 册:2009-10-3
收藏
得分:0 
以下是引用narcissushtl在2009-10-3 20:17:04的发言:

 
#define PI 3.1415926
#include<math.h>
#include<iostream>
using namespace std;
 
int days_of_month_1[]={31,28,31,30,31,30,31,31,30,31,30,31};
int days_of_month_2[]={31,29,31,30,31,30,31,31,30,31 ...
大哥你好强大 啊
能交个朋友吗?
2009-10-04 21:03
快速回复:求助:用经度、纬度、年月日计算日出日落的纯C++程序
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014437 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved