ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/testBSDF.c
Revision: 1.17
Committed: Tue Dec 7 23:49:50 2021 UTC (2 years, 4 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R4, HEAD
Changes since 1.16: +2 -2 lines
Log Message:
fix: Repaired issue with reciprocity and BSDF sampling, thanks to Jon Sargent

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: testBSDF.c,v 1.16 2021/03/27 17:50:18 greg Exp $";
3 #endif
4 /*
5 * Simple test program to demonstrate BSDF operation.
6 *
7 * G. Ward June 2015
8 */
9
10 #define _USE_MATH_DEFINES
11 #include <stdlib.h>
12 #include <math.h>
13 #include <ctype.h>
14 #include "rtio.h"
15 #include "bsdf.h"
16
17 static void
18 Usage(const char *prog)
19 {
20 printf("Usage: %s [bsdf_directory]\n", prog);
21 printf("Input commands:\n");
22 printf(" L bsdf.xml\t\t\t Load (make active) given BSDF input file\n");
23 printf(" i\t\t\t\t Report general information (metadata)\n");
24 printf(" c\t\t\t\t Report diffuse and specular components\n");
25 printf(" q theta_i phi_i theta_o phi_o\t Query BSDF for given path (CIE-XYZ)\n");
26 printf(" s[r|t][s|d] N theta phi\t Generate N ray directions & colors at given incidence\n");
27 printf(" h[s|d] theta phi\t\t Report hemispherical scattering at given incidence\n");
28 printf(" r[s|d] theta phi\t\t Report hemispherical reflection at given incidence\n");
29 printf(" t[s|d] theta phi\t\t Report hemispherical transmission at given incidence\n");
30 printf(" a theta phi [t2 p2]\t\t Report resolution (in proj. steradians) for given direction(s)\n");
31 printf(" ^D\t\t\t\t Quit program\n");
32 }
33
34 static void
35 vec_from_deg(FVECT v, double theta, double phi)
36 {
37 const double DEG = M_PI/180.;
38
39 theta *= DEG; phi *= DEG;
40 v[0] = v[1] = sin(theta);
41 v[0] *= cos(phi);
42 v[1] *= sin(phi);
43 v[2] = cos(theta);
44 }
45
46 static void
47 printXYZ(const char *intro, const SDValue *vp)
48 {
49 if (vp->cieY <= 1e-9) {
50 printf("%s0 0 0\n", intro);
51 return;
52 }
53 printf("%s%.3e %.3e %.3e\n", intro,
54 vp->spec.cx/vp->spec.cy*vp->cieY,
55 vp->cieY,
56 (1.-vp->spec.cx-vp->spec.cy)/
57 vp->spec.cy*vp->cieY);
58 }
59
60 int
61 main(int argc, char *argv[])
62 {
63 const char *directory = NULL;
64 char inp[512], path[512];
65 const SDData *bsdf = NULL;
66
67 if (argc > 2 || (argc == 2 && argv[1][0] == '-')) {
68 Usage(argv[0]);
69 return 1;
70 }
71 if (argc == 2)
72 directory = argv[1];
73
74 SDretainSet = SDretainBSDFs; /* keep BSDFs in memory */
75
76 /* loop on command */
77 while (fgets(inp, sizeof(inp), stdin)) {
78 int sflags = SDsampAll;
79 char *cp = inp;
80 char *cp2;
81 FVECT vin, vout;
82 double proja[2];
83 int n, i;
84 SDValue val;
85
86 while (isspace(*cp)) cp++;
87
88 switch (toupper(*cp)) {
89 case 'L': /* load/activate BSDF input */
90 cp2 = cp = sskip2(cp, 1);
91 if (!*cp)
92 break;
93 while (*cp) cp++;
94 while (isspace(*--cp)) *cp = '\0';
95 if (directory)
96 sprintf(path, "%s/%s", directory, cp2);
97 else
98 strcpy(path, cp2);
99 if (bsdf)
100 SDfreeCache(bsdf);
101 bsdf = SDcacheFile(path);
102 continue;
103 case 'I': /* report general info. */
104 if (!bsdf)
105 goto noBSDFerr;
106 printf("Material: '%s'\n", bsdf->matn);
107 printf("Manufacturer: '%s'\n", bsdf->makr);
108 printf("Width, Height, Thickness (m): %.4e, %.4e, %.4e\n",
109 bsdf->dim[0], bsdf->dim[1], bsdf->dim[2]);
110 if (bsdf->mgf)
111 printf("Has geometry: %lu bytes\n",
112 (unsigned long)strlen(bsdf->mgf));
113 else
114 printf("Has geometry: no\n");
115 break;
116 case 'C': /* report constant values */
117 if (!bsdf)
118 goto noBSDFerr;
119 if (bsdf->rf)
120 printf("Peak front hemispherical reflectance: %.3e\n",
121 bsdf->rLambFront.cieY +
122 bsdf->rf->maxHemi);
123 if (bsdf->rb)
124 printf("Peak back hemispherical reflectance: %.3e\n",
125 bsdf->rLambBack.cieY +
126 bsdf->rb->maxHemi);
127 if (bsdf->tf)
128 printf("Peak front hemispherical transmittance: %.3e\n",
129 bsdf->tLambFront.cieY + bsdf->tf->maxHemi);
130 if (bsdf->tb)
131 printf("Peak back hemispherical transmittance: %.3e\n",
132 bsdf->tLambBack.cieY + bsdf->tb->maxHemi);
133 printXYZ("Diffuse Front Reflectance: ", &bsdf->rLambFront);
134 printXYZ("Diffuse Back Reflectance: ", &bsdf->rLambBack);
135 printXYZ("Diffuse Front Transmittance: ", &bsdf->tLambFront);
136 printXYZ("Diffuse Back Transmittance: ", &bsdf->tLambBack);
137 break;
138 case 'Q': /* query BSDF value */
139 if (!bsdf)
140 goto noBSDFerr;
141 if (!*sskip2(cp,4))
142 break;
143 vec_from_deg(vin, atof(sskip2(cp,1)), atof(sskip2(cp,2)));
144 vec_from_deg(vout, atof(sskip2(cp,3)), atof(sskip2(cp,4)));
145 if (!SDreportError(SDevalBSDF(&val, vin, vout, bsdf), stderr))
146 printXYZ("", &val);
147 break;
148 case 'S': /* sample BSDF */
149 if (!bsdf)
150 goto noBSDFerr;
151 if (!*sskip2(cp,3))
152 break;
153 if (toupper(cp[1]) == 'R') {
154 sflags &= ~SDsampT;
155 ++cp;
156 } else if (toupper(cp[1]) == 'T') {
157 sflags &= ~SDsampR;
158 ++cp;
159 }
160 if (toupper(cp[1]) == 'S')
161 sflags &= ~SDsampDf;
162 else if (toupper(cp[1]) == 'D')
163 sflags &= ~SDsampSp;
164 i = n = atoi(sskip2(cp,1));
165 vec_from_deg(vin, atof(sskip2(cp,2)), atof(sskip2(cp,3)));
166 while (i-- > 0) {
167 VCOPY(vout, vin);
168 if (SDreportError(SDsampBSDF(&val, vout,
169 (i+rand()*(1./(RAND_MAX+.5)))/(double)n,
170 sflags, bsdf), stderr))
171 break;
172 printf("%.8f %.8f %.8f ", vout[0], vout[1], vout[2]);
173 printXYZ("", &val);
174 }
175 break;
176 case 'H': /* hemispherical values */
177 case 'R':
178 case 'T':
179 if (!bsdf)
180 goto noBSDFerr;
181 if (!*sskip2(cp,2))
182 break;
183 if (toupper(cp[0]) == 'R')
184 sflags &= ~SDsampT;
185 else if (toupper(cp[0]) == 'T')
186 sflags &= ~SDsampR;
187 if (toupper(cp[1]) == 'S')
188 sflags &= ~SDsampDf;
189 else if (toupper(cp[1]) == 'D')
190 sflags &= ~SDsampSp;
191 vec_from_deg(vin, atof(sskip2(cp,1)), atof(sskip2(cp,2)));
192 printf("%.4e\n", SDdirectHemi(vin, sflags, bsdf));
193 break;
194 case 'A': /* resolution in proj. steradians */
195 if (!bsdf)
196 goto noBSDFerr;
197 if (!*sskip2(cp,2))
198 break;
199 vec_from_deg(vin, atof(sskip2(cp,1)), atof(sskip2(cp,2)));
200 if (*sskip2(cp,4)) {
201 vec_from_deg(vout, atof(sskip2(cp,3)), atof(sskip2(cp,4)));
202 if (SDreportError(SDsizeBSDF(proja, vout, vin,
203 SDqueryMin+SDqueryMax, bsdf), stderr))
204 continue;
205 } else if (SDreportError(SDsizeBSDF(proja, vin, NULL,
206 SDqueryMin+SDqueryMax, bsdf), stderr))
207 continue;
208 printf("%.4e %.4e\n", proja[0], proja[1]);
209 break;
210 default:
211 Usage(argv[0]);
212 break;
213 }
214 fflush(stdout); /* in case we're on remote */
215 continue;
216 noBSDFerr:
217 fprintf(stderr, "%s: First, use 'L' command to load BSDF\n", argv[0]);
218 }
219 return 0;
220 }