Visual_Basic 板


LINE

不知道有先进朋友有没有写过,日出日落类似的方程式,以下是我找到的类似文章,如果 有可以提供一下参考!谢谢... 这里提供一个简便的方法来计算日出与日没时间。为了说明方便,牺牲了计算的精密度。 用此方法计算日出与日没时间,大约会有4分钟以内的误差。 步骤一 定义日出时间的时角(Hour Angle) Z=90? 实际的日出,但天色已微亮 Z=96? 民用的日出,一般为街道熄灯的参考时刻 Z=102? 航海用日出时间 Z=108? 天文用日出没时间,此时天空全黑 步骤二 修正时角 由於太阳有0.5度的视角,因此它的中心点位於地平下1/4度时即可看到,因此实际日出的 时角必须加以修正,Z=90.5? 此外因为大气折射的影响,在地平线下34'的位置,会让我们以为它正处於地平线的位置 。因此实际日出的时角必须再次加以修正,Z=91.067? 至於其它的选项则不需修正日出时间的时角。 步骤三 观测当日,太阳中午时刻的赤道经度与纬度 (α,δ) ( 请参考「太阳位置的计算」 网页) 观测者地理经纬度 (λ,ψ) 观测当日的均时差 E ( 计算方法可参考「时间」的网页 ) 步骤四 τ=cos-1{ [ cos(Z)-sin(δ) sin(ψ)] / [ cos(ψ) cos(δ)] } /15 日没时间=12+τ+(Υ-λ)/15-E/60 (小时) 日出时间=日没时间+24-2τ 说明:Υ-λ之中的Υ是指地方时间的地理经度。例如台湾位於东经121?31'38'',Υ=1 20陛Aλ=121?31'38''。 范例 2000年9月1日的实际日出与日没时间? 步骤一 选择实际的日出 Z=90? 步骤二 修正时角 由於太阳有0.5度的视角,因此它的中心点位於地平下1/4度时即可看到,因此实际日出的 时角必须加以修正,Z=90.5? 此外因为大气折射的影响,在地平线下34'的位置,会让我们以为它正处於地平线的位置 。因此实际日出的时角必须再次加以修正,Z=91.067? 步骤三 观测当日,太阳中午时刻的赤道经度与纬度 (10h42m29s,8?10'59'') 观测者地理经纬度 (121?31'38'',25? 4'40'') ( 以台北为例 ) 观测当日的均时差 E=-0.21分 步骤四 τ=cos-1{ [ cos(91.067?)-sin(8?10'59'') sin(25? 4'40'')] / [ cos(25? 4'40'') cos(8?10'59'')] } /15 τ=6.267 hour 日没时间=18h10m 日出时间= 5h38m 说明:由於我们计算太阳的出没时刻是以当日中午的太阳位置为基础,事实上太阳与均时 差值无时无刻不在天球上移动,因此我们可以根据初次计算出来的时间,再次修正太阳的 实际位置,然後在依此方法重复计算。约三次的修正後,可以得到不错的精确度,时间误 差应该在分钟以内。结果如下: 日没时间=18h12m41s 日出时间= 5h34m42s ................... Sunrise/Sunset Algorithm Source: Almanac for Computers, 1990 published by Nautical Almanac Office United States Naval Observatory Washington, DC 20392 Inputs: day, month, year: date of sunrise/sunset latitude, longitude: location for sunrise/sunset zenith: Sun's zenith for sunrise/sunset offical = 90 degrees 50' civil = 96 degrees nautical = 102 degrees astronomical = 108 degrees NOTE: longitude is positive for East and negative for West NOTE: the algorithm assumes the use of a calculator with the trig functions in "degree" (rather than "radian") mode. Most programming languages assume radian arguments, requiring back and forth convertions. The factor is 180/pi. So, for instance, the equation RA = atan(0.91764 * tan(L)) would be coded as RA = (180/pi)*atan(0.91764 * tan((pi/180)*L)) to give a degree answer with a degree input for L. 1. first calculate the day of the year N1 = floor(275 * month / 9) N2 = floor((month + 9) / 12) N3 = (1 + floor((year - 4 * floor(year / 4) + 2) / 3)) N = N1 - (N2 * N3) + day - 30 2. convert the longitude to hour value and calculate an approximate time lngHour = longitude / 15 if rising time is desired: t = N + ((6 - lngHour) / 24) if setting time is desired: t = N + ((18 - lngHour) / 24) 3. calculate the Sun's mean anomaly M = (0.9856 * t) - 3.289 4. calculate the Sun's true longitude L = M + (1.916 * sin(M)) + (0.020 * sin(2 * M)) + 282.634 NOTE: L potentially needs to be adjusted into the range [0,360) by adding/sub tracting 360 5a. calculate the Sun's right ascension RA = atan(0.91764 * tan(L)) NOTE: RA potentially needs to be adjusted into the range [0,360) by adding/su btracting 360 5b. right ascension value needs to be in the same quadrant as L Lquadrant = (floor( L/90)) * 90 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 sinDec = 0.39782 * sin(L) cosDec = cos(asin(sinDec)) 7a. calculate the Sun's local hour angle cosH = (cos(zenith) - (sinDec * sin(latitude))) / (cosDec * cos(latitude)) if (cosH > 1) the sun never rises on this location (on the specified date) if (cosH < -1) the sun never sets on this location (on the specified date) 7b. finish calculating H and convert into hours if if rising time is desired: H = 360 - acos(cosH) if setting time is desired: H = acos(cosH) H = H / 15 8. calculate local mean time of rising/setting T = H + RA - (0.06571 * t) - 6.622 9. adjust back to UTC UT = T - lngHour NOTE: UT potentially needs to be adjusted into the range [0,24) by adding/sub tracting 24 10. convert UT value to local time zone of latitude/longitude localT = UT + localOffset........ 请输入专案类型(网站专案或者应用程式专案): --



※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 118.171.92.155
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Visual_Basic/M.1458984437.A.544.html ※ 编辑: newkoks (118.171.92.155), 03/26/2016 17:53:35
1F:→ MOONRAKER: 後面不就是方法了 你还有什麽问题 03/26 18:32
2F:→ newkoks: 想问写法怎样写比较好 03/26 19:15
3F:→ peakhour: 或许你可找这本书: astronomical algorithms 03/27 01:21
4F:→ MOONRAKER: 最好的写法: 呼叫API 03/27 01:29
5F:→ MOONRAKER: 不然硬干出来 客户问怎麽跟气象局不一样电得你百口莫辩 03/27 01:30
6F:→ MOONRAKER: 至於怎样写,他步骤不是都给了。 03/27 01:31
7F:→ newkoks: 谢谢先进的指导 03/27 09:07
8F:→ newkoks: 还是写不出来!真烦 03/27 15:34
9F:推 llzzyy01: 这个问题是地球科学的领域了 超出程式问题了吧 04/02 19:29







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:WOW站内搜寻

TOP