![日出日落時(shí)間計(jì)算程序(C語(yǔ)言)_第1頁(yè)](http://file3.renrendoc.com/fileroot_temp3/2021-12/17/9673ea14-5b5f-48cc-a12a-7b951c8f60a6/9673ea14-5b5f-48cc-a12a-7b951c8f60a61.gif)
![日出日落時(shí)間計(jì)算程序(C語(yǔ)言)_第2頁(yè)](http://file3.renrendoc.com/fileroot_temp3/2021-12/17/9673ea14-5b5f-48cc-a12a-7b951c8f60a6/9673ea14-5b5f-48cc-a12a-7b951c8f60a62.gif)
![日出日落時(shí)間計(jì)算程序(C語(yǔ)言)_第3頁(yè)](http://file3.renrendoc.com/fileroot_temp3/2021-12/17/9673ea14-5b5f-48cc-a12a-7b951c8f60a6/9673ea14-5b5f-48cc-a12a-7b951c8f60a63.gif)
![日出日落時(shí)間計(jì)算程序(C語(yǔ)言)_第4頁(yè)](http://file3.renrendoc.com/fileroot_temp3/2021-12/17/9673ea14-5b5f-48cc-a12a-7b951c8f60a6/9673ea14-5b5f-48cc-a12a-7b951c8f60a64.gif)
![日出日落時(shí)間計(jì)算程序(C語(yǔ)言)_第5頁(yè)](http://file3.renrendoc.com/fileroot_temp3/2021-12/17/9673ea14-5b5f-48cc-a12a-7b951c8f60a6/9673ea14-5b5f-48cc-a12a-7b951c8f60a65.gif)
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、/日出日落時(shí)間計(jì)算C語(yǔ)言程序#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<<"Ente
2、r the date (form: 2009 03 10):"<<endl; for(i=0;i<3;i+) cin>>ci; /輸入日期 void input_glat(int c) int i; cout<<"Enter the degree of latitude(range: 0°- 60°,form: 40 40 40 (means 40°4040):"<<endl; for(i=0;i<3;i+) cin>>ci; /輸入緯度 void input_g
3、long(int c) int i; cout<<"Enter the degree of longitude(west is negativ,form: 40 40 40 (means 40°4040):"<<endl; for(i=0;i<3;i+) cin>>ci; /輸入經(jīng)度 int leap_year(int year) if(year%400=0) | (year%100!=0) && (year%4=0) return 1; else return 0; /判斷是否為閏年:若為閏年,返回1;若
4、非閏年,返回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_2i; else for(i=0;i<month-1;i+) a=a+days_of_month_1i; a=a+date; return a; /求從格林威治時(shí)間公元2000年1月1日到計(jì)算日天數(shù)days long dou
5、ble t_century(int days, long double UTo) return (long double)days+UTo/360)/36525; /求格林威治時(shí)間公元2000年1月1日到計(jì)算日的世紀(jì)數(shù)t long double L_sun(long double t_century) return (280.460+36000.770*t_century); /求太陽(yáng)的平黃徑 long double G_sun(long double t_century) return (357.528+35999.050*t_century); /求太陽(yáng)的平近點(diǎn)角 long double
6、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); /求黃道經(jīng)度 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) ret
7、urn (180/PI*asin(sin(PI/180*earth_tilt)*sin(PI/180*ecliptic_longitude); /求太陽(yáng)偏差 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
8、/180); /求格林威治時(shí)間的太陽(yáng)時(shí)間角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,
9、long double e) return (UTo-(GHA+glong+e); /求日出時(shí)間 long double UT_set(long double UTo, long double GHA, long double glong, long double e) return (UTo-(GHA+glong-e); /求日落時(shí)間 long double result_rise(long double UT, long double UTo, long double glong, long double glat, int year, int month, int date) long
10、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(ye
11、ar,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; /判斷并返回結(jié)果(日出) long double result_set(long double UT, long double UTo, long double glong, long double glat, int year,
12、 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(ea
13、rth_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; /判斷并返回結(jié)果(日落) int Zone(long double glong) if(glong>=0) return (int)(int)(glong/15.0)+1);
14、 else return (int)(int)(glong/15.0)-1); /求時(shí)區(qū) 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"<<(i
15、nt)(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
16、+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 &
17、quot;<<(int)(set/15+Zone(glong)<<":"<<(int)(60*(set/15+Zone(glong)-(int)(set/15+Zone(glong)<<" .n" /打印結(jié)果 int main() long double UTo=180.0; int year,month,date; long double glat,glong; int c3; input_date(c); year=c0; month=c1; date=c2; input_glat(c); glat=c
18、0+c1/60+c2/3600; input_glong(c); glong=c0+c1/60+c2/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
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 7《我們的衣食之源》(說課稿)-部編版道德與法治四年級(jí)下冊(cè)
- 7《多元文化 多樣魅力》(說課稿)-2023-2024學(xué)年統(tǒng)編版道德與法治六年級(jí)下冊(cè)
- 2023三年級(jí)英語(yǔ)下冊(cè) Unit 5 It's a parrot Lesson 30說課稿 人教精通版(三起)
- 2023九年級(jí)數(shù)學(xué)上冊(cè) 第二十一章 一元二次方程21.1 一元二次方程說課稿(新版)新人教版
- 7 課間十分鐘 第二課時(shí) 說課稿-2023-2024學(xué)年道德與法治一年級(jí)上冊(cè)統(tǒng)編版001
- 2024秋七年級(jí)英語(yǔ)上冊(cè) Unit 3 Is this your pencil Section B(1a-1e)說課稿 (新版)人教新目標(biāo)版001
- 2023-2024學(xué)年清華版(2012)信息技術(shù)三年級(jí)下冊(cè)第二單元《4課 妙用標(biāo)點(diǎn)-查找與替換》說課稿
- 專著出版委托協(xié)議
- 委托委托配送協(xié)議
- 二零二五年度林業(yè)木材深加工項(xiàng)目投資合作協(xié)議3篇
- 2025-2030年中國(guó)納米氧化鋁行業(yè)發(fā)展前景與投資戰(zhàn)略研究報(bào)告新版
- 2025年度正規(guī)離婚協(xié)議書電子版下載服務(wù)
- 2025年貴州蔬菜集團(tuán)有限公司招聘筆試參考題庫(kù)含答案解析
- 煤礦安全生產(chǎn)方針及法律法規(guī)課件
- 2025年教科室工作計(jì)劃樣本(四篇)
- 2024年版古董古玩買賣合同:古玩交易稅費(fèi)及支付規(guī)定
- 幼兒園費(fèi)用報(bào)銷管理制度
- 【7歷期末】安徽省宣城市2023-2024學(xué)年七年級(jí)上學(xué)期期末考試歷史試題
- 春節(jié)后安全生產(chǎn)開工第一課
- 2025光伏組件清洗合同
- 電力電纜工程施工組織設(shè)計(jì)
評(píng)論
0/150
提交評(píng)論