zakuro 0.1.0 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +30 -12
- data/doc/operation/csv/month.csv +202 -202
- data/doc/operation/operation.xlsx +0 -0
- data/doc/operation/transfer.rb +6 -2
- data/lib/zakuro/calculation/base/multi_gengou.rb +101 -0
- data/lib/zakuro/calculation/base/multi_gengou_roller.rb +218 -0
- data/lib/zakuro/calculation/base/year.rb +107 -0
- data/lib/zakuro/calculation/cycle/abstract_remainder.rb +471 -0
- data/lib/zakuro/calculation/cycle/abstract_solar_term.rb +173 -0
- data/lib/zakuro/calculation/cycle/zodiac.rb +106 -0
- data/lib/zakuro/calculation/monthly/first_day.rb +45 -0
- data/lib/zakuro/calculation/monthly/initialized_month.rb +125 -0
- data/lib/zakuro/calculation/monthly/month.rb +187 -0
- data/lib/zakuro/calculation/monthly/month_label.rb +88 -0
- data/lib/zakuro/calculation/monthly/operated_month.rb +209 -0
- data/lib/zakuro/calculation/range/full_range.rb +210 -0
- data/lib/zakuro/calculation/range/operated_range.rb +144 -0
- data/lib/zakuro/calculation/range/operated_solar_terms.rb +201 -0
- data/lib/zakuro/calculation/range/transfer/western_date_allocation.rb +82 -0
- data/lib/zakuro/calculation/range/transfer/year_boundary.rb +146 -0
- data/lib/zakuro/calculation/specifier/single_day.rb +109 -0
- data/lib/zakuro/calculation/summary/single.rb +129 -0
- data/lib/zakuro/condition.rb +16 -13
- data/lib/zakuro/era/japan/gengou/parser.rb +1 -3
- data/lib/zakuro/era/japan/gengou/type.rb +3 -3
- data/lib/zakuro/era/japan/gengou/validator.rb +15 -13
- data/lib/zakuro/merchant.rb +2 -2
- data/lib/zakuro/operation/month/parser.rb +132 -36
- data/lib/zakuro/operation/month/type.rb +11 -10
- data/lib/zakuro/operation/month/validator.rb +332 -28
- data/lib/zakuro/operation/operation.rb +21 -0
- data/lib/zakuro/operation/yaml/month.yaml +1 -1
- data/lib/zakuro/output/error.rb +7 -6
- data/lib/zakuro/output/logger.rb +50 -49
- data/lib/zakuro/output/response.rb +145 -144
- data/lib/zakuro/result/operation.rb +64 -36
- data/lib/zakuro/tools/stringifier.rb +2 -2
- data/lib/zakuro/tools/typeof.rb +2 -2
- data/lib/zakuro/version.rb +1 -1
- data/lib/zakuro/version/abstract_version.rb +1 -1
- data/lib/zakuro/version/context.rb +23 -0
- data/lib/zakuro/version/senmyou/const/number.rb +51 -0
- data/lib/zakuro/version/senmyou/const/remainder.rb +43 -0
- data/lib/zakuro/version/senmyou/cycle/remainder.rb +61 -0
- data/lib/zakuro/version/senmyou/cycle/solar_term.rb +31 -0
- data/lib/zakuro/version/senmyou/monthly/lunar_phase.rb +166 -181
- data/lib/zakuro/version/senmyou/range/annual_range.rb +86 -159
- data/lib/zakuro/version/senmyou/senmyou.rb +10 -4
- data/lib/zakuro/version/senmyou/stella/lunar/adjustment.rb +237 -0
- data/lib/zakuro/version/senmyou/stella/lunar/localization.rb +45 -0
- data/lib/zakuro/version/senmyou/stella/lunar/location.rb +108 -0
- data/lib/zakuro/version/senmyou/stella/lunar/value.rb +89 -0
- data/lib/zakuro/version/senmyou/stella/origin/average_november.rb +34 -0
- data/lib/zakuro/version/senmyou/stella/origin/lunar_age.rb +62 -0
- data/lib/zakuro/version/senmyou/stella/origin/winter_solstice.rb +55 -0
- data/lib/zakuro/version/senmyou/stella/solar/adjustment.rb +93 -0
- data/lib/zakuro/version/senmyou/stella/solar/average.rb +175 -0
- data/lib/zakuro/version/senmyou/stella/solar/interval.rb +103 -0
- data/lib/zakuro/version/senmyou/stella/solar/location.rb +164 -0
- data/lib/zakuro/version/senmyou/stella/solar/value.rb +138 -0
- data/lib/zakuro/version/version_class_resolver.rb +62 -0
- data/lib/zakuro/version_factory.rb +2 -2
- metadata +38 -24
- data/lib/zakuro/cycle/abstract_remainder.rb +0 -456
- data/lib/zakuro/cycle/zodiac.rb +0 -103
- data/lib/zakuro/version/senmyou/base/era.rb +0 -83
- data/lib/zakuro/version/senmyou/base/multi_gengou.rb +0 -98
- data/lib/zakuro/version/senmyou/base/multi_gengou_roller.rb +0 -217
- data/lib/zakuro/version/senmyou/base/remainder.rb +0 -60
- data/lib/zakuro/version/senmyou/base/solar_term.rb +0 -76
- data/lib/zakuro/version/senmyou/base/year.rb +0 -104
- data/lib/zakuro/version/senmyou/monthly/first_day.rb +0 -44
- data/lib/zakuro/version/senmyou/monthly/initialized_month.rb +0 -48
- data/lib/zakuro/version/senmyou/monthly/month.rb +0 -181
- data/lib/zakuro/version/senmyou/monthly/month_label.rb +0 -87
- data/lib/zakuro/version/senmyou/monthly/operated_month.rb +0 -167
- data/lib/zakuro/version/senmyou/range/full_range.rb +0 -324
- data/lib/zakuro/version/senmyou/range/operated_range.rb +0 -105
- data/lib/zakuro/version/senmyou/range/operated_solar_terms.rb +0 -163
- data/lib/zakuro/version/senmyou/specifier/single_day_specifier.rb +0 -99
- data/lib/zakuro/version/senmyou/stella/lunar_orbit.rb +0 -332
- data/lib/zakuro/version/senmyou/stella/solar_average.rb +0 -214
- data/lib/zakuro/version/senmyou/stella/solar_orbit.rb +0 -394
- data/lib/zakuro/version/senmyou/stella/winter_solstice.rb +0 -106
- data/lib/zakuro/version/senmyou/summary/single.rb +0 -71
@@ -0,0 +1,175 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative '../../const/remainder'
|
4
|
+
|
5
|
+
require_relative '../origin/winter_solstice'
|
6
|
+
|
7
|
+
# :nodoc:
|
8
|
+
module Zakuro
|
9
|
+
# :nodoc:
|
10
|
+
module Senmyou
|
11
|
+
# :nodoc:
|
12
|
+
module Solar
|
13
|
+
#
|
14
|
+
# Average 常気(太陽軌道平均)
|
15
|
+
#
|
16
|
+
class Average
|
17
|
+
# @return [Remainder] 気策
|
18
|
+
SOLAR_TERM_AVERAGE = Const::Remainder::Solar::SOLAR_TERM_AVERAGE
|
19
|
+
|
20
|
+
#
|
21
|
+
# 初期化
|
22
|
+
#
|
23
|
+
# @param [Integer] western_year 西暦年
|
24
|
+
#
|
25
|
+
def initialize(western_year:)
|
26
|
+
@solar_term = Average.first_solar_term(western_year: western_year)
|
27
|
+
end
|
28
|
+
|
29
|
+
#
|
30
|
+
# 冬至から数えた1年データの月ごとに二十四節気を割り当てる
|
31
|
+
#
|
32
|
+
# @param [Array<Month>] annual_range 1年データ
|
33
|
+
#
|
34
|
+
# @return [Array<Month>] 1年データ
|
35
|
+
#
|
36
|
+
def set(annual_range:)
|
37
|
+
# 次月と比較しながら当月の二十四節気を決める
|
38
|
+
# NOTE: 最後の月は処理できない(=計算外の余分な月が最後に必要である)
|
39
|
+
annual_range.each_cons(2) do |(current_month, next_month)|
|
40
|
+
set_solar_term(
|
41
|
+
current_month: current_month,
|
42
|
+
next_month: next_month
|
43
|
+
)
|
44
|
+
end
|
45
|
+
|
46
|
+
annual_range
|
47
|
+
end
|
48
|
+
|
49
|
+
#
|
50
|
+
# 計算開始する二十四節気を求める
|
51
|
+
#
|
52
|
+
# @param [Integer] western_year 西暦年
|
53
|
+
#
|
54
|
+
# @return [SolarTerm] 二十四節気
|
55
|
+
#
|
56
|
+
def self.first_solar_term(western_year:)
|
57
|
+
# 天正冬至
|
58
|
+
winter_solstice = Origin::WinterSolstice.get(western_year: western_year)
|
59
|
+
|
60
|
+
# 二十四節気(冬至)
|
61
|
+
solar_term = Cycle::SolarTerm.new(index: 0, remainder: winter_solstice)
|
62
|
+
|
63
|
+
first_solar_term_index = Average.calc_fist_solar_term_index(western_year: western_year)
|
64
|
+
|
65
|
+
# 対象の二十四節気まで戻す
|
66
|
+
solar_term.prev_by_index(first_solar_term_index)
|
67
|
+
|
68
|
+
solar_term
|
69
|
+
end
|
70
|
+
|
71
|
+
# :reek:TooManyStatements { max_statements: 6 }
|
72
|
+
|
73
|
+
#
|
74
|
+
# 計算開始する二十四節気番号を求める
|
75
|
+
#
|
76
|
+
# * 前提として入定気は冬至の手前にある
|
77
|
+
# * 例えば、定気が大雪であれば入定気は大雪の範囲内にある
|
78
|
+
# * 入定気は、定気の開始位置に重複しない限り、常に定気より後にある
|
79
|
+
# * 基本的に定気の一つ前から起算すれば、当時から求めた11月(閏10/閏11月)に二十四節気を割り当てられる
|
80
|
+
#
|
81
|
+
# @param [Integer] western_year 西暦年
|
82
|
+
#
|
83
|
+
# @return [Integer] 二十四節気番号
|
84
|
+
#
|
85
|
+
def self.calc_fist_solar_term_index(western_year:)
|
86
|
+
# 天正閏余
|
87
|
+
lunar_age = Origin::LunarAge.get(western_year: western_year)
|
88
|
+
|
89
|
+
solar_location = Solar::Location.new(lunar_age: lunar_age)
|
90
|
+
solar_location.run
|
91
|
+
|
92
|
+
solar_term_index = solar_location.index
|
93
|
+
|
94
|
+
# 入定気の一つ後の二十四節気まで戻す(ただし11月経朔が二十四節気上にある場合は戻さない)
|
95
|
+
solar_term_index += 1 unless solar_location.remainder == Cycle::Remainder.new(total: 0)
|
96
|
+
|
97
|
+
solar_term_index
|
98
|
+
end
|
99
|
+
|
100
|
+
# :reek:TooManyStatements { max_statements: 7 }
|
101
|
+
|
102
|
+
#
|
103
|
+
# 月内(当月朔日から当月末日(来月朔日の前日)の間)に二十四節気があるか
|
104
|
+
# @note 大余60で一巡するため 以下2パターンがある
|
105
|
+
# * current_month <= next_month : (二十四節気) >= current_month && (二十四節気) < next_month
|
106
|
+
# * current_month > next_month : (二十四節気) >= current_month || (二十四節気) < next_month
|
107
|
+
#
|
108
|
+
# @param [Remainder] solar_term 二十四節気
|
109
|
+
# @param [Remainder] current_month 月初
|
110
|
+
# @param [Remainder] next_month 月末
|
111
|
+
#
|
112
|
+
# @return [True] 対象の二十四節気がある
|
113
|
+
# @return [False] 対象の二十四節気がない
|
114
|
+
#
|
115
|
+
def self.in_solar_term?(solar_term:, current_month:, next_month:)
|
116
|
+
# 大余で比較する
|
117
|
+
target_time = solar_term.day
|
118
|
+
current_month_time = current_month.day
|
119
|
+
next_month_time = next_month.day
|
120
|
+
current_month_over = (target_time >= current_month_time)
|
121
|
+
next_month_under = (target_time < next_month_time)
|
122
|
+
|
123
|
+
return current_month_over && next_month_under if current_month_time <= next_month_time
|
124
|
+
|
125
|
+
current_month_over || next_month_under
|
126
|
+
end
|
127
|
+
|
128
|
+
private
|
129
|
+
|
130
|
+
# :reek:TooManyStatements { max_statements: 8 }
|
131
|
+
|
132
|
+
#
|
133
|
+
# 二十四節気を設定する
|
134
|
+
#
|
135
|
+
# @param [Month] current_month 当月
|
136
|
+
# @param [Month] next_month 次月
|
137
|
+
#
|
138
|
+
def set_solar_term(current_month:, next_month:)
|
139
|
+
# 安全策として無限ループは回避する
|
140
|
+
# * 最大試行回数:4回(設定なし => 設定あり => 設定あり => 設定なし)
|
141
|
+
# * 閏月は1回しか設定しない
|
142
|
+
# * 最大2回設定する(中気・節気)
|
143
|
+
(0..3).each do |_index|
|
144
|
+
in_range = Average.in_solar_term?(
|
145
|
+
solar_term: @solar_term.remainder, current_month: current_month.remainder,
|
146
|
+
next_month: next_month.remainder
|
147
|
+
)
|
148
|
+
|
149
|
+
# 範囲外
|
150
|
+
unless in_range
|
151
|
+
# 1つ以上設定されていれば切り上げる(一つ飛ばしで二十四節気を設定することはない)
|
152
|
+
break unless current_month.empty_solar_term?
|
153
|
+
|
154
|
+
next_solar_term
|
155
|
+
next
|
156
|
+
end
|
157
|
+
|
158
|
+
current_month.add_term(term: @solar_term.clone)
|
159
|
+
next_solar_term
|
160
|
+
|
161
|
+
# 宣明暦は最大2つまで
|
162
|
+
break if current_month.solar_term_size == 2
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
#
|
167
|
+
# 次の二十四節気に移る
|
168
|
+
#
|
169
|
+
def next_solar_term
|
170
|
+
@solar_term.next_term!
|
171
|
+
end
|
172
|
+
end
|
173
|
+
end
|
174
|
+
end
|
175
|
+
end
|
@@ -0,0 +1,103 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# :nodoc:
|
4
|
+
module Zakuro
|
5
|
+
# :nodoc:
|
6
|
+
module Senmyou
|
7
|
+
# :nodoc:
|
8
|
+
module Solar
|
9
|
+
#
|
10
|
+
# Interval 入気定日加減数(二十四節気の間隔)
|
11
|
+
#
|
12
|
+
module Interval
|
13
|
+
# @return [Hash<Symbol, Cycle::Remainder>] 一覧
|
14
|
+
MAP = {
|
15
|
+
# 冬至(とうじ)・大雪(たいせつ)
|
16
|
+
touji: Cycle::Remainder.new(day: 14, minute: 4235, second: 5),
|
17
|
+
taisetsu: Cycle::Remainder.new(day: 14, minute: 4235, second: 5),
|
18
|
+
# 小寒(しょうかん)・小雪(しょうせつ)
|
19
|
+
shoukan: Cycle::Remainder.new(day: 14, minute: 5235, second: 5),
|
20
|
+
shousetsu: Cycle::Remainder.new(day: 14, minute: 5235, second: 5),
|
21
|
+
# 大寒(だいかん)・立冬(りっとう)
|
22
|
+
daikan: Cycle::Remainder.new(day: 14, minute: 6235, second: 5),
|
23
|
+
rittou: Cycle::Remainder.new(day: 14, minute: 6235, second: 5),
|
24
|
+
# 立春(りっしゅん)・霜降(そうこう)
|
25
|
+
risshun: Cycle::Remainder.new(day: 14, minute: 7235, second: 5),
|
26
|
+
soukou: Cycle::Remainder.new(day: 14, minute: 7235, second: 5),
|
27
|
+
# 雨水(うすい)・寒露(かんろ)
|
28
|
+
usui: Cycle::Remainder.new(day: 15, minute: 35, second: 5),
|
29
|
+
kanro: Cycle::Remainder.new(day: 15, minute: 35, second: 5),
|
30
|
+
# 啓蟄(けいちつ)・秋分(しゅうぶん)
|
31
|
+
keichitsu: Cycle::Remainder.new(day: 15, minute: 1235, second: 5),
|
32
|
+
shuubun: Cycle::Remainder.new(day: 15, minute: 1235, second: 5),
|
33
|
+
# 春分(しゅんぶん)・白露(はくろ)
|
34
|
+
shunbun: Cycle::Remainder.new(day: 15, minute: 2435, second: 5),
|
35
|
+
hakuro: Cycle::Remainder.new(day: 15, minute: 2435, second: 5),
|
36
|
+
# 清明(せいめい)・処暑(しょしょ)
|
37
|
+
seimei: Cycle::Remainder.new(day: 15, minute: 3635, second: 5),
|
38
|
+
shosho: Cycle::Remainder.new(day: 15, minute: 3635, second: 5),
|
39
|
+
# 穀雨(こくう)・立秋(りっしゅう)
|
40
|
+
kokuu: Cycle::Remainder.new(day: 15, minute: 4835, second: 5),
|
41
|
+
risshuu: Cycle::Remainder.new(day: 15, minute: 4835, second: 5),
|
42
|
+
# 立夏(りっか)・大暑(たいしょ)
|
43
|
+
rikka: Cycle::Remainder.new(day: 15, minute: 5835, second: 5),
|
44
|
+
taisho: Cycle::Remainder.new(day: 15, minute: 5835, second: 5),
|
45
|
+
# 小満(しょうまん)・小暑(しょうしょ)
|
46
|
+
shouman: Cycle::Remainder.new(day: 15, minute: 6835, second: 5),
|
47
|
+
shousho: Cycle::Remainder.new(day: 15, minute: 6835, second: 5),
|
48
|
+
# 芒種(ぼうしゅ)・夏至(げし)
|
49
|
+
boushu: Cycle::Remainder.new(day: 15, minute: 7835, second: 5),
|
50
|
+
geshi: Cycle::Remainder.new(day: 15, minute: 7835, second: 5)
|
51
|
+
}.freeze
|
52
|
+
|
53
|
+
# @return [Array<Remainder>] 索引
|
54
|
+
LIST = [
|
55
|
+
MAP[:touji], # 0
|
56
|
+
MAP[:shoukan], # 1
|
57
|
+
MAP[:daikan], # 2
|
58
|
+
MAP[:risshun], # 3
|
59
|
+
MAP[:usui], # 4
|
60
|
+
MAP[:keichitsu], # 5
|
61
|
+
MAP[:shunbun], # 6
|
62
|
+
MAP[:seimei], # 7
|
63
|
+
MAP[:kokuu], # 8
|
64
|
+
MAP[:rikka], # 9
|
65
|
+
MAP[:shouman], # 10
|
66
|
+
MAP[:boushu], # 11
|
67
|
+
MAP[:geshi], # 12
|
68
|
+
MAP[:shousho], # 13
|
69
|
+
MAP[:taisho], # 14
|
70
|
+
MAP[:risshuu], # 15
|
71
|
+
MAP[:shosho], # 16
|
72
|
+
MAP[:hakuro], # 17
|
73
|
+
MAP[:shuubun], # 18
|
74
|
+
MAP[:kanro], # 19
|
75
|
+
MAP[:soukou], # 20
|
76
|
+
MAP[:rittou], # 21
|
77
|
+
MAP[:shousetsu], # 22
|
78
|
+
MAP[:taisetsu] # 23
|
79
|
+
].freeze
|
80
|
+
|
81
|
+
#
|
82
|
+
# 入気定日加減数を引き当てる
|
83
|
+
#
|
84
|
+
# @param [Integer] index 二十四節気番号
|
85
|
+
#
|
86
|
+
# @return [Cycle::Remainder] 入気定日加減数
|
87
|
+
#
|
88
|
+
def self.index_of(index)
|
89
|
+
LIST[index]
|
90
|
+
end
|
91
|
+
|
92
|
+
#
|
93
|
+
# 入気定日加減数の総数を返す
|
94
|
+
#
|
95
|
+
# @return [Integer] 入気定日加減数の総数
|
96
|
+
#
|
97
|
+
def self.size
|
98
|
+
LIST.size
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
@@ -0,0 +1,164 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative '../../const/remainder'
|
4
|
+
|
5
|
+
require_relative './interval'
|
6
|
+
|
7
|
+
# :nodoc:
|
8
|
+
module Zakuro
|
9
|
+
# :nodoc:
|
10
|
+
module Senmyou
|
11
|
+
# :nodoc:
|
12
|
+
module Solar
|
13
|
+
#
|
14
|
+
# Location 入定気
|
15
|
+
#
|
16
|
+
class Location
|
17
|
+
# @return [Cycle::Remainder] 弦
|
18
|
+
QUARTER = Const::Remainder::Solar::QUARTER
|
19
|
+
|
20
|
+
# @return [True] 計算済み(前回計算あり)
|
21
|
+
# @return [False] 未計算(初回計算)
|
22
|
+
attr_reader :calculated
|
23
|
+
# @return [Integer] 連番
|
24
|
+
attr_reader :index
|
25
|
+
# @return [Cycle::Remainder] 大余小余
|
26
|
+
attr_reader :remainder
|
27
|
+
|
28
|
+
#
|
29
|
+
# 初期化
|
30
|
+
#
|
31
|
+
# @param [Cycle::Remainder] lunar_age 天正閏余(大余小余)
|
32
|
+
#
|
33
|
+
def initialize(lunar_age: Cycle::Remainder.new)
|
34
|
+
@calculated = false
|
35
|
+
@index = -1
|
36
|
+
@remainder = lunar_age.clone
|
37
|
+
end
|
38
|
+
|
39
|
+
#
|
40
|
+
# 入定気を計算する
|
41
|
+
#
|
42
|
+
def run
|
43
|
+
return current if calculated
|
44
|
+
|
45
|
+
first
|
46
|
+
end
|
47
|
+
|
48
|
+
#
|
49
|
+
# 無効かどうか
|
50
|
+
#
|
51
|
+
# @return [True] 無効
|
52
|
+
# @return [False] 有効
|
53
|
+
#
|
54
|
+
def invalid?
|
55
|
+
@index == -1
|
56
|
+
end
|
57
|
+
|
58
|
+
#
|
59
|
+
# 弦の分だけ太陽地点を進める
|
60
|
+
#
|
61
|
+
def add_quarter
|
62
|
+
@remainder.add!(QUARTER)
|
63
|
+
end
|
64
|
+
|
65
|
+
private
|
66
|
+
|
67
|
+
#
|
68
|
+
# 2回目以降の計算をする
|
69
|
+
#
|
70
|
+
def current
|
71
|
+
decrease_recursively
|
72
|
+
end
|
73
|
+
|
74
|
+
#
|
75
|
+
# 初回計算する
|
76
|
+
#
|
77
|
+
def first
|
78
|
+
define_first
|
79
|
+
@calculated = true
|
80
|
+
end
|
81
|
+
|
82
|
+
#
|
83
|
+
# 初回の入定気を定める
|
84
|
+
#
|
85
|
+
def define_first
|
86
|
+
# 入定気の起算方法
|
87
|
+
# 概要:
|
88
|
+
# * 太陽の運行による補正値は、二十四節気の気ごとに定められる
|
89
|
+
# * 11月経朔の前にある気を求め、それから11月経朔との間隔を求める
|
90
|
+
# * 気ごとの補正値と、気から11月経朔までにかかる補正値を求める
|
91
|
+
# 前提:
|
92
|
+
# * 11月経朔に関わる二十四節気は、時系列から順に、小雪・大雪・冬至である
|
93
|
+
# * 小雪〜大雪の間隔は小雪定数で、大雪〜冬至の間隔は大雪定数で決められている(24気損益眺朒(ちょうじく)数のこと)
|
94
|
+
# * 11月経朔は、この小雪〜冬至の間のいずれかにある
|
95
|
+
# 計算:
|
96
|
+
# 2パターンある
|
97
|
+
# (a) 大雪〜冬至にある場合
|
98
|
+
# *「大雪定数 >= 天正閏余」の場合を指す
|
99
|
+
# * * NOTE 資料では「より大きい(>)」とされるが、大雪そのものの場合は大雪から起算すべき
|
100
|
+
# * この場合は、大雪〜経朔の間隔を求める
|
101
|
+
# (b) 小雪〜大雪にある場合
|
102
|
+
# *「大雪定数 < 天正閏余」の場合を指す
|
103
|
+
# * この場合は、小雪〜経朔の間隔を求める
|
104
|
+
|
105
|
+
# NOTE: 上記パターンとは別に、稀だが立冬のパターンも存在する
|
106
|
+
# この場合は比較方法はそのままに立冬〜経朔の間隔を求める
|
107
|
+
|
108
|
+
# 大雪(23)/小雪(22)/立冬(21)
|
109
|
+
[23, 22, 21].each do |index|
|
110
|
+
prev(index: index)
|
111
|
+
|
112
|
+
break unless invalid?
|
113
|
+
end
|
114
|
+
|
115
|
+
# 立冬(21)を超える天正閏余は成立し得ない(1朔望月をはるかに超えることになる)
|
116
|
+
return unless invalid?
|
117
|
+
|
118
|
+
raise ArgumentError.new, 'invalid winster solstice age'
|
119
|
+
end
|
120
|
+
|
121
|
+
#
|
122
|
+
# 大余小余の分だけ二十四節気を遡る
|
123
|
+
#
|
124
|
+
# @param [Integer] index 二十四節気番号
|
125
|
+
#
|
126
|
+
def prev(index:)
|
127
|
+
interval = Interval.index_of(index)
|
128
|
+
if remainder > interval
|
129
|
+
@remainder.sub!(interval)
|
130
|
+
return
|
131
|
+
end
|
132
|
+
|
133
|
+
# 入定気が確定する
|
134
|
+
@remainder = interval.sub(@remainder)
|
135
|
+
@index = index
|
136
|
+
end
|
137
|
+
|
138
|
+
#
|
139
|
+
# 二十四節気番号を次に進める
|
140
|
+
#
|
141
|
+
def next_index
|
142
|
+
@index += 1
|
143
|
+
@index = 0 if @index >= Interval.size
|
144
|
+
end
|
145
|
+
|
146
|
+
#
|
147
|
+
# 二十四節気を減算する
|
148
|
+
#
|
149
|
+
def decrease_recursively
|
150
|
+
interval = Interval.index_of(@index)
|
151
|
+
# 現在の二十四節気に留まる
|
152
|
+
return if remainder < interval
|
153
|
+
|
154
|
+
@remainder.sub!(interval)
|
155
|
+
|
156
|
+
next_index
|
157
|
+
|
158
|
+
# 再帰
|
159
|
+
decrease_recursively
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|
@@ -0,0 +1,138 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative '../../const/number'
|
4
|
+
|
5
|
+
require_relative './adjustment'
|
6
|
+
|
7
|
+
# :nodoc:
|
8
|
+
module Zakuro
|
9
|
+
# :nodoc:
|
10
|
+
module Senmyou
|
11
|
+
# :nodoc:
|
12
|
+
module Solar
|
13
|
+
#
|
14
|
+
# Value 太陽補正値
|
15
|
+
#
|
16
|
+
module Value
|
17
|
+
# @return [Integer] 1日
|
18
|
+
DAY = Const::Number::Cycle::DAY
|
19
|
+
|
20
|
+
#
|
21
|
+
# 太陽の運行による補正値を算出する
|
22
|
+
#
|
23
|
+
# @param [SolarTerm] solar_location 入定気
|
24
|
+
#
|
25
|
+
# @return [Integer] 補正値
|
26
|
+
#
|
27
|
+
def self.get(solar_location:)
|
28
|
+
remainder = solar_location.remainder
|
29
|
+
|
30
|
+
adjustment = Adjustment.specify(index: solar_location.index)
|
31
|
+
# 損益率/眺朒(ちょうじく)数
|
32
|
+
# パラメータ:
|
33
|
+
# a: 眺朒(ちょうじく)数の初日の値
|
34
|
+
# b: 損益率初日の値
|
35
|
+
# c: 損益率の毎日の差
|
36
|
+
# n: 定気の日から数えた日数
|
37
|
+
|
38
|
+
day_stack = calc_day_stack(remainder: remainder, adjustment: adjustment)
|
39
|
+
|
40
|
+
month_stack = calc_month_stack(stack: adjustment.stack, day: remainder.day,
|
41
|
+
per_term: adjustment.per_term, per_day:
|
42
|
+
adjustment.per_day)
|
43
|
+
|
44
|
+
# 冬至であれば眺朒数がプラスになり続けて損益率が「益」で、小雪であればマイナスの眺朒数がプラスされ続けて「損」
|
45
|
+
month_stack + day_stack
|
46
|
+
end
|
47
|
+
|
48
|
+
#
|
49
|
+
# 損益率を求める
|
50
|
+
#
|
51
|
+
# @param [Remainder] remainder 入定気
|
52
|
+
# @param [Adjustment::Item] adjustment 24気損益眺朒(ちょうじく)数
|
53
|
+
#
|
54
|
+
# @return [Integer] 損益率
|
55
|
+
#
|
56
|
+
def self.calc_day_stack(remainder:, adjustment:)
|
57
|
+
per_term = adjustment.per_term
|
58
|
+
per_day = adjustment.per_day
|
59
|
+
sign, ratio = calc_ratio(day: remainder.day, per_term: per_term, per_day: per_day)
|
60
|
+
|
61
|
+
calc_day_stack_from_ratio(sign: sign, ratio: ratio,
|
62
|
+
minute: remainder.minute)
|
63
|
+
end
|
64
|
+
private_class_method :calc_day_stack
|
65
|
+
|
66
|
+
# :reek:TooManyStatements { max_statements: 6 }
|
67
|
+
|
68
|
+
#
|
69
|
+
# 大余に対応する損益率を求める
|
70
|
+
# 損益率 = b + n * c
|
71
|
+
#
|
72
|
+
# @param [Integer] day 大余
|
73
|
+
# @param [Integer] per_term 眺朒(ちょうじく)数
|
74
|
+
# @param [Integer] per_day 毎日差
|
75
|
+
#
|
76
|
+
# @return [Integer] 正負
|
77
|
+
# @return [Integer] 大余に対応する損益率
|
78
|
+
#
|
79
|
+
def self.calc_ratio(day:, per_term:, per_day:)
|
80
|
+
ratio = per_term + day * per_day
|
81
|
+
sign = 1
|
82
|
+
if ratio.negative?
|
83
|
+
sign = -1
|
84
|
+
ratio *= sign
|
85
|
+
end
|
86
|
+
# 小数点以下は無視する
|
87
|
+
ratio = ratio.floor
|
88
|
+
|
89
|
+
[sign, ratio]
|
90
|
+
end
|
91
|
+
private_class_method :calc_ratio
|
92
|
+
|
93
|
+
#
|
94
|
+
# 小余を含めた損益率を求める
|
95
|
+
#
|
96
|
+
# @param [Integer] sign 正負(大余に対応する損益率)
|
97
|
+
# @param [Integer] ratio 大余に対応する損益率
|
98
|
+
# @param [Integer] minute 小余
|
99
|
+
#
|
100
|
+
# @return [Integer] 小余を含めた損益率
|
101
|
+
#
|
102
|
+
def self.calc_day_stack_from_ratio(sign:, ratio:, minute:)
|
103
|
+
minute_stack = ratio * minute
|
104
|
+
day_stack = (minute_stack / DAY).floor
|
105
|
+
# 四捨五入
|
106
|
+
# NOTE 資料では「この余りが4200をこえていれば切り上げる」とあり「>=」とした
|
107
|
+
# 1612年の7月(慶長17年7月)が境界値4200だが、繰り上げを行なっていたため
|
108
|
+
day_stack += 1 if minute_stack % DAY >= (DAY / 2)
|
109
|
+
day_stack *= sign
|
110
|
+
|
111
|
+
day_stack
|
112
|
+
end
|
113
|
+
private_class_method :calc_day_stack_from_ratio
|
114
|
+
|
115
|
+
# :reek:LongParameterList { max_params: 4 }
|
116
|
+
|
117
|
+
#
|
118
|
+
# 眺朒(ちょうじく)数を求める
|
119
|
+
# 眺朒(ちょうじく)数 = a + (n * b) + (1/2)n(n-1)c
|
120
|
+
#
|
121
|
+
# @param [Integer] stack 眺朒(ちょうじく)積
|
122
|
+
# @param [Integer] day 大余
|
123
|
+
# @param [Integer] per_term 眺朒(ちょうじく)数
|
124
|
+
# @param [Integer] per_day 毎日差f
|
125
|
+
#
|
126
|
+
# @return [Integer] 眺朒(ちょうじく)数
|
127
|
+
#
|
128
|
+
def self.calc_month_stack(stack:, day:, per_term:, per_day:)
|
129
|
+
month_stack = stack + day * per_term + \
|
130
|
+
(1 / 2.0) * (day * (day - 1) * per_day)
|
131
|
+
# 切り捨て(プラスマイナスに関わらず小数点以下切り捨て)
|
132
|
+
month_stack.negative? ? month_stack.ceil : month_stack.floor
|
133
|
+
end
|
134
|
+
private_class_method :calc_month_stack
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|