This file is indexed.

/usr/share/radiance/blinds.cal is in radiance-materials 4R1+20120125-1.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
	Compute Venetian Blinds angle to exclude direct sun.

	3/19/93

	Formula by Kostantinos Papamichael,
	Translated by Greg Ward and Saba Rofchaei
}
{
	Input variables are solar altitude and azimuth in degrees:

		SALT	- solar altitude (degrees)
		SAZI	- solar azimuth (degrees from South, West is positive)
}

L = .625;    {slat's width}
D = .45833;     {distance between slats}  
ORIENT = 0.0;		{ Window orientation }
DEGREE : PI/180.0;
  
tan_lambda = tan(SALT*DEGREE) / cos((SAZI+ORIENT)*DEGREE);
lambda = atan(tan_lambda) / DEGREE;
a = tan_lambda*tan_lambda + 1.0;
b = -2.0*(D/L);
c = (D/L)*(D/L) - tan_lambda*tan_lambda;

det = sqrt(b*b - 4.0*a*c);

    {calculating slats' angle corresponding to solar position}     
POS1 = asin((-b+det)/(2.0*a)) / DEGREE;
POS2 = asin((-b-det)/(2.0*a)) / DEGREE;