DateTime-Util-Astro
view release on metacpan or search on metacpan
lib/DateTime/Util/Astro/Moon.pm view on Meta::CPAN
160.7108, 390.67050274 * 1236.85,
-0.0016431, -0.00000227, 0.000000011);
my $omega = polynomial($c,
124.7746, -1.56375580 * 1236.85,
0.0020691, 0.00000215);
my $extra = 0.000325 * sin_deg(
polynomial($c, 299.77, 132.8475848, -0.009173));
my $correction = -0.00017 * sin_deg($omega);
my $additional = 0;
my($v, $w, $x, $y, $z);
foreach my $data (@{ NTH_NEW_MOON_CORRECTION_ARGS() }) {
($v, $w, $x, $y, $z) = @$data;
$correction += bigfloat($v) * ($E ** $w) * sin_deg(
$x * $solar_anomaly +
$y * $lunar_anomaly +
$z * $moon_argument);
}
my($i, $j, $l);
foreach my $data (@{ NTH_NEW_MOON_ADDITIONAL_ARGS() }) {
($i, $j, $l) = @$data;
$additional += bigfloat($l) * sin_deg($i + $j * $k);
}
$p = dt_from_dynamical($approx + $correction + $extra + $additional);
$cache->set($n, $p) if $cache;
return $p;
}
# [1] p.192
sub lunar_phase
{
my $dt = shift;
return mod(
lunar_longitude($dt) - DateTime::Util::Astro::Sun::solar_longitude($dt), 360);
}
1;
__END__
=head1 NAME
DateTime::Util::Astro::Moon - Functions To Calculate Lunar Data
=head1 SYNOPSIS
use DateTime::Util::Astro::Moon
qw(nth_new_moon lunar_phase lunar_longitude);
my $dt = nth_new_moon(24773); # should be 2003/12/23 UTC
my $phase = lunar_phase($dt);
my $longitude = lunar_longitude($dt);
=head1 DESCRIPTION
This module provides functions to calculate lunar data, but its main
focus is to provide just enough functionality that allows us to
create lunisolar calendars and other DateTime related modules.
This module is a *straight* port from "Calendrical Calculations" [1] --
and therefore there are places where things can probably be "fixed" so
that they look more like Perl, as well as places where we could
leverage the DateTime functionalities better. If you see things that
doesn't quite look right (in Perl), that's probably because of that.
=head2 Notes On Accuracy
Before you use this module, please be aware that this module was originally
created B<solely> for the purpose of creating a lunisolar calendar for
the DateTime project (http://datetime.perl.org).
We used [1] as basis for our calculations. While for most purposes the
results are accurate enough, you should note that the calculations from
this book are I<approximations>.
Obviously we would like to make this module as good as possible, but
there's only so much you can do in the accuracy department. However, having
L<GMP|http://www.swox.com/gmp> and Math::BigInt::GMP may help a little bit.
This module by default uses Perl's arbitrary precision calculation module
Math::BigFloat. However, this adds a fair amount of overhead, and you will
see a noticeable difference in execution speed. This is true even if you
use GMP.
=head2 Caching Results
DateTime::Util::Astro::Moon can use L<Cache::MemoryCache|Cache::MemoryCache> to cache results of certain functions.
This is always turned on. For example, nth_new_moon() is basically a constant
function for the given C<n>, and therefore should not need to recalculate
values ever again.
DateTime::Util::Astro::Moon uses L<Cache::Cache|Cache::Cache> for its cache
intetface, and by defaults to using L<Cache::MemoryCache|Cache::MemoryCache>.
If you would like to use a different type of cache, or tweak its behavior,
you can either assign or call methods on this cache object:
DateTime::Util::Astro::Moon->cache($cache);
my $cache = DateTime::Util::Astro::Moon->cache();
For example, if you want to forcibly expire this cache, do this:
DateTime::Util::Astro::Moon->cache()->purge();
Or for maximum efficiency, you could use a FileCache with EXPIRES_NEVER set
on (new moons don't change from for a given $n, so it's safe to do this --
however, you probably want to clear it when you upgrade this module)
DateTime::Util::Astro::Moon->cache(
Cache::MemoryCache->new({
namespace => 'MoonCache',
default_expires_in => $Cache::Cache::EXPIRES_NEVER
})
);
=head1 CONSTANTS
=head2 MEAN_SYNODIC_MONTH
The mean time between new moons
=head1 FUNCTIONS
=head2 lunar_longitude($dt)
Given a DateTime object $dt, calculates the lunar longitude.
=head2 lunar_phase($dt)
( run in 1.460 second using v1.01-cache-2.11-cpan-39bf76dae61 )