diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 12 | ||||
-rw-r--r-- | src/common.h | 3 | ||||
-rw-r--r-- | src/options.c | 1 | ||||
-rw-r--r-- | src/redshift.c | 9 | ||||
-rw-r--r-- | src/solar.c | 209 | ||||
-rw-r--r-- | src/solar.h | 27 |
6 files changed, 13 insertions, 248 deletions
diff --git a/src/Makefile b/src/Makefile index 25c1568..9ab321c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,6 +4,9 @@ CONFIGFILE = config.mk include $(CONFIGFILE) +PACKAGE_STRING = redshift-ng 1.13 + + OBJ =\ colorramp.o\ config-ini.o\ @@ -19,18 +22,11 @@ OBJ =\ pipeutils.o\ redshift.o\ signals.o\ - solar.o\ systemtime.o -HDR =\ - common.h\ - solar.h - -PACKAGE_STRING = redshift-ng 1.13 - all: redshift -$(OBJ): $(HDR) +$(OBJ): common.h .c.o: $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) -D'PACKAGE_STRING="$(PACKAGE_STRING)"' diff --git a/src/common.h b/src/common.h index 3548d5c..98384cc 100644 --- a/src/common.h +++ b/src/common.h @@ -78,6 +78,9 @@ #define NEUTRAL_TEMP 6500 +#define SOLAR_CIVIL_TWILIGHT_ELEV -6.0 + + /** * Truncate a value into a bounded range * diff --git a/src/options.c b/src/options.c index 7629e89..f115fb3 100644 --- a/src/options.c +++ b/src/options.c @@ -17,7 +17,6 @@ * Copyright (c) 2017 Jon Lund Steffensen <jonlst@gmail.com> */ #include "common.h" -#include "solar.h" /* Angular elevation of the sun at which the color temperature transition period starts and ends (in degress). diff --git a/src/redshift.c b/src/redshift.c index 1fb950d..b149754 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -18,7 +18,6 @@ * Copyright (c) 2025 Mattias Andrée <m@maandre.se> */ #include "common.h" -#include "solar.h" /* poll.h is not available on Windows but there is no Windows location provider * using polling. On Windows, we just define some stubs to make things compile. @@ -543,7 +542,9 @@ run_continual_mode(const struct location_provider *provider, transition_prog = get_transition_progress_from_time(scheme, time_offset); } else { /* Current angular elevation of the sun */ - double elevation = solar_elevation(now, loc.lat, loc.lon); + double elevation; + if (libred_solar_elevation(loc.lat, loc.lon, &elevation)) + eprintf("libred_solar_elevation:"); period = get_period_from_elevation(scheme, elevation); transition_prog = get_transition_progress_from_elevation(scheme, elevation); @@ -915,7 +916,9 @@ main(int argc, char *argv[]) transition_prog = get_transition_progress_from_time(scheme, time_offset); } else { /* Current angular elevation of the sun */ - double elevation = solar_elevation(now, loc.lat, loc.lon); + double elevation; + if (libred_solar_elevation(loc.lat, loc.lon, &elevation)) + eprintf("libred_solar_elevation:"); if (options.verbose) { /* TRANSLATORS: Append degree symbol if possible. */ printf(_("Solar elevation: %f\n"), elevation); diff --git a/src/solar.c b/src/solar.c deleted file mode 100644 index d8ece88..0000000 --- a/src/solar.c +++ /dev/null @@ -1,209 +0,0 @@ -/* solar.c -- Solar position source - * This file is part of redshift-ng. - * - * redshift-ng is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * redshift-ng is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with redshift-ng. If not, see <http://www.gnu.org/licenses/>. - * - * Copyright (c) 2010 Jon Lund Steffensen <jonlst@gmail.com> -*/ - -/* Ported from javascript code by U.S. Department of Commerce, - * National Oceanic & Atmospheric Administration: - * http://www.srrb.noaa.gov/highlights/sunrise/calcdetails.html - * It is based on equations from "Astronomical Algorithms" by - * Jean Meeus. */ - -#include "common.h" -#include "solar.h" - -#define RAD(x) ((x)*(M_PI/180)) -#define DEG(x) ((x)*(180/M_PI)) - - - -/* Julian day from unix epoch */ -static double -jd_from_epoch(double t) -{ - return (t / 86400.0) + 2440587.5; -} - -/* Julian centuries since J2000.0 from Julian day */ -static double -jcent_from_jd(double jd) -{ - return (jd - 2451545.0) / 36525.0; -} - -/* Julian day from Julian centuries since J2000.0 */ -static double -jd_from_jcent(double t) -{ - return 36525.0*t + 2451545.0; -} - -/* Geometric mean longitude of the sun. - t: Julian centuries since J2000.0 - Return: Geometric mean logitude in radians. */ -static double -sun_geom_mean_lon(double t) -{ - /* FIXME returned value should always be positive */ - return RAD(fmod(280.46646 + t*(36000.76983 + t*0.0003032), 360)); -} - -/* Geometric mean anomaly of the sun. - t: Julian centuries since J2000.0 - Return: Geometric mean anomaly in radians. */ -static double -sun_geom_mean_anomaly(double t) -{ - return RAD(357.52911 + t*(35999.05029 - t*0.0001537)); -} - -/* Eccentricity of earth orbit. - t: Julian centuries since J2000.0 - Return: Eccentricity (unitless). */ -static double -earth_orbit_eccentricity(double t) -{ - return 0.016708634 - t*(0.000042037 + t*0.0000001267); -} - -/* Equation of center of the sun. - t: Julian centuries since J2000.0 - Return: Center(?) in radians */ -static double -sun_equation_of_center(double t) -{ - /* Use the first three terms of the equation. */ - double m = sun_geom_mean_anomaly(t); - double c = sin(m)*(1.914602 - t*(0.004817 + 0.000014*t)) + - sin(2*m)*(0.019993 - 0.000101*t) + - sin(3*m)*0.000289; - return RAD(c); -} - -/* True longitude of the sun. - t: Julian centuries since J2000.0 - Return: True longitude in radians */ -static double -sun_true_lon(double t) -{ - double l_0 = sun_geom_mean_lon(t); - double c = sun_equation_of_center(t); - return l_0 + c; -} - -/* Apparent longitude of the sun. (Right ascension). - t: Julian centuries since J2000.0 - Return: Apparent longitude in radians */ -static double -sun_apparent_lon(double t) -{ - double o = sun_true_lon(t); - return RAD(DEG(o) - 0.00569 - 0.00478*sin(RAD(125.04 - 1934.136*t))); -} - -/* Mean obliquity of the ecliptic - t: Julian centuries since J2000.0 - Return: Mean obliquity in radians */ -static double -mean_ecliptic_obliquity(double t) -{ - double sec = 21.448 - t*(46.815 + t*(0.00059 - t*0.001813)); - return RAD(23.0 + (26.0 + (sec/60.0))/60.0); -} - -/* Corrected obliquity of the ecliptic. - t: Julian centuries since J2000.0 - Return: Currected obliquity in radians */ -static double -obliquity_corr(double t) -{ - double e_0 = mean_ecliptic_obliquity(t); - double omega = 125.04 - t*1934.136; - return RAD(DEG(e_0) + 0.00256*cos(RAD(omega))); -} - -/* Declination of the sun. - t: Julian centuries since J2000.0 - Return: Declination in radians */ -static double -solar_declination(double t) -{ - double e = obliquity_corr(t); - double lambda = sun_apparent_lon(t); - return asin(sin(e)*sin(lambda)); -} - -/* Difference between true solar time and mean solar time. - t: Julian centuries since J2000.0 - Return: Difference in minutes */ -static double -equation_of_time(double t) -{ - double epsilon = obliquity_corr(t); - double l_0 = sun_geom_mean_lon(t); - double e = earth_orbit_eccentricity(t); - double m = sun_geom_mean_anomaly(t); - double y = pow(tan(epsilon/2.0), 2.0); - - double eq_time = y*sin(2*l_0) - 2*e*sin(m) + - 4*e*y*sin(m)*cos(2*l_0) - - 0.5*y*y*sin(4*l_0) - - 1.25*e*e*sin(2*m); - return 4*DEG(eq_time); -} - -/* Angular elevation at the location for the given hour angle. - lat: Latitude of location in degrees - decl: Declination in radians - ha: Hour angle in radians - Return: Angular elevation in radians */ -static double -elevation_from_hour_angle(double lat, double decl, double ha) -{ - return asin(cos(ha)*cos(RAD(lat))*cos(decl) + - sin(RAD(lat))*sin(decl)); -} - -/* Solar angular elevation at the given location and time. - t: Julian centuries since J2000.0 - lat: Latitude of location - lon: Longitude of location - Return: Solar angular elevation in radians */ -static double -solar_elevation_from_time(double t, double lat, double lon) -{ - /* Minutes from midnight */ - double jd = jd_from_jcent(t); - double offset = (jd - round(jd) - 0.5)*1440.0; - - double eq_time = equation_of_time(t); - double ha = RAD((720 - offset - eq_time)/4 - lon); - double decl = solar_declination(t); - return elevation_from_hour_angle(lat, decl, ha); -} - -/* Solar angular elevation at the given location and time. - date: Seconds since unix epoch - lat: Latitude of location - lon: Longitude of location - Return: Solar angular elevation in degrees */ -double -solar_elevation(double date, double lat, double lon) -{ - double jd = jd_from_epoch(date); - return DEG(solar_elevation_from_time(jcent_from_jd(jd), lat, lon)); -} diff --git a/src/solar.h b/src/solar.h deleted file mode 100644 index fc9d8fc..0000000 --- a/src/solar.h +++ /dev/null @@ -1,27 +0,0 @@ -/* solar.h -- Solar position header - * This file is part of redshift-ng. - * - * redshift-ng is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * redshift-ng is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with redshift-ng. If not, see <http://www.gnu.org/licenses/>. - * - * Copyright (c) 2010 Jon Lund Steffensen <jonlst@gmail.com> - */ -#ifndef REDSHIFT_SOLAR_H -#define REDSHIFT_SOLAR_H - - -#define SOLAR_CIVIL_TWILIGHT_ELEV -6.0 - -double solar_elevation(double date, double lat, double lon); - -#endif /* ! REDSHIFT_SOLAR_H */ |