Lines Matching full:dec

100     int inSEC, double eastlongitude, double latitude, double *L, double *DEC)  in sunpos()  argument
134 *DEC = ASIN(SIN(lambda) * SIN(epsilon)); /* 10 */ in sunpos()
135 fixup(DEC); in sunpos()
142 inMM, inDD, inHOUR, inMIN, inSEC, latitude, *DEC, HA); in sunpos()
151 *ALT = ASIN(SIN(latitude) * SIN(*DEC) + in sunpos()
152 COS(latitude) * COS(*DEC) * COS(HA)); /* 13 */ in sunpos()
155 (COS(HA) * SIN(latitude) - TAN(*DEC) * COS(latitude))); /* 14 */ in sunpos()
175 comp("DEC", DEC, fixup(&expDEC)); in sunpos()
193 #define DEBUG1(y, m, d, hh, mm, pdec, dec) \ argument
195 y, m, d, hh, mm, pdec, dec)
196 #define DEBUG2(y, m, d, hh, mm, pdec, dec, pang, ang) \ argument
198 y, m, d, hh, mm, pdec, dec, pang, ang)
214 double dec, prevdec, L; in fequinoxsolstice() local
226 * It happens when the returned value "dec" goes from in fequinoxsolstice()
265 * It happens when the returned value "dec" goes from in fequinoxsolstice()
305 * It happens when the returned value "dec" peaks in fequinoxsolstice()
314 0.0, 0.0, &L, &dec); in fequinoxsolstice()
315 angle = ANGLE(prevdec, dec); in fequinoxsolstice()
319 prevdec, dec, prevangle, angle); in fequinoxsolstice()
326 prevdec = dec; in fequinoxsolstice()
335 * It happens when the returned value "dec" peaks in fequinoxsolstice()
344 0.0, 0.0, &L, &dec); in fequinoxsolstice()
345 angle = ANGLE(prevdec, dec); in fequinoxsolstice()
349 prevdec, dec, prevangle, angle); in fequinoxsolstice()
356 prevdec = dec; in fequinoxsolstice()
370 double dec; in calculatesunlongitude30() local
382 HOUR(h), MIN(h), SEC(h), 0.0, 0.0, &prevL, &dec); in calculatesunlongitude30()
390 0.0, 0.0, &curL, &dec); in calculatesunlongitude30()
425 year Mar June Sept Dec in main()