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

Comparing ray/src/util/wrapBSDF.c (file contents):
Revision 2.15 by greg, Fri May 29 07:16:49 2015 UTC vs.
Revision 2.26 by greg, Mon Oct 26 21:12:20 2020 UTC

# Line 7 | Line 7 | static const char RCSid[] = "$Id$";
7   *      G. Ward         February 2015
8   */
9  
10 + #include "platform.h"
11   #include <ctype.h>
12   #include "rtio.h"
13 < #include "rtprocess.h"
13 > #include "paths.h"
14   #include "ezxml.h"
15   #include "bsdf.h"
16   #include "bsdf_m.h"
# Line 25 | Line 26 | const char     *attr_unit = "meter";
26   const char      legal_units[] = "meter|foot|inch|centimeter|millimeter";
27                                          /* system materials & geometry */
28   const char      *mgf_geometry = NULL;
29 <
29 >                                        /* comment list */
30 > #define MAXCOMM         80
31 > const char      *commlist[MAXCOMM];
32 > int             ncomm = 0;
33                                          /* angle bases */
34   enum { ABdefault=-1, ABklemsFull=0, ABklemsHalf, ABklemsQuarter,
35                  ABtensorTree3, ABtensorTree4, ABend };
# Line 48 | Line 52 | struct s_fieldID {
52   } XMLfieldID[] = {
53          {"m", 0, 1, "Manufacturer"},
54          {"n", 0, 1, "Name"},
55 +        {"d", 0, 0, "DeviceType"},
56          {"c", 0, 0, "ThermalConductivity"},
57          {"ef", 0, 0, "EmissivityFront"},
58          {"eb", 0, 0, "EmissivityBack"},
# Line 59 | Line 64 | struct s_fieldID {
64          {"\0", 0, 0, NULL}      /* terminator */
65   };
66                                          /* field assignments */
67 < #define MAXASSIGN       12
67 > #define MAXASSIGN       16
68   const char      *field_assignment[MAXASSIGN];
69   int             nfield_assign = 0;
70   #define FASEP   ';'
71                                          /* data file(s) & spectra */
72 < enum { DTtransForward, DTtransBackward, DTreflForward, DTreflBackward };
72 > enum { DTransFront, DTransBack, DTreflFront, DTreflBack };
73  
74 + static const char       component_name[4][20] = {
75 +                "Transmission Front",
76 +                "Transmission Back",
77 +                "Reflection Front",
78 +                "Reflection Back"
79 + };
80 +
81   enum { DSsolar=-1, DSnir=-2, DSxbar31=-3, DSvisible=-4, DSzbar31=-5,
82          DSuprime=-6, DSvprime=-7 };
83  
# Line 79 | Line 91 | struct s_dfile {
91  
92   int             ndataf = 0;             /* number of data files */
93  
94 + int             unlink_datafiles = 0;   /* unlink data files when done */
95 +
96   const char      *spectr_file[MAXFILES]; /* custom spectral curve input */
97  
98   const char      top_level_name[] = "WindowElement";
# Line 115 | Line 129 | static char    basis_definition[][256] = {
129          "\t</DataDefinition>\n",
130   };
131  
132 + /* Check that the last-added data file is unique */
133 + static int
134 + check_new_data_file()
135 + {
136 +        int     i = ndataf;
137 +
138 +        while (i-- > 0)
139 +                if ((data_file[i].spectrum == data_file[ndataf].spectrum) &
140 +                                (data_file[i].type == data_file[ndataf].type)) {
141 +                        fprintf(stderr,
142 +                                "%s: warning - ignoring duplicate component %s\n",
143 +                                        data_file[ndataf].fname,
144 +                                        component_name[data_file[i].type]);
145 +                        return 0;
146 +                }
147 +        return 1;
148 + }
149 +
150   /* Copy data from file descriptor to stdout and close */
151   static int
152   copy_and_close(int fd)
# Line 160 | Line 192 | input2str(const char *inpspec)
192                          fprintf(stderr, "%s: cannot open\n", inpspec);
193                          return "";
194                  }
195 < #ifndef _WIN32                          /* XXX somehow broken on Windows */
195 > #if !defined(_WIN32) && !defined(_WIN64)
196 >                                /* XXX somehow broken on Windows */
197                  len = lseek(fd, 0L, SEEK_END);
198                  if (len > 0) {
199                          lseek(fd, 0L, SEEK_SET);
# Line 388 | Line 421 | determine_angle_basis(const char *fn, ezxml_t wtl)
421   static int
422   filter_klems_matrix(FILE *fp)
423   {
391 #define MAX_COLUMNS     145
424          const char      *bn = klems_basis_name[angle_basis];
393        float           col_corr[MAX_COLUMNS];
425          int             i, j, n = nabases;
426                                          /* get angle basis */
427          while (n-- > 0)
# Line 398 | Line 429 | filter_klems_matrix(FILE *fp)
429                          break;
430          if (n < 0)
431                  return 0;
401        if (abase_list[n].nangles > MAX_COLUMNS) {
402                fputs("Internal error - too many Klems columns!\n", stderr);
403                return 0;
404        }
405                                        /* get correction factors */
406        for (j = abase_list[n].nangles; j--; )
407                col_corr[j] = 1.f / io_getohm(j, &abase_list[n]);
432                                          /* read/correct/write matrix */
433          for (i = 0; i < abase_list[n].nangles; i++) {
434 +            const double        corr = 1./io_getohm(i, &abase_list[n]);
435              for (j = 0; j < abase_list[n].nangles; j++) {
436                  double  d;
437                  if (fscanf(fp, "%lf", &d) != 1)
# Line 415 | Line 440 | filter_klems_matrix(FILE *fp)
440                          fputs("Negative BSDF data!\n", stderr);
441                          return 0;
442                  }
443 <                printf(" %.3e", d*col_corr[j]*(d > 0));
443 >                printf(" %.3e", d*corr*(d > 0));
444              }
445              fputc('\n', stdout);
446          }
# Line 425 | Line 450 | filter_klems_matrix(FILE *fp)
450                          return 0;
451                  }
452          return 1;                       /* all is good */
428 #undef MAX_COLUMNS
453   }
454  
455   /* Write out BSDF data block with surrounding tags */
# Line 486 | Line 510 | writeBSDFblock(const char *caller, struct s_dfile *df)
510          }
511          puts("\t\t<WavelengthDataBlock>");
512          fputs("\t\t\t<WavelengthDataDirection>", stdout);
513 <        switch (df->type) {
490 <        case DTtransForward:
491 <                fputs("Transmission Front", stdout);
492 <                break;
493 <        case DTtransBackward:
494 <                fputs("Transmission Back", stdout);
495 <                break;
496 <        case DTreflForward:
497 <                fputs("Reflection Front", stdout);
498 <                break;
499 <        case DTreflBackward:
500 <                fputs("Reflection Back", stdout);
501 <                break;
502 <        default:
503 <                fprintf(stderr, "%s: internal - bad BSDF type (%d)\n", caller, df->type);
504 <                return 0;
505 <        }
513 >        fputs(component_name[df->type], stdout);
514          puts("</WavelengthDataDirection>");
515          switch (angle_basis) {
516          case ABklemsFull:
# Line 586 | Line 594 | writeBSDF(const char *caller, ezxml_t fl)
594                  return 0;
595          }
596          puts("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
597 +        for (i = 0; i < ncomm; i++)
598 +                printf("<!-- %s -->\n", commlist[i]);
599          fflush(stdout);                         /* write previous XML info. */
600          if (write(fileno(stdout), xml, ei) != ei) {
601                  free(xml);
# Line 599 | Line 609 | writeBSDF(const char *caller, ezxml_t fl)
609          fputs(xml+ei, stdout);                  /* write trailer */
610          free(xml);                              /* free string */
611          fputc('\n', stdout);
612 <        return (fflush(stdout) == 0);
612 >        if (fflush(stdout) != 0)
613 >                return 0;
614 >                                                /* unlink data files if req. */
615 >        for (i = ndataf*(unlink_datafiles != 0); i--; )
616 >                if (data_file[i].fname != stdin_name &&
617 >                                data_file[i].fname[0] != '!')
618 >                        unlink(data_file[i].fname);
619 >        if (unlink_datafiles > 1 && mgf_geometry != NULL &&
620 >                        mgf_geometry != stdin_name &&
621 >                        mgf_geometry[0] != '!')
622 >                unlink(mgf_geometry);
623 >        return 1;
624   }
625  
626   /* Insert BSDF data into XML wrapper */
# Line 718 | Line 739 | UsageExit(const char *pname)
739          fputs("Usage: ", stderr);
740          fputs(pname, stderr);
741          fputs(" [-W][-c][-a {kf|kh|kq|t3|t4}][-u unit][-g geom][-f 'x=string;y=string']", stderr);
742 <        fputs(" [-s spectr][-tb inp][-tf inp][-rb inp][-rf inp]", stderr);
742 >        fputs(" [-s spectr][-tb inp][-tf inp][-rb inp][-rf inp][-C comm]", stderr);
743          fputs(" [input.xml]\n", stderr);
744          exit(1);
745   }
# Line 763 | Line 784 | main(int argc, char *argv[])
784                          }
785                          attr_unit = argv[i];
786                          continue;
787 +                case 'U':               /* unlink data files when done */
788 +                        unlink_datafiles = 1 + (argv[i][2] == 'U');
789 +                        continue;
790                  case 'a':               /* angle basis */
791                          if (++i >= argc)
792                                  UsageExit(argv[0]);
# Line 787 | Line 811 | main(int argc, char *argv[])
811                  case 'c':               /* correct solid angle */
812                          correct_solid_angle = 1;
813                          continue;
814 +                case 'C':               /* comment */
815 +                        if (ncomm >= MAXCOMM) {
816 +                                fprintf(stderr, "%s: too many comments\n",
817 +                                                argv[0]);
818 +                                return 1;
819 +                        }
820 +                        if (strstr(argv[++i], "-->") != NULL) {
821 +                                fprintf(stderr, "%s: illegal character in comment\n",
822 +                                                argv[0]);
823 +                                return 1;
824 +                        }
825 +                        commlist[ncomm++] = argv[i];
826 +                        continue;
827                  case 't':               /* transmission */
828                          if (i >= argc-1)
829                                  UsageExit(argv[0]);
# Line 796 | Line 833 | main(int argc, char *argv[])
833                                  return 1;
834                          }
835                          if (!strcmp(argv[i], "-tf"))
836 <                                data_file[ndataf].type = DTtransForward;
836 >                                data_file[ndataf].type = DTransFront;
837                          else if (!strcmp(argv[i], "-tb"))
838 <                                data_file[ndataf].type = DTtransBackward;
838 >                                data_file[ndataf].type = DTransBack;
839                          else
840                                  UsageExit(argv[0]);
841                          if (!strcmp(argv[++i], "-")) {
# Line 807 | Line 844 | main(int argc, char *argv[])
844                          }
845                          data_file[ndataf].fname = argv[i];
846                          data_file[ndataf].spectrum = cur_spectrum;
847 <                        ndataf++;
847 >                        ndataf += check_new_data_file();
848                          continue;
849                  case 'r':               /* reflection */
850                          if (i >= argc-1)
# Line 818 | Line 855 | main(int argc, char *argv[])
855                                  return 1;
856                          }
857                          if (!strcmp(argv[i], "-rf"))
858 <                                data_file[ndataf].type = DTreflForward;
858 >                                data_file[ndataf].type = DTreflFront;
859                          else if (!strcmp(argv[i], "-rb"))
860 <                                data_file[ndataf].type = DTreflBackward;
860 >                                data_file[ndataf].type = DTreflBack;
861                          else
862                                  UsageExit(argv[0]);
863                          if (!strcmp(argv[++i], "-")) {
# Line 829 | Line 866 | main(int argc, char *argv[])
866                          }
867                          data_file[ndataf].fname = argv[i];
868                          data_file[ndataf].spectrum = cur_spectrum;
869 <                        ndataf++;
869 >                        ndataf += check_new_data_file();
870                          continue;
871                  case 's':               /* spectrum name or input file */
872                          if (++i >= argc)
# Line 882 | Line 919 | main(int argc, char *argv[])
919                  }
920                  break;
921          }
922 < doneOptions:                                    /* get XML input */
922 >                                                /* get XML input */
923          if (i >= argc) {
924                  if (xml_input == NULL)
925                          xml_input = def_template;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines