You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.8 KiB
Go
69 lines
1.8 KiB
Go
package basic
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func Test_Jq(t *testing.T) {
|
|
data := GetOneYearJQ(2019)
|
|
for i := 1; i < 25; i++ {
|
|
fmt.Println(JDE2Date(data[i]))
|
|
}
|
|
//fmt.Println(JDE2Date(GetWHTime(2019, 10)))
|
|
//fmt.Println(JDE2Date(GetJQTime(2020, 0)))
|
|
//date := TD2UT(GetJQTime(2020, 0), true)
|
|
//fmt.Println(HSunSeeLo(date))
|
|
}
|
|
|
|
func Test_SunLo(t *testing.T) {
|
|
fmt.Printf("%.14f\n", HSunTrueLo(2458840.0134162))
|
|
fmt.Printf("%.14f", HSunSeeLo(2458840.0134162))
|
|
}
|
|
|
|
func Benchmark_SunRise(b *testing.B) {
|
|
jde := GetNowJDE()
|
|
for i := 0; i < b.N; i++ {
|
|
//GetNowJDE()
|
|
GetSunRiseTime(jde, 115, 32, 8, 0, 10)
|
|
}
|
|
|
|
}
|
|
|
|
func Benchmark_SunLo(b *testing.B) {
|
|
jde := GetNowJDE()
|
|
for i := 0; i < b.N; i++ {
|
|
//GetNowJDE()
|
|
HSunSeeLo(jde)
|
|
}
|
|
|
|
}
|
|
|
|
func Test_Cal(t *testing.T) {
|
|
fmt.Println(JDE2Date(GetSolar(2020, 1, 1, false, 8.0/24.0)))
|
|
fmt.Println(JDE2Date(GetSolar(2020, 4, 1, false, 8.0/24.0)))
|
|
fmt.Println(JDE2Date(GetSolar(2020, 4, 1, true, 8.0/24.0)))
|
|
fmt.Println(JDE2Date(GetSolar(2033, 11, 3, false, 8.0/24.0)))
|
|
fmt.Println(JDE2Date(GetSolar(2033, 11, 3, true, 8.0/24.0)))
|
|
fmt.Println(JDE2Date(GetSolar(2034, 1, 1, false, 8.0/24.0)))
|
|
}
|
|
|
|
func Test_SunRise(t *testing.T) {
|
|
a := time.Now().UnixNano()
|
|
//b := GetSunRiseTime(GetNowJDE(), 115, 32, 8, 0)
|
|
//b = GetSunRiseTime(GetNowJDE()+1, 115, 32, 8, 0)
|
|
//b = GetSunRiseTime(GetNowJDE()+2, 115, 32, 8, 0)
|
|
//b = GetSunRiseTime(GetNowJDE()+3, 115, 32, 8, 0)
|
|
//b = GetSunRiseTime(GetNowJDE()+4, 115, 32, 8, 0)
|
|
//b = GetSunRiseTime(GetNowJDE()+5, 115, 32, 8, 0)
|
|
//b = GetSunRiseTime(GetNowJDE()+6, 115, 32, 8, 0)
|
|
//b = GetSunRiseTime(GetNowJDE()+7, 115, 32, 8, 0)
|
|
//b = GetSunRiseTime(GetNowJDE()+8, 115, 32, 8, 0)
|
|
b := GetSunRiseTime(GetNowJDE()+9, 115, 32, 8, 0, 10)
|
|
fmt.Println(time.Now().UnixNano() - a)
|
|
fmt.Println(SunHeight(b, 115, 32, 8))
|
|
fmt.Println(JDE2Date((b)))
|
|
fmt.Println(time.Now().UnixNano() - a)
|
|
}
|