ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/gen/gensky.c
(Generate patch)

Comparing ray/src/gen/gensky.c (file contents):
Revision 2.7 by greg, Fri Oct 2 16:11:53 1992 UTC vs.
Revision 2.11 by greg, Mon Jun 7 14:51:22 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 19 | Line 19 | static char SCCSid[] = "$SunId$ LBL";
19  
20   #include  "color.h"
21  
22 #ifndef atof
23 extern double  atof();
24 #endif
22   extern char  *strcpy(), *strcat(), *malloc();
23   extern double  stadj(), sdec(), sazi(), salt();
24  
# Line 49 | Line 46 | double  gprefl = 0.2;
46   double  sundir[3];
47   double  groundbr;
48   double  F2;
49 < double  solarbr;
49 > double  solarbr = -1.0;
50  
51   char  *progname;
52   char  errmsg[128];
# Line 91 | Line 88 | char  *argv[];
88                                  cloudy = 0;
89                                  dosun = argv[i][0] == '+';
90                                  break;
91 +                        case 'r':
92 +                                solarbr = atof(argv[++i]);
93 +                                break;
94                          case 'c':
95                                  cloudy = argv[i][0] == '+' ? 2 : 1;
96                                  dosun = 0;
# Line 147 | Line 147 | computesky()                   /* compute sky parameters */
147                          st = hour + stadj(jd);
148                  altitude = salt(sd, st);
149                  azimuth = sazi(sd, st);
150 +                printf("# Solar altitude and azimuth: %f %f\n",
151 +                                180./PI*altitude, 180./PI*azimuth);
152          }
153 +        if (!cloudy && altitude > 87.*PI/180.) {
154 +                fprintf(stderr,
155 + "%s: warning - sun too close to zenith, reducing altitude to 87 degrees\n",
156 +                                progname);
157 +                printf(
158 + "# warning - sun too close to zenith, reducing altitude to 87 degrees\n");
159 +                altitude = 87.*PI/180.;
160 +        }
161          sundir[0] = -sin(azimuth)*cos(altitude);
162          sundir[1] = -cos(azimuth)*cos(altitude);
163          sundir[2] = sin(altitude);
# Line 175 | Line 185 | computesky()                   /* compute sky parameters */
185                                  0.45*sundir[2]*sundir[2]);
186                  groundbr = zenithbr*normsc(altitude)/F2/PI;
187                  printf("# Ground ambient level: %f\n", groundbr);
188 <                if (sundir[2] > 0.0) {
189 <                        if (sundir[2] > .16)
190 <                                solarbr = (1.5e9/SUNEFFICACY) *
191 <                                        (1.147 - .147/sundir[2]);
182 <                        else
183 <                                solarbr = 1.5e9/SUNEFFICACY*(1.147-.147/.16);
188 >                if (sundir[2] > 0.0 && solarbr != 0.0) {
189 >                        if (solarbr < 0.0)
190 >                                solarbr = 1.5e9/SUNEFFICACY *
191 >                                (1.147 - .147/(sundir[2]>.16?sundir[2]:.16));
192                          groundbr += solarbr*6e-5*sundir[2]/PI;
193                  } else
194                          dosun = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines