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

Comparing ray/src/gen/gendaymtx.c (file contents):
Revision 2.9 by greg, Sat Feb 9 00:20:24 2013 UTC vs.
Revision 2.14 by greg, Fri May 30 00:00:54 2014 UTC

# Line 86 | Line 86 | static const char RCSid[] = "$Id$";
86   #include <string.h>
87   #include <ctype.h>
88   #include "rtmath.h"
89 + #include "platform.h"
90   #include "color.h"
91  
92   char *progname;                                                         /* Program name */
# Line 108 | Line 109 | double sky_clearness;                  /* Sky clearness */
109   double solar_rad;                       /* Solar radiance */
110   double sun_zenith;                      /* Sun zenith angle (radians) */
111   int     input = 0;                              /* Input type */
112 + int     output = 0;                             /* Output type */
113  
114   extern double dmax( double, double );
115   extern double CalcAirMass();
# Line 208 | Line 210 | static const CategoryBounds SkyClearCat[8] =
210          { 1.950, 2.800 },
211          { 2.800, 4.500 },
212          { 4.500, 6.200 },
213 <        { 6.200, 12.00 }        /* Clear */
213 >        { 6.200, 12.01 }        /* Clear */
214   };
215  
216   /* Luminous efficacy model coefficients */
# Line 247 | Line 249 | static const ModelCoeff DirectLumEff[8] =
249   };
250  
251   #ifndef NSUNPATCH
252 < #define NSUNPATCH       4               /* # patches to spread sun into */
252 > #define NSUNPATCH       4               /* max. # patches to spread sun into */
253   #endif
254  
255   extern int jdate(int month, int day);
# Line 260 | Line 262 | extern double  s_latitude;
262   extern double  s_longitude;
263   extern double  s_meridian;
264  
265 + int             nsuns = NSUNPATCH;      /* number of sun patches to use */
266 + double          fixed_sun_sa = -1;      /* fixed solid angle per sun? */
267 +
268   int             verbose = 0;            /* progress reports to stderr? */
269  
270   int             outfmt = 'a';           /* output format */
# Line 288 | Line 293 | extern int     rh_init(void);
293   extern float *  resize_dmatrix(float *mtx_data, int nsteps, int npatch);
294   extern void     AddDirect(float *parr);
295  
296 +
297 + static const char *
298 + getfmtname(int fmt)
299 + {
300 +        switch (fmt) {
301 +        case 'a':
302 +                return("ascii");
303 +        case 'f':
304 +                return("float");
305 +        case 'd':
306 +                return("double");
307 +        }
308 +        return("unknown");
309 + }
310 +
311 +
312   int
313   main(int argc, char *argv[])
314   {
315          char    buf[256];
316 +        int     doheader = 1;           /* output header? */
317          double  rotation = 0;           /* site rotation (degrees) */
318          double  elevation;              /* site elevation (meters) */
319          int     dir_is_horiz;           /* direct is meas. on horizontal? */
# Line 316 | Line 338 | main(int argc, char *argv[])
338                  case 'v':                       /* verbose progress reports */
339                          verbose++;
340                          break;
341 +                case 'h':                       /* turn off header */
342 +                        doheader = 0;
343 +                        break;
344                  case 'o':                       /* output format */
345                          switch (argv[i][2]) {
346                          case 'f':
# Line 327 | Line 352 | main(int argc, char *argv[])
352                                  goto userr;
353                          }
354                          break;
355 +                case 'O':                       /* output type */
356 +                        switch (argv[i][2]) {
357 +                        case '0':
358 +                                output = 0;
359 +                                break;
360 +                        case '1':
361 +                                output = 1;
362 +                                break;
363 +                        default:
364 +                                goto userr;
365 +                        }
366 +                        if (argv[i][3])
367 +                                goto userr;
368 +                        break;
369                  case 'm':                       /* Reinhart subdivisions */
370                          rhsubdiv = atoi(argv[++i]);
371                          break;
# Line 350 | Line 389 | main(int argc, char *argv[])
389                                  goto userr;
390                          rotation = atof(argv[++i]);
391                          break;
392 +                case '5':                       /* 5-phase calculation */
393 +                        nsuns = 1;
394 +                        fixed_sun_sa = 6.797e-05;
395 +                        break;
396                  default:
397                          goto userr;
398                  }
# Line 456 | Line 499 | main(int argc, char *argv[])
499                          break;
500                  }
501                                          /* write out matrix */
502 +        if (outfmt != 'a')
503 +                SET_FILE_BINARY(stdout);
504   #ifdef getc_unlocked
505          flockfile(stdout);
506   #endif
507          if (verbose)
508                  fprintf(stderr, "%s: writing %smatrix with %d time steps...\n",
509                                  progname, outfmt=='a' ? "" : "binary ", ntsteps);
510 +        if (doheader) {
511 +                newheader("RADIANCE", stdout);
512 +                printargs(argc, argv, stdout);
513 +                printf("LATLONG= %.8f %.8f\n", RadToDeg(s_latitude),
514 +                                        -RadToDeg(s_longitude));
515 +                printf("NROWS=%d\n", nskypatch);
516 +                printf("NCOLS=%d\n", ntsteps);
517 +                printf("NCOMP=3\n");
518 +                fputformat(getfmtname(outfmt), stdout);
519 +                putchar('\n');
520 +        }
521                                          /* patches are rows (outer sort) */
522          for (i = 0; i < nskypatch; i++) {
523                  mtx_offset = 3*i;
# Line 503 | Line 559 | main(int argc, char *argv[])
559                  fprintf(stderr, "%s: done.\n", progname);
560          exit(0);
561   userr:
562 <        fprintf(stderr, "Usage: %s [-v][-d|-s][-r deg][-m N][-g r g b][-c r g b][-o{f|d}] [tape.wea]\n",
562 >        fprintf(stderr, "Usage: %s [-v][-h][-d|-s][-r deg][-m N][-g r g b][-c r g b][-o{f|d}][-O{0|1}] [tape.wea]\n",
563                          progname);
564          exit(1);
565   fmterr:
# Line 562 | Line 618 | ComputeSky(float *parr)
618  
619                  /* Limit sky brightness */
620                  if (sky_brightness < 0.01)
621 <                        sky_brightness = 0.01;
621 >                        sky_brightness = 0.01;
622  
623                  /* Calculate illuminance */
624                  index = GetCategoryIndex();
# Line 575 | Line 631 | ComputeSky(float *parr)
631                  index = CalcSkyParamFromIllum();
632          }
633  
634 +        if (output == 1) {                      /* hack for solar radiance */
635 +                diff_illum = diff_irrad * WHTEFFICACY;
636 +                dir_illum = dir_irrad * WHTEFFICACY;
637 +        }
638 +
639          if (bright(skycolor) <= 1e-4) {                 /* 0 sky component? */
640                  memset(parr, 0, sizeof(float)*3*nskypatch);
641                  return;
# Line 595 | Line 656 | ComputeSky(float *parr)
656          /* Calculate relative horizontal illuminance */
657          norm_diff_illum = CalcRelHorzIllum(parr);
658  
659 +        /* Check for zero sky -- make uniform in that case */
660 +        if (norm_diff_illum <= FTINY) {
661 +                for (i = 1; i < nskypatch; i++)
662 +                        setcolor(parr+3*i, 1., 1., 1.);
663 +                norm_diff_illum = PI;
664 +        }
665          /* Normalization coefficient */
666          norm_diff_illum = diff_illum / norm_diff_illum;
667  
# Line 617 | Line 684 | AddDirect(float *parr)
684  
685          if (dir_illum <= 1e-4 || bright(suncolor) <= 1e-4)
686                  return;
687 <                                        /* identify NSUNPATCH closest patches */
688 <        for (i = NSUNPATCH; i--; )
687 >                                        /* identify nsuns closest patches */
688 >        if (nsuns > NSUNPATCH)
689 >                nsuns = NSUNPATCH;
690 >        else if (nsuns <= 0)
691 >                nsuns = 1;
692 >        for (i = nsuns; i--; )
693                  near_dprod[i] = -1.;
694          vector(svec, altitude, azimuth);
695          for (p = 1; p < nskypatch; p++) {
# Line 626 | Line 697 | AddDirect(float *parr)
697                  double  dprod;
698                  rh_vector(pvec, p);
699                  dprod = DOT(pvec, svec);
700 <                for (i = 0; i < NSUNPATCH; i++)
700 >                for (i = 0; i < nsuns; i++)
701                          if (dprod > near_dprod[i]) {
702 <                                for (j = NSUNPATCH; --j > i; ) {
702 >                                for (j = nsuns; --j > i; ) {
703                                          near_dprod[j] = near_dprod[j-1];
704                                          near_patch[j] = near_patch[j-1];
705                                  }
# Line 638 | Line 709 | AddDirect(float *parr)
709                          }
710          }
711          wtot = 0;                       /* weight by proximity */
712 <        for (i = NSUNPATCH; i--; )
712 >        for (i = nsuns; i--; )
713                  wtot += wta[i] = 1./(1.002 - near_dprod[i]);
714                                          /* add to nearest patch radiances */
715 <        for (i = NSUNPATCH; i--; ) {
715 >        for (i = nsuns; i--; ) {
716                  float   *pdest = parr + 3*near_patch[i];
717 <                float   val_add = wta[i] * dir_illum /
718 <                                (WHTEFFICACY * wtot * rh_dom[near_patch[i]]);
717 >                float   val_add = wta[i] * dir_illum / (WHTEFFICACY * wtot);
718 >
719 >                val_add /= (fixed_sun_sa > 0)   ? fixed_sun_sa
720 >                                                : rh_dom[near_patch[i]] ;
721                  *pdest++ += val_add*suncolor[0];
722                  *pdest++ += val_add*suncolor[1];
723                  *pdest++ += val_add*suncolor[2];
# Line 788 | Line 861 | double CalcSkyClearness()
861          double sz_cubed;        /* Sun zenith angle cubed */
862  
863          /* Calculate sun zenith angle cubed */
864 <        sz_cubed = pow(sun_zenith, 3.0);
864 >        sz_cubed = sun_zenith*sun_zenith*sun_zenith;
865  
866          return ((diff_irrad + dir_irrad) / diff_irrad + 1.041 *
867                          sz_cubed) / (1.0 + 1.041 * sz_cubed);
# Line 819 | Line 892 | double CalcDiffuseIrradiance()
892   double CalcDirectIrradiance()
893   {
894          return CalcDiffuseIrradiance() * ((sky_clearness - 1.0) * (1 + 1.041
895 <                        * pow(sun_zenith, 3.0)));
895 >                        * sun_zenith*sun_zenith*sun_zenith));
896   }
897  
898   /* Calculate sky brightness and clearness from illuminance values */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines