source: trunk/FACT++/src/makedata.cc@ 17689

Last change on this file since 17689 was 17653, checked in by tbretz, 11 years ago
Renormalized the relative nergy threshold to 1 at best conditions.
File size: 6.5 KB
Line 
1#include "externals/nova.h"
2
3#include "Database.h"
4
5#include "Time.h"
6#include "Configuration.h"
7
8using namespace std;
9using namespace Nova;
10
11// ========================================================================
12// ========================================================================
13// ========================================================================
14
15void SetupConfiguration(Configuration &conf)
16{
17 po::options_description control("Smart FACT");
18 control.add_options()
19 ("source-name", var<string>(), "Source name")
20 ("date-time", var<string>(), "SQL time (UTC)")
21 ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database.")
22 ("max-current", var<double>(75), "Maximum current to display in other plots.")
23 ("max-zd", var<double>(75), "Maximum zenith distance to display in other plots")
24 ("no-limits", po_switch(), "Switch off limits in plots")
25 ;
26
27 po::positional_options_description p;
28 p.add("source-name", 1); // The 1st positional options
29 p.add("date-time", 2); // The 2nd positional options
30
31 conf.AddOptions(control);
32 conf.SetArgumentPositions(p);
33}
34
35void PrintUsage()
36{
37 cout <<
38 "makedata - The astronomy data listing\n"
39 "\n"
40// "Calculates several plots for the sources in the database\n"
41// "helpful or needed for scheduling. The Plot is always calculated\n"
42// "for the night which starts at the same so. So no matter if\n"
43// "you specify '1974-09-09 00:00:00' or '1974-09-09 21:56:00'\n"
44// "the plots will refer to the night 1974-09-09/1974-09-10.\n"
45// "The advantage is that specification of the date as in\n"
46// "1974-09-09 is enough. Time axis starts and ends at nautical\n"
47// "twilight which is 12deg below horizon.\n"
48// "\n"
49 "Usage: makedata sql-datetime [--ra={ra} --dec={dec}]\n";
50 cout << endl;
51}
52
53int main(int argc, const char* argv[])
54{
55 Configuration conf(argv[0]);
56 conf.SetPrintUsage(PrintUsage);
57 SetupConfiguration(conf);
58
59 if (!conf.DoParse(argc, argv))
60 return 127;
61/*
62 if (!conf.Has("source-name"))
63 {
64 cout << "ERROR - --source-name missing." << endl;
65 return 1;
66 }
67*/
68 // ------------------ Eval config ---------------------
69
70 Time time;
71 if (conf.Has("date-time"))
72 time.SetFromStr(conf.Get<string>("date-time"));
73
74 const double max_current = conf.Get<double>("max-current");
75 const double max_zd = conf.Get<double>("max-zd");
76 const double no_limits = conf.Get<bool>("no-limits");
77
78 // -12: nautical
79 const RstTime sun_set = GetSolarRst(time.JD()-0.5, -12); // Sun set with the same date than th provided date
80 const RstTime sun_rise = GetSolarRst(time.JD()+0.5, -12); // Sun rise on the following day
81
82 const double jd = floor(time.Mjd())+2400001;
83 const double mjd = floor(time.Mjd())+49718+0.5;
84
85
86 const double jd0 = fmod(sun_set.set, 1); // ~0.3
87 const double jd1 = fmod(sun_rise.rise, 1); // ~0.8
88
89 cout << Time::iso << time << ", " << mjd-49718 << ", ";
90 cout << jd0 << ", ";
91 cout << jd1 << "\n";
92
93 if (!conf.Has("source-name"))
94 return 1;
95
96 const string source_name = conf.Get<string>("source-name");
97 const string fDatabase = conf.Get<string>("source-database");
98
99 // ------------------ Precalc moon coord ---------------------
100
101 vector<tuple<EquPosn, double, double>> fMoonCoords;
102 vector<EquPosn> fSunCoords;
103
104 for (double h=0; h<1; h+=1./(24*12))
105 {
106 const EquPosn sun = GetSolarEquCoords(jd+h);
107 const EquPosn moon = GetLunarEquCoords(jd+h, 0.01);
108 const double disk = GetLunarDisk(jd+h);
109 const double edist = GetLunarEarthDist(jd+h)/384400;
110
111 fMoonCoords.emplace_back(moon, disk, edist);
112 fSunCoords.emplace_back(sun);
113 }
114
115 // ------------- Get Sources from databasse ---------------------
116
117 const mysqlpp::StoreQueryResult res =
118 Database(fDatabase).query("SELECT fRightAscension, fDeclination FROM Source WHERE fSourceName='"+source_name+"'").store();
119
120 // ------------- Create canvases and frames ---------------------
121
122 vector<mysqlpp::Row>::const_iterator row=res.begin();
123 if (row==res.end())
124 return 1;
125
126 EquPosn pos;
127 pos.ra = double((*row)[0])*15;
128 pos.dec = double((*row)[1]);
129
130 // Loop over 24 hours
131 for (int i=0; i<24*12; i++)
132 {
133 const double h = double(i)/(24*12);
134
135 // check if it is betwene sun-rise and sun-set
136 if (h<jd0 || h>jd1)
137 continue;
138
139 // get local position of source
140 const HrzPosn hrz = GetHrzFromEqu(pos, jd+h);
141
142 // Get sun and moon properties and
143 const EquPosn sun = fSunCoords[i];
144 const EquPosn moon = get<0>(fMoonCoords[i]);
145 const double disk = get<1>(fMoonCoords[i]);
146 const double edist = get<2>(fMoonCoords[i]);
147 const HrzPosn hrzm = GetHrzFromEqu(moon, jd+h);
148 const ZdAzPosn hrzs = GetHrzFromEqu(sun, jd+h);
149
150 // Distance between source and moon
151 const double angle = GetAngularSeparation(moon, pos);
152
153 // Current prediction
154 const double sin_malt = hrzm.alt<0 ? 0 : sin(hrzm.alt*M_PI/180);
155 const double cos_mdist = cos(angle*M_PI/180);
156 const double sin_szd = sin(hrzs.zd*M_PI/180);
157
158 const double k0 = pow(disk, 2.63);
159 const double k1 = pow(sin_malt, 0.60);
160 const double k2 = pow(edist, -2.00);
161 const double k3 = exp(0.67*cos_mdist*cos_mdist*cos_mdist*cos_mdist);
162 const double k4 = exp(-97.8+105.8*sin_szd*sin_szd);
163
164 const double cur = 6.2 + 95.7*k0*k1*k2*k3 + k4;
165
166 // Relative energy threshold prediction
167 //const double cs = cos((90+hrz.alt)*M_PI/180);
168 //const double ratio = (10.*sqrt(409600.*cs*cs+9009.) + 6400.*cs - 60.)/10.;
169 const double ratio = pow(cos((90-hrz.alt)*M_PI/180), -2.664);
170
171 // Add points to curve
172 // const double axis = (mjd+h)*24*3600;
173
174 Time t(mjd-49718);
175 t += boost::posix_time::minutes(i*5);
176
177 cout << t << ", " << h << ", ";
178
179 if (no_limits || cur<max_current)
180 cout << hrz.alt;
181 cout << ", ";
182
183 if (no_limits || 90-hrz.alt<max_zd)
184 cout << cur;
185 cout << ", ";
186
187 if (no_limits || (cur<max_current && 90-hrz.alt<max_zd))
188 cout << ratio*cur/6.2;
189 cout << ", ";
190
191 if (no_limits || (cur<max_current && 90-hrz.alt<max_zd))
192 cout << angle;
193 cout << "\n";
194 }
195
196 cout << flush;
197
198 return 0;
199}
Note: See TracBrowser for help on using the repository browser.