ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/klems_half.cal
Revision: 1.2
Committed: Mon Jul 21 15:59:47 2014 UTC (9 years, 8 months ago) by greg
Branch: MAIN
CVS Tags: rad4R2P2, rad4R2, rad4R2P1
Changes since 1.1: +2 -2 lines
Log Message:
Getting close to working version of rfluxmtx

File Contents

# Content
1 { RCSid $Id: klems_half.cal,v 1.1 2014/07/19 00:28:38 greg Exp $ }
2 {
3 Compute interior bin for half Klems BSDF basis (0-72)
4 Returns -1 for wrong-side rays
5
6 Modified from klems_full.cal
7
8 7/18/2014 G. Ward
9 }
10 DEGREE : PI/180;
11 Acos(x) : if(x-1, 0, if(-1-x, PI, acos(x))) / DEGREE;
12 posangle(a) : if(-a, a + 2*PI, a) / DEGREE;
13 Atan2(y,x) : posangle(atan2(y,x));
14
15 khpola(r) : select(r, 6.5, 19.5, 32.5, 46.5, 61.5, 76.5, 90);
16 khnaz(r) : select(r, 1, 8, 12, 16, 20, 12, 4);
17 khaccum(r) : if(r-.5, khnaz(r) + khaccum(r-1), 0);
18 khfindrow(r, pol) : if(r-khpola(0)+.5, r,
19 if(pol-khpola(r), khfindrow(r+1, pol), r) );
20
21 khazn(azi,inc) : if((360-.5*inc)-azi, floor((azi+.5*inc)/inc), 0);
22
23 khbin2(pol,azi) = if(pol-90, -1,
24 select(khfindrow(1, pol),
25 khazn(azi,360/khnaz(1)),
26 khaccum(1) + khazn(azi,360/khnaz(2)),
27 khaccum(2) + khazn(azi,360/khnaz(3)),
28 khaccum(3) + khazn(azi,360/khnaz(4)),
29 khaccum(4) + khazn(azi,360/khnaz(5)),
30 khaccum(5) + khazn(azi,360/khnaz(6)),
31 khaccum(6) + khazn(azi,360/khnaz(7)),
32 khaccum(7) + khazn(azi,360/khnaz(8))
33 ) );
34
35 khbin(Nx,Ny,Nz,Ux,Uy,Uz) = khbin2(Acos(-Dx*Nx-Dy*Ny-Dz*Nz),
36 Atan2(-Dx*Ux-Dy*Uy-Dz*Uz + (Nx*Dx+Ny*Dy+Nz*Dz)*(Nx*Ux+Ny*Uy+Nz*Uz),
37 -Dx*(Uy*Nz-Uz*Ny) - Dy*(Uz*Nx-Ux*Nz) - Dz*(Ux*Ny-Uy*Nx)));
38
39 Nkhbins : khaccum(khnaz(0)); { Number of bins for one elevation }