-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.cs
More file actions
executable file
·30 lines (27 loc) · 2.55 KB
/
Copy pathConstants.cs
File metadata and controls
executable file
·30 lines (27 loc) · 2.55 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ReflectedLightAnalysis
{
class Constants
{
public double[,] angleSun = {
{-23.1,-23.0,-22.8,-22.7,-22.6,-22.5,-22.4,-22.3,-22.1,-22.0,-21.8,-21.7,-21.5,-21.4,-21.2,-21.0,-20.8,-20.6,-20.4,-20.2,-20.0,-19.8,-19.5,-19.3,-19.1,-18.8,-18.6,-18.3,-18.0,-17.8,-17.5},
{-17.2,-16.9,-16.6,-16.3,-16.0,-15.7,-15.4,-15.1,-14.8,-14.5,-14.2,-13.8,-13.5,-13.2,-12.8,-12.5,-12.1,-11.8,-11.4,-11.0,-10.7,-10.4,-10.0,-9.60,-9.30,-8.90,-8.50,-8.10,0,0,0},
{-7.80,-7.40,-7.00,-6.60,-6.20,-5.80,-5.40,-5.10,-4.70,-4.30,-3.90,-3.50,-3.10,-2.70,-2.30,-1.90,-1.50,-1.10,-0.80,-0.40,0.00,0.40,0.80,1.30,1.70,2.10,2.46,2.80,3.20,3.60,4.00},
{4.30,4.70,5.10,5.50,5.90,6.30,6.60,7.00,7.40,7.80,8.10,8.50,8.90,9.20,9.60,10.0,10.3,10.7,11.0,11.4,11.7,12.1,12.4,12.7,13.0,13.4,13.6,14.0,14.4,14.7,0},
{15.0,15.3,15.6,15.9,16.2,16.4,16.7,17.2,17.2,17.5,17.8,18.0,18.3,18.5,18.8,19.0,19.2,19.5,19.7,19.9,20.1,20.3,20.5,20.6,20.8,21.1,21.2,21.4,21.0,21.7,21.9},
{22.0,22.2,22.3,22.4,22.5,22.6,22.7,22.8,22.9,23.0,23.1,23.2,23.2,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.3,23.3,23.3,0},
{23.1,23.1,23.0,22.9,22.8,22.7,22.6,22.5,22.4,22.3,22.2,22.0,21.9,21.7,21.6,21.5,21.3,21.1,20.9,20.7,20.5,20.3,20.1,19.9,19.7,19.5,19.3,19.1,18.9,18.6,18.4},
{18.2,17.9,17.6,17.4,17.1,16.8,16.5,16.3,16.1,15.7,15.4,15.1,14.8,14.5,14.2,13.9,13.5,13.2,12.9,12.6,12.3,11.9,11.6,11.2,10.9,10.6,10.2,9.90,9.50,9.20,8.80},
{8.40,8.10,7.70,7.40,7.00,6.60,6.20,5.90,5.50,5.10,4.70,4.40,4.00,3.60,3.20,2.80,2.50,2.10,1.70,1.30,0.90,0.50,0.10,0.00,-0.60,-1.10,-1.50,-1.90,-2.20,-2.60,0},
{-3.00,-3.40,-3.80,-4.10,-4.50,-4.90,-5.30,-5.79,-6.10,-6.50,-6.80,-7.20,-7.60,-8.00,-8.30,-8.70,-9.10,-9.40,-9.80,-10.2,-10.5,-11.0,-11.3,-11.6,-12.0,-12.3,-12.6,-13.0,-13.3,-13.7,-14.0},
{-14.3,-14.6,-15.0,-15.3,-15.6,-15.9,-16.2,-16.5,-16.7,-17.0,-17.3,-17.6,-17.9,-18.1,-18.4,-18.6,-18.9,-19.1,-19.4,-19.6,-19.8,-20.1,-20.3,-20.5,-20.7,-20.9,-21.1,-21.3,-21.4,-21.6,0},
{-21.8,-21.9,-22.1,-22.2,-22.3,-22.4,-22.6,-22.7,-22.8,-22.9,-23.0,-23.1,-23.1,-23.2,-23.3,-23.3,-23.4,-23.4,-23.4,-23.4,-23.4,-23.4,-23.4,-23.4,-23.4,-23.4,-23.3,-23.3,-23.3,-23.2,-23.2}
};
public int[] colorArray = { 0, 0, 0, 0, 0, 0, 92, 140, 2, 154, 226, 214, 223, 242, 1, 30, 114, 64, 31 };
public string[] clocks = { "06:00", "07:00", "08:00","09:00","10:00","11:00",
"12:00", "13:00", "14:00","15:00","16:00","17:00","18:00"};
}
}