Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3717,7 +3717,21 @@ public Instant getPlagHaminchaBaalHatanya() {
public Instant getTzaisBaalHatanya() {
return getSunsetOffsetByDegrees(ZENITH_6_DEGREES);
}


/**
* This method returns <em>chatzos</em> (midday) following the opinion of the Baal Hatanya that the day for Jewish halachic
* times start at {@link #getSunriseBaalHatanya() <em>netz amiti</em> (sunrise)} and ends at {@link #getSunsetBaalHatanya()
* <em>shkiah amiti</em> (sunset)}.
*
* @see AstronomicalCalendar#getSunTransit()
* @return the <code>Date</code> of chatzos. If the calculation can't be computed such as in the Arctic Circle where
* there is at least one day where the sun does not rise, and one where it does not set, a null will be
* returned. See detailed explanation on top of the {@link AstronomicalCalendar} documentation.
*/
public Instant getChatzosBaalHatanya() {
return getSunTransit(getSunriseBaalHatanya(), getSunsetBaalHatanya());
}

/**
* This method returns <a href="https://en.wikipedia.org/wiki/Moshe_Feinstein">Rav Moshe Feinstein's</a> opinion of the
* calculation of <em>sof zman krias shema</em> (latest time to recite <em>Shema</em> in the morning) according to the
Expand Down
Loading