1 | /**
|
---|
2 | * @fileOverview This file has functions related to documenting JavaScript.
|
---|
3 | * @author <a href="mailto:thomas.bretz@epfl.ch">Thomas Bretz</a>
|
---|
4 | */
|
---|
5 | 'use strict';
|
---|
6 |
|
---|
7 | dim.log("Start: "+__FILE__+" ["+__DATE__+"]");
|
---|
8 |
|
---|
9 | // This should be set in dimctrl.rc as JavaScript.schedule-database.
|
---|
10 | // It is sent together with the script to the dimserver.
|
---|
11 | // If started directly, it has to be set after the command:
|
---|
12 | //
|
---|
13 | // .js scripts/Main.js schedule-database=...
|
---|
14 | //
|
---|
15 | if (!$['schedule-database'])
|
---|
16 | throw new Error("Environment 'schedule-database' not set!");
|
---|
17 |
|
---|
18 | //dimctrl.defineState(37, "TimeOutBeforeTakingData", "MCP took more than 5minutes to start TakingData");
|
---|
19 |
|
---|
20 | // ================================================================
|
---|
21 | // Code related to the schedule
|
---|
22 | // ================================================================
|
---|
23 |
|
---|
24 | //this is just the class implementation of 'Observation'
|
---|
25 | include('scripts/Observation_class.js');
|
---|
26 | include('scripts/getSchedule.js');
|
---|
27 |
|
---|
28 | var observations = [ ];
|
---|
29 |
|
---|
30 | // Get the observation scheduled for 'now' from the table and
|
---|
31 | // return its index
|
---|
32 | function getObservation(now)
|
---|
33 | {
|
---|
34 | if (now==undefined)
|
---|
35 | now = new Date();
|
---|
36 |
|
---|
37 | if (isNaN(now.valueOf()))
|
---|
38 | throw new Error("Date argument in getObservation invalid.");
|
---|
39 |
|
---|
40 | observations = getSchedule();
|
---|
41 | if (observations.length==0)
|
---|
42 | return -1;
|
---|
43 |
|
---|
44 | var suspended = -1;
|
---|
45 |
|
---|
46 | var rc = observations.length-1;
|
---|
47 |
|
---|
48 | for (var i=0; i<observations.length; i++)
|
---|
49 | {
|
---|
50 | // Find the first observation which is in the future
|
---|
51 | if (observations[i].start>now)
|
---|
52 | {
|
---|
53 | rc = i-1;
|
---|
54 | break;
|
---|
55 | }
|
---|
56 |
|
---|
57 | // If the loop just passed a suspend, i.e. it is in the past, set the suspend flag
|
---|
58 | if (observations[i][0].task=="SUSPEND")
|
---|
59 | suspended = i;
|
---|
60 |
|
---|
61 | // If the loop just passed a resume, i.e. it is in the past, remove the suspend flag
|
---|
62 | if (observations[i][0].task=="RESUME")
|
---|
63 | suspended = -1;
|
---|
64 | }
|
---|
65 |
|
---|
66 | // Now rc contains the index of the first observation in the past
|
---|
67 |
|
---|
68 | // If the system is in suspend mode, the suspend observation is
|
---|
69 | // returned as recent measurement. For convenience (to avoid that
|
---|
70 | // the next observation is announced), all furture observations
|
---|
71 | // are removed.
|
---|
72 | if (suspended>=0)
|
---|
73 | {
|
---|
74 | observations.splice(suspended+1);
|
---|
75 | return suspended;
|
---|
76 | }
|
---|
77 |
|
---|
78 | // Observations have already been resumed and the last scheduled
|
---|
79 | // observation is the resume itself: remove the resume and
|
---|
80 | // all leading suspend/resume pairs until the last observation
|
---|
81 | // is found
|
---|
82 | while (rc>=0 && observations[rc][0].task=="RESUME")
|
---|
83 | {
|
---|
84 | observations.splice(rc--, 1);
|
---|
85 |
|
---|
86 | // Find previous suspend
|
---|
87 | if (rc>=0 && observations[rc][0].task=="SUSPEND")
|
---|
88 | observations.splice(rc--, 1);
|
---|
89 | }
|
---|
90 |
|
---|
91 | return rc;
|
---|
92 | }
|
---|
93 |
|
---|
94 | // ================================================================
|
---|
95 | // Code to check whether observation is allowed
|
---|
96 | // ================================================================
|
---|
97 | /*
|
---|
98 | function currentEst(source)
|
---|
99 | {
|
---|
100 | var moon = new Moon();
|
---|
101 | if (!moon.isUp)
|
---|
102 | return 7.7;
|
---|
103 |
|
---|
104 | var dist = Sky.dist(moon, source);
|
---|
105 |
|
---|
106 | var alt = 90-moon.toLocal().zd;
|
---|
107 |
|
---|
108 | var lc = dist*alt*pow(Moon.disk(), 6)/360/360;
|
---|
109 |
|
---|
110 | var cur = 7.7+4942*lc;
|
---|
111 |
|
---|
112 | return cur;
|
---|
113 | }
|
---|
114 |
|
---|
115 | function thresholdEst(source) // relative threshold (ratio)
|
---|
116 | {
|
---|
117 | // Assumption:
|
---|
118 | // atmosphere is 70km, shower taks place after 60km, earth radius 6400km
|
---|
119 | // just using the cosine law
|
---|
120 | // This fits very well with MC results: See Roger Firpo, p.45
|
---|
121 | // "Study of the MAGIC telescope sensitivity for Large Zenith Angle observations"
|
---|
122 |
|
---|
123 | var c = Math.cos(Math.Pi-source.zd);
|
---|
124 | var ratio = (10*sqrt(409600*c*c+9009) + 6400*c - 60)/10;
|
---|
125 |
|
---|
126 | // assumption: Energy threshold increases linearily with current
|
---|
127 | // assumption: Energy threshold increases linearily with distance
|
---|
128 |
|
---|
129 | return ratio*currentEst(source)/7.7;
|
---|
130 | }
|
---|
131 | */
|
---|
132 |
|
---|
133 | // ================================================================
|
---|
134 | // Code to perform the DRS calib sequence
|
---|
135 | // ================================================================
|
---|
136 |
|
---|
137 | var irq;
|
---|
138 |
|
---|
139 | function doDrsCalibration(where)
|
---|
140 | {
|
---|
141 | dim.log("Starting DRS calibration ["+where+"]");
|
---|
142 |
|
---|
143 | service_feedback.voltageOff();
|
---|
144 |
|
---|
145 | var tm = new Date();
|
---|
146 |
|
---|
147 | while (!irq)
|
---|
148 | {
|
---|
149 | dim.send("FAD_CONTROL/START_DRS_CALIBRATION");
|
---|
150 | if (irq || !takeRun("drs-pedestal", 1000)) // 40 / 20s (50Hz)
|
---|
151 | continue;
|
---|
152 |
|
---|
153 | if (irq || !takeRun("drs-gain", 1000)) // 40 / 20s (50Hz)
|
---|
154 | continue;
|
---|
155 |
|
---|
156 | if (where!="data")
|
---|
157 | {
|
---|
158 | if (irq || !takeRun("drs-pedestal", 1000)) // 40 / 20s (50Hz)
|
---|
159 | continue;
|
---|
160 | }
|
---|
161 |
|
---|
162 | break;
|
---|
163 | }
|
---|
164 |
|
---|
165 | if (where!="data")
|
---|
166 | {
|
---|
167 | dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
|
---|
168 |
|
---|
169 | while (!irq && !takeRun("drs-pedestal", 1000)); // 40 / 20s (50Hz)
|
---|
170 | while (!irq && !takeRun("drs-time", 1000)); // 40 / 20s (50Hz)
|
---|
171 | }
|
---|
172 |
|
---|
173 | while (!irq)
|
---|
174 | {
|
---|
175 | dim.send("FAD_CONTROL/RESET_SECONDARY_DRS_BASELINE");
|
---|
176 | if (takeRun("pedestal", 1000)) // 40 / 10s (80Hz)
|
---|
177 | break;
|
---|
178 | }
|
---|
179 |
|
---|
180 | dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
|
---|
181 |
|
---|
182 | while (!irq && !takeRun("pedestal", 1000)); // 40 / 10s (80Hz)
|
---|
183 | // -----------
|
---|
184 | // 4'40 / 2'00
|
---|
185 |
|
---|
186 | if (irq)
|
---|
187 | dim.log("DRS calibration interrupted [%.1fs]".$((new Date()-tm)/1000));
|
---|
188 | else
|
---|
189 | dim.log("DRS calibration done [%.1fs]".$((new Date()-tm)/1000));
|
---|
190 | }
|
---|
191 |
|
---|
192 | // ================================================================
|
---|
193 | // Code related to the lid
|
---|
194 | // ================================================================
|
---|
195 |
|
---|
196 | function OpenLid()
|
---|
197 | {
|
---|
198 | /*
|
---|
199 | while (Sun.horizon(-13).isUp)
|
---|
200 | {
|
---|
201 | var now = new Date();
|
---|
202 | var minutes_until_sunset = (Sun.horizon(-13).set - now)/60000;
|
---|
203 | console.out(now.toUTCString()+": Sun above FACT-horizon, lid cannot be opened: sleeping 1min, remaining %.1fmin".$(minutes_until_sunset));
|
---|
204 | v8.sleep(60000);
|
---|
205 | }*/
|
---|
206 |
|
---|
207 | var isClosed = dim.state("LID_CONTROL").name=="Closed";
|
---|
208 | var isInconsistent = dim.state("LID_CONTROL").name=="Inconsistent";
|
---|
209 |
|
---|
210 | var tm = new Date();
|
---|
211 |
|
---|
212 | // Wait for lid to be open
|
---|
213 | if (isClosed || isInconsistent)
|
---|
214 | {
|
---|
215 | dim.log("Opening lid");
|
---|
216 | dim.send("LID_CONTROL/OPEN");
|
---|
217 |
|
---|
218 | dim.log("Turning off IR camera LEDs...");
|
---|
219 |
|
---|
220 | var cam = new Curl("fact@cam/cgi-bin/user/Config.cgi");
|
---|
221 | cam.data.push("action=set");
|
---|
222 | cam.data.push("Camera.System.Title=Camera1");
|
---|
223 | cam.data.push("Camera.General.IRControl.Value=2");
|
---|
224 | cam.data.push("Camera.System.Display=ALL");
|
---|
225 | cam.data.push("Camera.Environment=OUTDOOR");
|
---|
226 | var ret = cam.send();
|
---|
227 | dim.log("Camera response: "+ret.data.replace(/\n/g,"/")+" ["+ret.rc+"]");
|
---|
228 | }
|
---|
229 | dim.wait("LID_CONTROL", "Open", 30000);
|
---|
230 |
|
---|
231 | if (isClosed || isInconsistent)
|
---|
232 | dim.log("Lid open [%.1fs]".$((new Date()-tm)/1000));
|
---|
233 | }
|
---|
234 |
|
---|
235 | function CloseLid()
|
---|
236 | {
|
---|
237 | var isOpen = dim.state("LID_CONTROL").name=="Open";
|
---|
238 |
|
---|
239 | var tm = new Date();
|
---|
240 |
|
---|
241 | // Wait for lid to be open
|
---|
242 | if (isOpen)
|
---|
243 | {
|
---|
244 | if (dim.state("FTM_CONTROL").name=="TriggerOn")
|
---|
245 | {
|
---|
246 | dim.send("FTM_CONTROL/STOP_TRIGGER");
|
---|
247 | dim.wait("FTM_CONTROL", "Valid", 3000);
|
---|
248 | }
|
---|
249 |
|
---|
250 | dim.log("Closing lid.");
|
---|
251 | dim.send("LID_CONTROL/CLOSE");
|
---|
252 | }
|
---|
253 | v8.timeout(30000, function() { if (dim.state("LID_CONTROL").name=="Closed" || dim.state("LID_CONTROL").name=="Inconsistent") return true; });
|
---|
254 | //dim.wait("LID_CONTROL", "Closed", 30000);
|
---|
255 | //dim.wait("LID_CONTROL", "Inconsistent", 30000);
|
---|
256 |
|
---|
257 | if (isOpen)
|
---|
258 | dim.log("Lid closed [%.1fs]".$((new Date()-tm)/1000));
|
---|
259 | }
|
---|
260 |
|
---|
261 | // ================================================================
|
---|
262 | // Interrupt data taking in case of high currents
|
---|
263 | // ================================================================
|
---|
264 | dim.onchange['FEEDBACK'] = function(state)
|
---|
265 | {
|
---|
266 | if ((state.name=="Critical" || state.name=="OnStandby") &&
|
---|
267 | (this.prev!="Critical" && this.prev!="OnStandby"))
|
---|
268 | {
|
---|
269 | console.out("Feedback state changed from "+this.prev+" to "+state.name+" [Main.js]");
|
---|
270 | irq = "RESCHEDULE";
|
---|
271 | }
|
---|
272 | this.prev=state.name;
|
---|
273 | }
|
---|
274 |
|
---|
275 | // ================================================================
|
---|
276 | // Code related to switching bias voltage on and off
|
---|
277 | // ================================================================
|
---|
278 |
|
---|
279 | var service_feedback = new Subscription("FEEDBACK/CALIBRATED_CURRENTS");
|
---|
280 |
|
---|
281 | service_feedback.onchange = function(evt)
|
---|
282 | {
|
---|
283 | if (!evt.data)
|
---|
284 | return;
|
---|
285 |
|
---|
286 | if (this.ok==undefined)
|
---|
287 | return;
|
---|
288 |
|
---|
289 | var Unom = evt.obj['U_nom'];
|
---|
290 | var Uov = evt.obj['U_ov'];
|
---|
291 | if (!Uov)
|
---|
292 | return;
|
---|
293 |
|
---|
294 | var cnt = 0;
|
---|
295 | var avg = 0;
|
---|
296 | for (var i=0; i<320; i++)
|
---|
297 | {
|
---|
298 | // This is a fix for the channel with a shortcut
|
---|
299 | if (i==272)
|
---|
300 | continue;
|
---|
301 |
|
---|
302 | var dU = Uov[i]-Unom;
|
---|
303 |
|
---|
304 | // 0.022 corresponds to 1 DAC count (90V/4096)
|
---|
305 | if (Math.abs(dU)>0.033)
|
---|
306 | cnt++;
|
---|
307 |
|
---|
308 | avg += dU;
|
---|
309 | }
|
---|
310 | avg /= 320;
|
---|
311 |
|
---|
312 | this.ok = cnt<3;// || (this.last!=undefined && Math.abs(this.last-avg)<0.002);
|
---|
313 |
|
---|
314 | console.out(" DeltaUov=%.3f (%.3f) [N(>0.033V)=%d]".$(avg, avg-this.last, cnt));
|
---|
315 |
|
---|
316 | this.last = avg;
|
---|
317 | }
|
---|
318 |
|
---|
319 | service_feedback.voltageOff = function()
|
---|
320 | {
|
---|
321 | var state = dim.state("BIAS_CONTROL").name;
|
---|
322 |
|
---|
323 | if (state=="Disconnected")
|
---|
324 | {
|
---|
325 | console.out(" Voltage off: bias crate disconnected!");
|
---|
326 | return;
|
---|
327 | }
|
---|
328 |
|
---|
329 | // check of feedback has to be switched on
|
---|
330 | var isOn = state=="VoltageOn" || state=="Ramping";
|
---|
331 | if (isOn)
|
---|
332 | {
|
---|
333 | dim.log("Switching voltage off.");
|
---|
334 |
|
---|
335 | if (dim.state("FTM_CONTROL").name=="TriggerOn")
|
---|
336 | {
|
---|
337 | dim.send("FTM_CONTROL/STOP_TRIGGER");
|
---|
338 | dim.wait("FTM_CONTROL", "Valid", 3000);
|
---|
339 | }
|
---|
340 |
|
---|
341 | // Supress the possibility that the bias control is
|
---|
342 | // ramping and will reject the command to switch the
|
---|
343 | // voltage off
|
---|
344 | //dim.send("FEEDBACK/STOP");
|
---|
345 | //dim.wait("FEEDBACK", "Calibrated", 3000);
|
---|
346 |
|
---|
347 | // Make sure we are not in Ramping anymore
|
---|
348 | //dim.wait("BIAS_CONTROL", "VoltageOn", 3000);
|
---|
349 |
|
---|
350 | // Switch voltage off
|
---|
351 | dim.send("BIAS_CONTROL/SET_ZERO_VOLTAGE");
|
---|
352 | }
|
---|
353 |
|
---|
354 | dim.wait("BIAS_CONTROL", "VoltageOff", 60000); // FIXME: 30000?
|
---|
355 | dim.wait("FEEDBACK", "Calibrated", 3000);
|
---|
356 |
|
---|
357 | // FEEDBACK stays in CurrentCtrl when Voltage is off but output enabled
|
---|
358 | // dim.wait("FEEDBACK", "CurrentCtrlIdle", 1000);
|
---|
359 |
|
---|
360 | if (isOn)
|
---|
361 | dim.log("Voltage off.");
|
---|
362 | }
|
---|
363 |
|
---|
364 | // DN: The name of the method voltageOn() in the context of the method
|
---|
365 | // voltageOff() is a little bit misleading, since when voltageOff() returns
|
---|
366 | // the caller can be sure the voltage is off, but when voltageOn() return
|
---|
367 | // this is not the case, in the sense, that the caller can now take data.
|
---|
368 | // instead the caller of voltageOn() *must* call waitForVoltageOn() afterwards
|
---|
369 | // in order to safely take good-quality data.
|
---|
370 | // This could lead to nasty bugs in the sense, that the second call might
|
---|
371 | // be forgotten by somebody
|
---|
372 | //
|
---|
373 | // so I suggest to rename voltageOn() --> prepareVoltageOn()
|
---|
374 | // waitForVoltageOn() stays as it is
|
---|
375 | // and one creates a third method called:voltageOn() like this
|
---|
376 | /* service_feedback.voltageOn = function()
|
---|
377 | * {
|
---|
378 | * this.prepareVoltageOn();
|
---|
379 | * this.waitForVoltageOn();
|
---|
380 | * }
|
---|
381 | *
|
---|
382 | * */
|
---|
383 | // For convenience.
|
---|
384 |
|
---|
385 | service_feedback.voltageOn = function(ov)
|
---|
386 | {
|
---|
387 | if (isNaN(ov))
|
---|
388 | ov = 1.1;
|
---|
389 |
|
---|
390 | if (this.ov!=ov && dim.state("FEEDBACK").name=="InProgress") // FIXME: Warning, OnStandby, Critical if (ov<this.ov)
|
---|
391 | {
|
---|
392 | dim.log("Stoping feedback.");
|
---|
393 | if (dim.state("FTM_CONTROL").name=="TriggerOn")
|
---|
394 | {
|
---|
395 | dim.send("FTM_CONTROL/STOP_TRIGGER");
|
---|
396 | dim.wait("FTM_CONTROL", "Valid", 3000);
|
---|
397 | }
|
---|
398 |
|
---|
399 | dim.send("FEEDBACK/STOP");
|
---|
400 | dim.wait("FEEDBACK", "Calibrated", 3000);
|
---|
401 |
|
---|
402 | // Make sure we are not in Ramping anymore
|
---|
403 | dim.wait("BIAS_CONTROL", "VoltageOn", 3000);
|
---|
404 | }
|
---|
405 |
|
---|
406 | var isOff = dim.state("FEEDBACK").name=="Calibrated";
|
---|
407 | if (isOff)
|
---|
408 | {
|
---|
409 | dim.log("Switching voltage to Uov="+ov+"V.");
|
---|
410 |
|
---|
411 | dim.send("FEEDBACK/START", ov);
|
---|
412 |
|
---|
413 | // FIXME: We could miss "InProgress" if it immediately changes to "Warning"
|
---|
414 | // Maybe a dim.timeout state>8 ?
|
---|
415 | dim.wait("FEEDBACK", "InProgress", 45000);
|
---|
416 |
|
---|
417 | this.ov = ov;
|
---|
418 | }
|
---|
419 |
|
---|
420 | // Wait until voltage on
|
---|
421 | dim.wait("BIAS_CONTROL", "VoltageOn", 60000); // FIXME: 30000?
|
---|
422 | }
|
---|
423 |
|
---|
424 | service_feedback.waitForVoltageOn = function()
|
---|
425 | {
|
---|
426 | // Avoid output if condition is already fulfilled
|
---|
427 | dim.log("Waiting for voltage to be stable.");
|
---|
428 |
|
---|
429 | function func()
|
---|
430 | {
|
---|
431 | if (irq || this.ok==true)
|
---|
432 | return true;
|
---|
433 | }
|
---|
434 |
|
---|
435 | var now = new Date();
|
---|
436 |
|
---|
437 | this.last = undefined;
|
---|
438 | this.ok = false;
|
---|
439 | v8.timeout(4*60000, func, this); // FIMXE: Remove 4!
|
---|
440 | this.ok = undefined;
|
---|
441 |
|
---|
442 | if (irq)
|
---|
443 | dim.log("Waiting for stable voltage interrupted.");
|
---|
444 | else
|
---|
445 | dim.log("Voltage stable within limits");
|
---|
446 | }
|
---|
447 |
|
---|
448 | // ================================================================
|
---|
449 | // Function to shutdown the system
|
---|
450 | // ================================================================
|
---|
451 |
|
---|
452 | function Shutdown(type)
|
---|
453 | {
|
---|
454 | if (!type)
|
---|
455 | type = "default";
|
---|
456 |
|
---|
457 | dim.log("Starting shutdown ["+type+"].");
|
---|
458 |
|
---|
459 | var now1 = new Date();
|
---|
460 |
|
---|
461 | var bias = dim.state("BIAS_CONTROL").name;
|
---|
462 | if (bias=="VoltageOn" || bias=="Ramping")
|
---|
463 | service_feedback.voltageOn(0);
|
---|
464 |
|
---|
465 | CloseLid();
|
---|
466 |
|
---|
467 | var now2 = new Date();
|
---|
468 |
|
---|
469 | dim.send("DRIVE_CONTROL/PARK");
|
---|
470 |
|
---|
471 | console.out("","Waiting for telescope to park. This may take a while.");
|
---|
472 |
|
---|
473 | // FIXME: This might not work is the drive is already close to park position
|
---|
474 | //dim.wait("DRIVE_CONTROL", "Parking", 3000);
|
---|
475 |
|
---|
476 | /*
|
---|
477 | // Check if DRS calibration is necessary
|
---|
478 | var diff = getTimeSinceLastDrsCalib();
|
---|
479 | if (diff>30 || diff==null)
|
---|
480 | {
|
---|
481 | doDrsCalibration("singlepe"); // will turn voltage off
|
---|
482 | if (irq)
|
---|
483 | break;
|
---|
484 | }*/
|
---|
485 |
|
---|
486 | //take single pe run if required
|
---|
487 | if (type=="singlepe")
|
---|
488 | {
|
---|
489 | dim.log("Taking single-pe run.");
|
---|
490 |
|
---|
491 | // The voltage must be on
|
---|
492 | service_feedback.voltageOn();
|
---|
493 | service_feedback.waitForVoltageOn();
|
---|
494 |
|
---|
495 | // Before we can switch to 3000 we have to make the right DRS calibration
|
---|
496 | dim.log("Taking single p.e. run.");
|
---|
497 | while (!irq && !takeRun("single-pe", 10000));
|
---|
498 |
|
---|
499 | /*
|
---|
500 | Maybe we need to send a trigger... but data runs contain pedestal triggers... so it should work in any case...
|
---|
501 | var customRun = function()
|
---|
502 | {
|
---|
503 | v8.sleep(500);//wait that configuration is set
|
---|
504 | dim.wait("FTM_CONTROL", "TriggerOn", 15000);
|
---|
505 | dim.send("FAD_CONTROL/SEND_SINGLE_TRIGGER");
|
---|
506 | dim.send("RATE_CONTROL/STOP");
|
---|
507 | dim.send("FTM_CONTROL/STOP_TRIGGER");
|
---|
508 | dim.wait("FTM_CONTROL", "Valid", 3000);
|
---|
509 | dim.send("FTM_CONTROL/ENABLE_TRIGGER", true);
|
---|
510 | dim.send("FTM_CONTROL/SET_TIME_MARKER_DELAY", 123);
|
---|
511 | dim.send("FTM_CONTROL/SET_THRESHOLD", -1, obs[sub].threshold);
|
---|
512 | v8.sleep(500);//wait that configuration is set
|
---|
513 | dim.send("FTM_CONTROL/START_TRIGGER");
|
---|
514 | dim.wait("FTM_CONTROL", "TriggerOn", 15000);
|
---|
515 | }*/
|
---|
516 | }
|
---|
517 |
|
---|
518 | //wait until drive is in locked (after it reached park position)
|
---|
519 | dim.wait("DRIVE_CONTROL", "Locked", 150000);
|
---|
520 |
|
---|
521 | //unlock drive if task was sleep
|
---|
522 | if (type=="unlock")
|
---|
523 | dim.send("DRIVE_CONTROL/UNLOCK");
|
---|
524 |
|
---|
525 |
|
---|
526 | // It is unclear what comes next, so we better switch off the voltage
|
---|
527 | service_feedback.voltageOff();
|
---|
528 |
|
---|
529 | dim.log("Finishing shutdown.");
|
---|
530 |
|
---|
531 | var now3 = new Date();
|
---|
532 |
|
---|
533 | dim.send("FTM_CONTROL/STOP_TRIGGER");
|
---|
534 | dim.wait("FTM_CONTROL", "Valid", 3000);
|
---|
535 |
|
---|
536 | if (bias!="Disconnected")
|
---|
537 | dim.wait("FEEDBACK", "Calibrated", 3000);
|
---|
538 |
|
---|
539 | if (type!="unlock")
|
---|
540 | {
|
---|
541 | dim.send("BIAS_CONTROL/DISCONNECT");
|
---|
542 |
|
---|
543 | var pwrctrl_state = dim.state("PWR_CONTROL").name;
|
---|
544 | if (pwrctrl_state=="SystemOn" ||
|
---|
545 | pwrctrl_state=="BiasOff" ||
|
---|
546 | pwrctrl_state=="DriveOn")
|
---|
547 | dim.send("PWR_CONTROL/TOGGLE_DRIVE");
|
---|
548 |
|
---|
549 | dim.wait("BIAS_CONTROL", "Disconnected", 3000);
|
---|
550 | dim.wait("PWR_CONTROL", "DriveOff", 6000);
|
---|
551 | }
|
---|
552 |
|
---|
553 | var sub = new Subscription("DRIVE_CONTROL/POINTING_POSITION");
|
---|
554 | sub.get(5000); // FIXME: Proper error message in case of failure
|
---|
555 |
|
---|
556 | var report = sub.get();
|
---|
557 |
|
---|
558 | console.out("");
|
---|
559 | console.out("Shutdown procedure ["+type+"] seems to be finished...");
|
---|
560 | console.out(" "+new Date().toUTCString());
|
---|
561 | console.out(" Telescope at Zd=%.1fdeg Az=%.1fdeg".$(report.obj['Zd'], report.obj['Az']));
|
---|
562 | console.out(" Please check on the web cam that the park position was reached");
|
---|
563 | console.out(" and the telescope is not moving anymore.");
|
---|
564 | console.out(" Please check visually that the lid is really closed and");
|
---|
565 | console.out(" that the biasctrl really switched the voltage off.", "");
|
---|
566 | console.out(" DRIVE_CONTROL: "+dim.state("DRIVE_CONTROL").name);
|
---|
567 | console.out(" FEEDBACK: "+dim.state("FEEDBACK").name);
|
---|
568 | console.out(" FTM_CONTROL: "+dim.state("FTM_CONTROL").name);
|
---|
569 | console.out(" BIAS_CONTROL: "+dim.state("BIAS_CONTROL").name);
|
---|
570 | console.out(" PWR_CONTROL: "+dim.state("PWR_CONTROL").name);
|
---|
571 | console.out("");
|
---|
572 | dim.log("Shutdown: end ["+(now2-now1)/1000+"s, "+(now3-now2)/1000+"s, "+(new Date()-now3)/1000+"s]");
|
---|
573 | console.out("");
|
---|
574 |
|
---|
575 | sub.close();
|
---|
576 | }
|
---|
577 |
|
---|
578 |
|
---|
579 | // ================================================================
|
---|
580 | // Function to set the system to sleep-mode
|
---|
581 | // ================================================================
|
---|
582 | // FIXME: do not repeat code from shutdown-function
|
---|
583 | /*
|
---|
584 | function GoToSleep()
|
---|
585 | {
|
---|
586 | CloseLid();
|
---|
587 |
|
---|
588 | var isArmed = dim.state("DRIVE_CONTROL").name=="Armed";
|
---|
589 | if (!isArmed)
|
---|
590 | {
|
---|
591 | dim.log("Drive not ready to move. -> send STOP");
|
---|
592 | dim.send("DRIVE_CONTROL/STOP");
|
---|
593 | dim.wait("DRIVE_CONTROL", "Armed", 5000);
|
---|
594 | }
|
---|
595 |
|
---|
596 | dim.send("DRIVE_CONTROL/MOVE_TO 101 0");//park position
|
---|
597 | var sub = new Subscription("DRIVE_CONTROL/POINTING_POSITION");
|
---|
598 | sub.get(5000); // FIXME: Proper error message in case of failure
|
---|
599 |
|
---|
600 | function func()
|
---|
601 | {
|
---|
602 | var report = sub.get();
|
---|
603 |
|
---|
604 | var zd = report.obj['Zd'];
|
---|
605 | var az = report.obj['Az'];
|
---|
606 |
|
---|
607 | if (zd>100 && Math.abs(az)<1)
|
---|
608 | return true;
|
---|
609 |
|
---|
610 | return undefined;
|
---|
611 | }
|
---|
612 |
|
---|
613 | try { v8.timeout(150000, func); }
|
---|
614 | catch (e)
|
---|
615 | {
|
---|
616 | var p = sub.get();
|
---|
617 | dim.log('Park position not reached? Telescope at Zd='+p.obj['Zd']+' Az='+p.obj['Az']);
|
---|
618 | }
|
---|
619 | var p2 = sub.get();
|
---|
620 | dim.log('Telescope at Zd=%.1fdeg Az=%.1fdeg'.$(p2.obj['Zd'], p2.obj['Az']));
|
---|
621 | sub.close();
|
---|
622 | }
|
---|
623 | */
|
---|
624 |
|
---|
625 | // ================================================================
|
---|
626 | // Check datalogger subscriptions
|
---|
627 | // ================================================================
|
---|
628 |
|
---|
629 | var datalogger_subscriptions = new Subscription("DATA_LOGGER/SUBSCRIPTIONS");
|
---|
630 | datalogger_subscriptions.get(3000, false);
|
---|
631 |
|
---|
632 | datalogger_subscriptions.check = function()
|
---|
633 | {
|
---|
634 | var obj = this.get();
|
---|
635 | if (!obj.data)
|
---|
636 | throw new Error("DATA_LOGGER/SUBSCRIPTIONS not available.");
|
---|
637 |
|
---|
638 | var expected =
|
---|
639 | [
|
---|
640 | "AGILENT_CONTROL_24V/DATA",
|
---|
641 | "AGILENT_CONTROL_50V/DATA",
|
---|
642 | "AGILENT_CONTROL_80V/DATA",
|
---|
643 | "BIAS_CONTROL/CURRENT",
|
---|
644 | "BIAS_CONTROL/DAC",
|
---|
645 | "BIAS_CONTROL/NOMINAL",
|
---|
646 | "BIAS_CONTROL/VOLTAGE",
|
---|
647 | "DRIVE_CONTROL/POINTING_POSITION",
|
---|
648 | "DRIVE_CONTROL/SOURCE_POSITION",
|
---|
649 | "DRIVE_CONTROL/STATUS",
|
---|
650 | "DRIVE_CONTROL/TRACKING_POSITION",
|
---|
651 | "FAD_CONTROL/CONNECTIONS",
|
---|
652 | "FAD_CONTROL/DAC",
|
---|
653 | "FAD_CONTROL/DNA",
|
---|
654 | "FAD_CONTROL/DRS_RUNS",
|
---|
655 | "FAD_CONTROL/EVENTS",
|
---|
656 | "FAD_CONTROL/FEEDBACK_DATA",
|
---|
657 | "FAD_CONTROL/FILE_FORMAT",
|
---|
658 | "FAD_CONTROL/FIRMWARE_VERSION",
|
---|
659 | "FAD_CONTROL/INCOMPLETE",
|
---|
660 | "FAD_CONTROL/PRESCALER",
|
---|
661 | "FAD_CONTROL/REFERENCE_CLOCK",
|
---|
662 | "FAD_CONTROL/REGION_OF_INTEREST",
|
---|
663 | "FAD_CONTROL/RUNS",
|
---|
664 | "FAD_CONTROL/RUN_NUMBER",
|
---|
665 | "FAD_CONTROL/START_RUN",
|
---|
666 | "FAD_CONTROL/STATISTICS1",
|
---|
667 | "FAD_CONTROL/STATS",
|
---|
668 | "FAD_CONTROL/STATUS",
|
---|
669 | "FAD_CONTROL/TEMPERATURE",
|
---|
670 | "FEEDBACK/CALIBRATED_CURRENTS",
|
---|
671 | "FEEDBACK/CALIBRATION",
|
---|
672 | "FEEDBACK/CALIBRATION_R8",
|
---|
673 | "FEEDBACK/CALIBRATION_STEPS",
|
---|
674 | /* "FEEDBACK/REFERENCE",*/
|
---|
675 | "FSC_CONTROL/CURRENT",
|
---|
676 | "FSC_CONTROL/HUMIDITY",
|
---|
677 | "FSC_CONTROL/TEMPERATURE",
|
---|
678 | "FSC_CONTROL/VOLTAGE",
|
---|
679 | "FTM_CONTROL/COUNTER",
|
---|
680 | "FTM_CONTROL/DYNAMIC_DATA",
|
---|
681 | "FTM_CONTROL/ERROR",
|
---|
682 | "FTM_CONTROL/FTU_LIST",
|
---|
683 | "FTM_CONTROL/PASSPORT",
|
---|
684 | "FTM_CONTROL/STATIC_DATA",
|
---|
685 | "FTM_CONTROL/TRIGGER_RATES",
|
---|
686 | "GPS_CONTROL/NEMA",
|
---|
687 | "SQM_CONTROL/DATA",
|
---|
688 | //"LID_CONTROL/DATA",
|
---|
689 | "LID_CONTROL/MOTORS",
|
---|
690 | "MAGIC_LIDAR/DATA",
|
---|
691 | "MAGIC_WEATHER/DATA",
|
---|
692 | "MCP/CONFIGURATION",
|
---|
693 | "PWR_CONTROL/DATA",
|
---|
694 | "RATE_CONTROL/THRESHOLD",
|
---|
695 | "RATE_SCAN/DATA",
|
---|
696 | "RATE_SCAN/PROCESS_DATA",
|
---|
697 | "TEMPERATURE/DATA",
|
---|
698 | "TIME_CHECK/OFFSET",
|
---|
699 | "TNG_WEATHER/DATA",
|
---|
700 | "TNG_WEATHER/DUST",
|
---|
701 | "PFMINI_CONTROL/DATA",
|
---|
702 | "BIAS_TEMP/DATA",
|
---|
703 | ];
|
---|
704 |
|
---|
705 | function map(entry)
|
---|
706 | {
|
---|
707 | if (entry.length==0)
|
---|
708 | return undefined;
|
---|
709 |
|
---|
710 | var rc = entry.split(',');
|
---|
711 | if (rc.length!=2)
|
---|
712 | throw new Error("Subscription list entry '"+entry+"' has wrong number of elements.");
|
---|
713 | return rc;
|
---|
714 | }
|
---|
715 |
|
---|
716 | var list = obj.data.split('\n').map(map);
|
---|
717 | function check(name)
|
---|
718 | {
|
---|
719 | if (list.every(function(el){return el==undefined || el[0]!=name;}))
|
---|
720 | throw new Error("Subscription to '"+name+"' not available.");
|
---|
721 | }
|
---|
722 |
|
---|
723 | expected.forEach(check);
|
---|
724 | }
|
---|
725 |
|
---|
726 |
|
---|
727 |
|
---|
728 | // ================================================================
|
---|
729 | // Crosscheck all states
|
---|
730 | // ================================================================
|
---|
731 |
|
---|
732 | // ----------------------------------------------------------------
|
---|
733 | // Do a standard startup to bring the system in into a well
|
---|
734 | // defined state
|
---|
735 | // ----------------------------------------------------------------
|
---|
736 | include('scripts/Startup.js');
|
---|
737 |
|
---|
738 | // ================================================================
|
---|
739 | // Code to monitor clock conditioner
|
---|
740 | // ================================================================
|
---|
741 |
|
---|
742 | var sub_counter = new Subscription("FTM_CONTROL/COUNTER");
|
---|
743 | sub_counter.onchange = function(evt)
|
---|
744 | {
|
---|
745 | if (evt.qos>0 && evt.qos!=2 && evt.qos&0x100==0)
|
---|
746 | throw new Error("FTM reports: clock conditioner not locked.");
|
---|
747 | }
|
---|
748 |
|
---|
749 | // ================================================================
|
---|
750 | // Code related to monitoring the fad system
|
---|
751 | // ================================================================
|
---|
752 |
|
---|
753 | // This code is here, because scripts/Startup.js needs the
|
---|
754 | // same subscriptions... to be revised.
|
---|
755 | var sub_incomplete = new Subscription("FAD_CONTROL/INCOMPLETE");
|
---|
756 | var sub_connections = new Subscription("FAD_CONTROL/CONNECTIONS");
|
---|
757 | var sub_startrun = new Subscription("FAD_CONTROL/START_RUN");
|
---|
758 | sub_startrun.get(5000);
|
---|
759 |
|
---|
760 | include('scripts/takeRun.js');
|
---|
761 |
|
---|
762 | // ----------------------------------------------------------------
|
---|
763 | // Check that everything we need is availabel to receive commands
|
---|
764 | // (FIXME: Should that go to the general CheckState?)
|
---|
765 | // ----------------------------------------------------------------
|
---|
766 | //console.out("Checking send.");
|
---|
767 | checkSend(["MCP", "DRIVE_CONTROL", "LID_CONTROL", "FAD_CONTROL", "FEEDBACK"]);
|
---|
768 | //console.out("Checking send: done");
|
---|
769 |
|
---|
770 | // ----------------------------------------------------------------
|
---|
771 | // Bring feedback into the correct operational state
|
---|
772 | // ----------------------------------------------------------------
|
---|
773 | //console.out("Feedback init: start.");
|
---|
774 | service_feedback.get(5000);
|
---|
775 |
|
---|
776 | // ----------------------------------------------------------------
|
---|
777 | // Connect to the DRS_RUNS service
|
---|
778 | // ----------------------------------------------------------------
|
---|
779 | //console.out("Drs runs init: start.");
|
---|
780 |
|
---|
781 | var sub_drsruns = new Subscription("FAD_CONTROL/DRS_RUNS");
|
---|
782 | sub_drsruns.get(5000);
|
---|
783 | // FIXME: Check if the last DRS calibration was complete?
|
---|
784 |
|
---|
785 | function getTimeSinceLastDrsCalib()
|
---|
786 | {
|
---|
787 | // ----- Time since last DRS Calibration [min] ------
|
---|
788 | var runs = sub_drsruns.get(0);
|
---|
789 | var diff = (new Date()-runs.time)/60000;
|
---|
790 |
|
---|
791 | // Warning: 'roi=300' is a number which is not intrisically fixed
|
---|
792 | // but can change depending on the taste of the observers
|
---|
793 | var valid = runs.obj['run'][2]>0 && runs.obj['roi']==300;
|
---|
794 |
|
---|
795 | if (valid)
|
---|
796 | dim.log("Last DRS calibration was %.1fmin ago".$(diff));
|
---|
797 | else
|
---|
798 | dim.log("No valid DRS calibration available.");
|
---|
799 |
|
---|
800 | return valid ? diff : null;
|
---|
801 | }
|
---|
802 |
|
---|
803 | // ----------------------------------------------------------------
|
---|
804 | // Install interrupt handler
|
---|
805 | // ----------------------------------------------------------------
|
---|
806 | function handleIrq(cmd, args, time, user)
|
---|
807 | {
|
---|
808 | console.out("Interrupt received:");
|
---|
809 | console.out(" IRQ: "+cmd);
|
---|
810 | console.out(" Time: "+time);
|
---|
811 | console.out(" User: "+user);
|
---|
812 |
|
---|
813 | irq = cmd ? cmd : "stop";
|
---|
814 |
|
---|
815 | // This will end a run in progress as if it where correctly stopped
|
---|
816 | if (dim.state("MCP").name=="TakingData")
|
---|
817 | dim.send("MCP/STOP");
|
---|
818 |
|
---|
819 | // This will stop a rate scan in progress
|
---|
820 | if (dim.state("RATE_SCAN").name=="InProgress")
|
---|
821 | dim.send("RATE_SCAN/STOP");
|
---|
822 | }
|
---|
823 |
|
---|
824 | dimctrl.setInterruptHandler(handleIrq);
|
---|
825 |
|
---|
826 | // ----------------------------------------------------------------
|
---|
827 | // Make sure we will write files
|
---|
828 | // ----------------------------------------------------------------
|
---|
829 | dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
|
---|
830 |
|
---|
831 | // ----------------------------------------------------------------
|
---|
832 | // Print some information for the user about the
|
---|
833 | // expected first oberservation
|
---|
834 | // ----------------------------------------------------------------
|
---|
835 | var test = getObservation();
|
---|
836 | if (test!=undefined)
|
---|
837 | {
|
---|
838 | var n = new Date();
|
---|
839 | if (observations.length>0 && test==-1)
|
---|
840 | dim.log("First observation scheduled for "+observations[0].start.toUTCString()+" [id="+observations[0].id+"]");
|
---|
841 | if (test>=0 && test<observations.length)
|
---|
842 | dim.log("First observation should start immediately ["+observations[test].start.toUTCString()+", id="+observations[test].id+"]");
|
---|
843 | if (observations.length>0 && observations[0].start>n+12*3600*1000)
|
---|
844 | dim.log("No observations scheduled for the next 12 hours!");
|
---|
845 | if (observations.length==0)
|
---|
846 | dim.log("No observations scheduled!");
|
---|
847 | }
|
---|
848 |
|
---|
849 | // ----------------------------------------------------------------
|
---|
850 | // Start main loop
|
---|
851 | // ----------------------------------------------------------------
|
---|
852 | dim.log("Entering main loop.");
|
---|
853 | console.out("");
|
---|
854 |
|
---|
855 | var run = -2; // getObservation never called
|
---|
856 | var sub;
|
---|
857 | var lastId;
|
---|
858 | var nextId;
|
---|
859 | var sun = Sun.horizon(-12);
|
---|
860 | var system_on; // undefined
|
---|
861 |
|
---|
862 | function processIrq()
|
---|
863 | {
|
---|
864 | if (!irq)
|
---|
865 | return false;
|
---|
866 |
|
---|
867 | if (irq.toUpperCase()=="RESCHEDULE")
|
---|
868 | {
|
---|
869 | irq = undefined;
|
---|
870 | return false;
|
---|
871 | }
|
---|
872 |
|
---|
873 | if (irq.toUpperCase()=="OFF")
|
---|
874 | {
|
---|
875 | service_feedback.voltageOff();
|
---|
876 | dim.send("FAD_CONTROL/CLOSE_OPEN_FILES");
|
---|
877 | return true;
|
---|
878 | }
|
---|
879 |
|
---|
880 | /*
|
---|
881 | if (irq.toUpperCase()=="STOP")
|
---|
882 | {
|
---|
883 | dim.send("FAD_CONTROL/CLOSE_OPEN_FILES");
|
---|
884 | dim.send("MCP/STOP");
|
---|
885 | return true;
|
---|
886 | }*/
|
---|
887 |
|
---|
888 | if (irq.toUpperCase()=="SHUTDOWN")
|
---|
889 | {
|
---|
890 | Shutdown();
|
---|
891 | return true;
|
---|
892 | }
|
---|
893 |
|
---|
894 | dim.log("IRQ "+irq+" unhandled... stopping script.");
|
---|
895 | return true;
|
---|
896 | }
|
---|
897 |
|
---|
898 | while (!processIrq())
|
---|
899 | {
|
---|
900 | // Check if observation position is still valid
|
---|
901 | // If source position has changed, set run=0
|
---|
902 | var idxObs = getObservation();
|
---|
903 | if (idxObs===undefined)
|
---|
904 | break;
|
---|
905 |
|
---|
906 | // we are still waiting for the first observation in the schedule
|
---|
907 | if (idxObs==-1)
|
---|
908 | {
|
---|
909 | // flag that the first observation will be in the future
|
---|
910 | run = -1;
|
---|
911 | v8.sleep(1000);
|
---|
912 | continue;
|
---|
913 | }
|
---|
914 |
|
---|
915 | // Check if we have to take action do to sun-rise
|
---|
916 | var was_up = sun.isUp;
|
---|
917 | sun = Sun.horizon(-12);
|
---|
918 | if (!was_up && sun.isUp)
|
---|
919 | {
|
---|
920 | console.out("");
|
---|
921 | dim.log("Sun rise detected.... automatic shutdown initiated!");
|
---|
922 | // FIXME: State check?
|
---|
923 | Shutdown();
|
---|
924 | system_on = false;
|
---|
925 | continue;
|
---|
926 | }
|
---|
927 |
|
---|
928 | // Current and next observation target
|
---|
929 | var obs = observations[idxObs];
|
---|
930 | var nextObs = observations[idxObs+1];
|
---|
931 |
|
---|
932 | // Check if observation target has changed
|
---|
933 | if (lastId!=obs.id) // !Object.isEqual(obs, nextObs)
|
---|
934 | {
|
---|
935 | dim.log("Starting new observation ["+obs.start.toUTCString()+", id="+obs.id+"]");
|
---|
936 |
|
---|
937 | // This is the first source, but we do not come from
|
---|
938 | // a scheduled 'START', so we have to check if the
|
---|
939 | // telescop is operational already
|
---|
940 | sub = 0;
|
---|
941 | if (run<0)
|
---|
942 | {
|
---|
943 | //Startup(); // -> Bias On/Off?, Lid open/closed?
|
---|
944 | //CloseLid();
|
---|
945 | }
|
---|
946 |
|
---|
947 | // The first observation had a start-time in the past...
|
---|
948 | // In this particular case start with the last entry
|
---|
949 | // in the list of measurements
|
---|
950 | if (run==-2)
|
---|
951 | sub = obs.length-1;
|
---|
952 |
|
---|
953 | run = 0;
|
---|
954 | lastId = obs.id;
|
---|
955 | }
|
---|
956 |
|
---|
957 | //dim.log("DEBUG: Next observation scheduled for "+nextObs.start.toUTCString()+" [id="+nextObs.id+"]");
|
---|
958 | if (nextObs && nextId!=nextObs.id)
|
---|
959 | {
|
---|
960 | dim.log("Next observation scheduled for "+nextObs.start.toUTCString()+" [id="+nextObs.id+"]");
|
---|
961 | console.out("");
|
---|
962 | nextId = nextObs.id;
|
---|
963 | }
|
---|
964 |
|
---|
965 | if (!nextObs && nextId)
|
---|
966 | {
|
---|
967 | if (obs[sub].task=="SUSPEND")
|
---|
968 | dim.log("Further observation suspended.");
|
---|
969 | else
|
---|
970 | dim.log("No further observation scheduled.");
|
---|
971 | console.out("");
|
---|
972 | nextId = undefined;
|
---|
973 | }
|
---|
974 |
|
---|
975 | //if (nextObs==undefined && obs[obs.length-1].task!="SHUTDOWN")
|
---|
976 | // throw Error("Last scheduled measurement must be a shutdown.");
|
---|
977 |
|
---|
978 | // We are done with all measurement slots for this
|
---|
979 | // observation... wait for next observation
|
---|
980 | if (sub>=obs.length)
|
---|
981 | {
|
---|
982 | v8.sleep(1000);
|
---|
983 | continue;
|
---|
984 | }
|
---|
985 |
|
---|
986 | if (system_on===false && obs[sub].task!="STARTUP")
|
---|
987 | {
|
---|
988 | v8.sleep(1000);
|
---|
989 | continue;
|
---|
990 | }
|
---|
991 |
|
---|
992 | // Check if sun is still up... only DATA and */
|
---|
993 | if ((obs[sub].task=="DATA" || obs[sub].task=="RATESCAN" || obs[sub].task=="RATESCAN2" ) && sun.isUp)
|
---|
994 | {
|
---|
995 | var now = new Date();
|
---|
996 | var remaining = (sun.set - now)/60000;
|
---|
997 | console.out(now.toUTCString()+" - "+obs[sub].task+": Sun above FACT-horizon: sleeping 1min, remaining %.1fmin".$(remaining));
|
---|
998 | v8.sleep(60000);
|
---|
999 | continue;
|
---|
1000 | }
|
---|
1001 |
|
---|
1002 |
|
---|
1003 | if (obs[sub].task!="IDLE" && (obs[sub].task!="DATA" && run>0))
|
---|
1004 | dim.log("New task ["+obs[sub]+"]");
|
---|
1005 |
|
---|
1006 | // FIXME: Maybe print a warning if Drive is on during day time!
|
---|
1007 |
|
---|
1008 | // It is not ideal that we allow the drive to be on during day time, but
|
---|
1009 | // otherwise it is difficult to allow e.g. the STARTUP at the beginning of the night
|
---|
1010 | var power_states = sun.isUp || !system_on ? [ "DriveOff", "SystemOn" ] : [ "SystemOn" ];
|
---|
1011 | var drive_states = sun.isUp || !system_on ? undefined : [ "Initialized", "Tracking", "OnTrack" ];
|
---|
1012 |
|
---|
1013 | // A scheduled task was found, lets check if all servers are
|
---|
1014 | // still only and in reasonable states. If this is not the case,
|
---|
1015 | // something unexpected must have happend and the script is aborted.
|
---|
1016 | //console.out(" Checking states [general]");
|
---|
1017 | var table =
|
---|
1018 | [
|
---|
1019 | [ "TNG_WEATHER" ],
|
---|
1020 | [ "MAGIC_WEATHER" ],
|
---|
1021 | [ "CHAT" ],
|
---|
1022 | [ "SMART_FACT" ],
|
---|
1023 | [ "TEMPERATURE" ],
|
---|
1024 | [ "DATA_LOGGER", [ "NightlyFileOpen", "WaitForRun", "Logging" ] ],
|
---|
1025 | [ "FSC_CONTROL", [ "Connected" ] ],
|
---|
1026 | [ "MCP", [ "Idle" ] ],
|
---|
1027 | [ "TIME_CHECK", [ "Valid" ] ],
|
---|
1028 | [ "PWR_CONTROL", power_states/*[ "SystemOn" ]*/ ],
|
---|
1029 | [ "AGILENT_CONTROL_24V", [ "VoltageOn" ] ],
|
---|
1030 | [ "AGILENT_CONTROL_50V", [ "VoltageOn" ] ],
|
---|
1031 | //[ "AGILENT_CONTROL_80V", [ "VoltageOn" ] ],
|
---|
1032 | [ "AGILENT_CONTROL_80V", [ "VoltageOn", "Disconnected" ] ], //hack to allow for data taking while agilent not available
|
---|
1033 | [ "BIAS_CONTROL", [ "VoltageOff", "VoltageOn", "Ramping" ] ],
|
---|
1034 | [ "FEEDBACK", [ "Calibrated", "InProgress", "OnStandby", "Warning", "Critical" ] ],
|
---|
1035 | [ "LID_CONTROL", [ "Open", "Closed" ] ],
|
---|
1036 | [ "DRIVE_CONTROL", drive_states/*[ "Armed", "Tracking", "OnTrack" ]*/ ],
|
---|
1037 | [ "FTM_CONTROL", [ "Valid", "TriggerOn" ] ],
|
---|
1038 | [ "FAD_CONTROL", [ "Connected", "RunInProgress" ] ],
|
---|
1039 | [ "RATE_SCAN", [ "Connected" ] ],
|
---|
1040 | [ "RATE_CONTROL", [ "Connected", "GlobalThresholdSet", "InProgress" ] ],
|
---|
1041 | [ "GPS_CONTROL", [ "Locked" ] ],
|
---|
1042 | [ "SQM_CONTROL", [ "Disconnected", "Connected", "Valid" ] ],
|
---|
1043 | [ "PFMINI_CONTROL", [ "Disconnected", "Connected", "Receiving" ] ],
|
---|
1044 | [ "BIAS_TEMP", [ "Valid" ] ],
|
---|
1045 | ];
|
---|
1046 |
|
---|
1047 |
|
---|
1048 | if (!checkStates(table))
|
---|
1049 | {
|
---|
1050 | throw new Error("Something unexpected has happened. One of the servers "+
|
---|
1051 | "is in a state in which it should not be. Please,"+
|
---|
1052 | "try to find out what happened...");
|
---|
1053 | }
|
---|
1054 |
|
---|
1055 | datalogger_subscriptions.check();
|
---|
1056 |
|
---|
1057 | // If this is an observation which needs the voltage to be swicthed on
|
---|
1058 | // skip that if the voltage is not stable
|
---|
1059 | /*
|
---|
1060 | if (obs[sub].task=="DATA" || obs[sub].task=="RATESCAN")
|
---|
1061 | {
|
---|
1062 | var state = dim.state("FEEDBACK").name;
|
---|
1063 | if (state=="Warning" || state=="Critical" || state=="OnStandby")
|
---|
1064 | {
|
---|
1065 | v8.sleep(1000);
|
---|
1066 | continue;
|
---|
1067 | }
|
---|
1068 | }*/
|
---|
1069 |
|
---|
1070 |
|
---|
1071 | // Check if obs.task is one of the one-time-tasks
|
---|
1072 | switch (obs[sub].task)
|
---|
1073 | {
|
---|
1074 | case "IDLE":
|
---|
1075 | v8.sleep(5000);
|
---|
1076 | continue;
|
---|
1077 |
|
---|
1078 | case "SUSPEND":
|
---|
1079 | case "SLEEP":
|
---|
1080 | Shutdown("unlock"); //GoToSleep();
|
---|
1081 |
|
---|
1082 | dim.log("Task finished ["+obs[sub].task+"].");
|
---|
1083 | console.out("");
|
---|
1084 | sub++;
|
---|
1085 | continue;
|
---|
1086 |
|
---|
1087 | case "STARTUP":
|
---|
1088 | CloseLid();
|
---|
1089 |
|
---|
1090 | doDrsCalibration("startup"); // will switch the voltage off
|
---|
1091 |
|
---|
1092 | if (irq)
|
---|
1093 | break;
|
---|
1094 |
|
---|
1095 | service_feedback.voltageOn();
|
---|
1096 | service_feedback.waitForVoltageOn();
|
---|
1097 |
|
---|
1098 | // Before we can switch to 3000 we have to make the right DRS calibration
|
---|
1099 | dim.log("Taking single p.e. run.");
|
---|
1100 | while (!irq && !takeRun("single-pe", 10000));
|
---|
1101 |
|
---|
1102 | // It is unclear what comes next, so we better switch off the voltage
|
---|
1103 | service_feedback.voltageOff();
|
---|
1104 |
|
---|
1105 | system_on = true;
|
---|
1106 | dim.log("Task finished [STARTUP]");
|
---|
1107 | console.out("");
|
---|
1108 | break;
|
---|
1109 |
|
---|
1110 | case "SHUTDOWN":
|
---|
1111 | Shutdown("singlepe");
|
---|
1112 | system_on = false;
|
---|
1113 |
|
---|
1114 | // FIXME: Avoid new observations after a shutdown until
|
---|
1115 | // the next startup (set run back to -2?)
|
---|
1116 | sub++;
|
---|
1117 | dim.log("Task finished [SHUTDOWN]");
|
---|
1118 | console.out("");
|
---|
1119 | //console.out(" Waiting for next startup.", "");
|
---|
1120 | continue;
|
---|
1121 |
|
---|
1122 | case "DRSCALIB":
|
---|
1123 | doDrsCalibration("drscalib"); // will switch the voltage off
|
---|
1124 | dim.log("Task finished [DRSCALIB]");
|
---|
1125 | console.out("");
|
---|
1126 | break;
|
---|
1127 |
|
---|
1128 | case "SINGLEPE":
|
---|
1129 | // The lid must be closes
|
---|
1130 | CloseLid();
|
---|
1131 |
|
---|
1132 | // Check if DRS calibration is necessary
|
---|
1133 | var diff = getTimeSinceLastDrsCalib();
|
---|
1134 | if (diff>30 || diff==null)
|
---|
1135 | {
|
---|
1136 | doDrsCalibration("singlepe"); // will turn voltage off
|
---|
1137 | if (irq)
|
---|
1138 | break;
|
---|
1139 | }
|
---|
1140 |
|
---|
1141 | // The voltage must be on
|
---|
1142 | service_feedback.voltageOn();
|
---|
1143 | service_feedback.waitForVoltageOn();
|
---|
1144 |
|
---|
1145 | // Before we can switch to 3000 we have to make the right DRS calibration
|
---|
1146 | dim.log("Taking single p.e. run.");
|
---|
1147 | while (!irq && !takeRun("single-pe", 10000));
|
---|
1148 |
|
---|
1149 | // It is unclear what comes next, so we better switch off the voltage
|
---|
1150 | service_feedback.voltageOff();
|
---|
1151 | dim.log("Task finished [SINGLE-PE]");
|
---|
1152 | console.out("");
|
---|
1153 | break;
|
---|
1154 |
|
---|
1155 | case "OVTEST":
|
---|
1156 | var locked = dim.state("DRIVE_CONTROL").name=="Locked";
|
---|
1157 | if (!locked)
|
---|
1158 | dim.send("DRIVE_CONTROL/PARK");
|
---|
1159 |
|
---|
1160 | dim.send("FEEDBACK/STOP");
|
---|
1161 |
|
---|
1162 | // The lid must be closed
|
---|
1163 | CloseLid();
|
---|
1164 |
|
---|
1165 | if (!locked)
|
---|
1166 | {
|
---|
1167 | //console.out("Waiting for telescope to park. This may take a while.");
|
---|
1168 | dim.wait("DRIVE_CONTROL", "Locked", 3000);
|
---|
1169 | dim.send("DRIVE_CONTROL/UNLOCK");
|
---|
1170 | }
|
---|
1171 |
|
---|
1172 | // Check if DRS calibration is necessary
|
---|
1173 | var diff = getTimeSinceLastDrsCalib();
|
---|
1174 | if (diff>30 || diff==null)
|
---|
1175 | {
|
---|
1176 | doDrsCalibration("ovtest"); // will turn voltage off
|
---|
1177 | if (irq)
|
---|
1178 | break;
|
---|
1179 | }
|
---|
1180 |
|
---|
1181 | // The voltage must be on
|
---|
1182 | service_feedback.voltageOn(0.4);
|
---|
1183 | service_feedback.waitForVoltageOn();
|
---|
1184 |
|
---|
1185 | dim.log("Taking single p.e. run (0.4V)");
|
---|
1186 | while (!irq && !takeRun("single-pe", 10000));
|
---|
1187 |
|
---|
1188 | for (var i=5; i<18 && !irq; i++)
|
---|
1189 | {
|
---|
1190 | dim.send("FEEDBACK/STOP");
|
---|
1191 | dim.wait("FEEDBACK", "Calibrated", 3000);
|
---|
1192 | dim.wait("BIAS_CONTROL", "VoltageOn", 3000);
|
---|
1193 | dim.send("FEEDBACK/START", i*0.1);
|
---|
1194 | dim.wait("FEEDBACK", "InProgress", 45000);
|
---|
1195 | dim.wait("BIAS_CONTROL", "VoltageOn", 60000); // FIXME: 30000?
|
---|
1196 | service_feedback.waitForVoltageOn();
|
---|
1197 | dim.log("Taking single p.e. run ("+(i*0.1)+"V)");
|
---|
1198 | while (!irq && !takeRun("single-pe", 10000));
|
---|
1199 | }
|
---|
1200 |
|
---|
1201 | // It is unclear what comes next, so we better switch off the voltage
|
---|
1202 | service_feedback.voltageOff();
|
---|
1203 | dim.log("Task finished [OVTEST]");
|
---|
1204 | console.out("");
|
---|
1205 | break;
|
---|
1206 |
|
---|
1207 | case "RATESCAN":
|
---|
1208 | var tm1 = new Date();
|
---|
1209 |
|
---|
1210 | // This is a workaround to make sure that we really catch
|
---|
1211 | // the new OnTrack state later and not the old one
|
---|
1212 | dim.send("DRIVE_CONTROL/STOP");
|
---|
1213 | dim.wait("DRIVE_CONTROL", "Initialized", 15000);
|
---|
1214 |
|
---|
1215 | // The lid must be open
|
---|
1216 | OpenLid();
|
---|
1217 |
|
---|
1218 | // Switch the voltage to a reduced level (Ubd)
|
---|
1219 | service_feedback.voltageOn(0);
|
---|
1220 |
|
---|
1221 | if (obs[sub].source != null) // undefined != null -> false
|
---|
1222 | {
|
---|
1223 | dim.log("Pointing telescope to '"+obs[sub].source+"'.");
|
---|
1224 | dim.send("DRIVE_CONTROL/TRACK_ON", obs[sub].source);
|
---|
1225 | }
|
---|
1226 | else
|
---|
1227 | {
|
---|
1228 | dim.log("Pointing telescope to ra="+obs[sub].ra+" dec="+obs[sub].dec);
|
---|
1229 | dim.send("DRIVE_CONTROL/TRACK", obs[sub].ra, obs[sub].dec);
|
---|
1230 | }
|
---|
1231 |
|
---|
1232 | dim.wait("DRIVE_CONTROL", "OnTrack", 150000); // 110s for turning and 30s for stabilizing
|
---|
1233 |
|
---|
1234 | // Now tracking stable, switch voltage to nominal level and wait
|
---|
1235 | // for stability.
|
---|
1236 | service_feedback.voltageOn();
|
---|
1237 | service_feedback.waitForVoltageOn();
|
---|
1238 |
|
---|
1239 | if (!irq)
|
---|
1240 | {
|
---|
1241 | dim.log("Starting calibration.");
|
---|
1242 |
|
---|
1243 | // Calibration (2% of 20')
|
---|
1244 | while (!irq)
|
---|
1245 | {
|
---|
1246 | if (irq || !takeRun("pedestal", 1000)) // 80 Hz -> 10s
|
---|
1247 | continue;
|
---|
1248 | //if (irq || !takeRun("light-pulser-ext", 1000)) // 80 Hz -> 10s
|
---|
1249 | // continue;
|
---|
1250 | break;
|
---|
1251 | }
|
---|
1252 |
|
---|
1253 | var tm2 = new Date();
|
---|
1254 |
|
---|
1255 | dim.log("Starting ratescan.");
|
---|
1256 |
|
---|
1257 | //set reference to whole camera (in case it was changed)
|
---|
1258 | dim.send("RATE_SCAN/SET_REFERENCE_CAMERA");
|
---|
1259 | // Start rate scan
|
---|
1260 | dim.send("RATE_SCAN/START_THRESHOLD_SCAN", 50, 1000, -10, "default");
|
---|
1261 |
|
---|
1262 | // Lets wait if the ratescan really starts... this might take a few
|
---|
1263 | // seconds because RATE_SCAN configures the ftm and is waiting for
|
---|
1264 | // it to be configured.
|
---|
1265 | dim.wait("RATE_SCAN", "InProgress", 10000);
|
---|
1266 | dim.wait("RATE_SCAN", "Connected", 2700000);
|
---|
1267 |
|
---|
1268 | // Here one could implement a watchdog for the feedback as well, but what is the difference
|
---|
1269 | // whether finally one has to find out if the feedback was in the correct state
|
---|
1270 | // or the ratescan was interrupted?
|
---|
1271 |
|
---|
1272 | // this line is actually some kind of hack.
|
---|
1273 | // after the Ratescan, no data is written to disk. I don't know why, but it happens all the time
|
---|
1274 | // So I decided to put this line here as a kind of patchwork....
|
---|
1275 | //dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
|
---|
1276 |
|
---|
1277 | dim.log("Ratescan done [%.1fs, %.1fs]".$((tm2-tm1)/1000, (new Date()-tm2)/1000));
|
---|
1278 | }
|
---|
1279 |
|
---|
1280 | dim.log("Task finished [RATESCAN]");
|
---|
1281 | console.out("");
|
---|
1282 | break; // case "RATESCAN"
|
---|
1283 |
|
---|
1284 | case "RATESCAN2":
|
---|
1285 | var tm1 = new Date();
|
---|
1286 |
|
---|
1287 | // This is a workaround to make sure that we really catch
|
---|
1288 | // the new OnTrack state later and not the old one
|
---|
1289 | dim.send("DRIVE_CONTROL/STOP");
|
---|
1290 | dim.wait("DRIVE_CONTROL", "Initialized", 15000);
|
---|
1291 |
|
---|
1292 | if (obs[sub].rstype=="dark-bias-off")
|
---|
1293 | service_feedback.voltageOff();
|
---|
1294 | else
|
---|
1295 | {
|
---|
1296 | // Switch the voltage to a reduced level (Ubd)
|
---|
1297 | var bias = dim.state("BIAS_CONTROL").name;
|
---|
1298 | if (bias=="VoltageOn" || bias=="Ramping")
|
---|
1299 | service_feedback.voltageOn(0);
|
---|
1300 | }
|
---|
1301 |
|
---|
1302 | // Open the lid if required
|
---|
1303 | if (!obs[sub].lidclosed)
|
---|
1304 | OpenLid();
|
---|
1305 | else
|
---|
1306 | CloseLid();
|
---|
1307 |
|
---|
1308 | // track source/position or move to position
|
---|
1309 | if (obs[sub].lidclosed)
|
---|
1310 | {
|
---|
1311 | dim.log("Moving telescope to zd="+obs[sub].zd+" az="+obs[sub].az);
|
---|
1312 | dim.send("DRIVE_CONTROL/MOVE_TO", obs[sub].zd, obs[sub].az);
|
---|
1313 | v8.sleep(3000);
|
---|
1314 | dim.wait("DRIVE_CONTROL", "Initialized", 150000); // 110s for turning and 30s for stabilizing
|
---|
1315 | }
|
---|
1316 | else
|
---|
1317 | {
|
---|
1318 | if (obs[sub].source != null) // undefined != null -> false
|
---|
1319 | {
|
---|
1320 | dim.log("Pointing telescope to '"+obs[sub].source+"'.");
|
---|
1321 | dim.send("DRIVE_CONTROL/TRACK_ON", obs[sub].source);
|
---|
1322 | }
|
---|
1323 | else
|
---|
1324 | {
|
---|
1325 | dim.log("Pointing telescope to ra="+obs[sub].ra+" dec="+obs[sub].dec);
|
---|
1326 | dim.send("DRIVE_CONTROL/TRACK", obs[sub].ra, obs[sub].dec);
|
---|
1327 | }
|
---|
1328 |
|
---|
1329 | dim.wait("DRIVE_CONTROL", "OnTrack", 150000); // 110s for turning and 30s for stabilizing
|
---|
1330 | }
|
---|
1331 |
|
---|
1332 | // Now tracking stable, switch voltage to nominal level and wait
|
---|
1333 | // for stability.
|
---|
1334 | if (obs[sub].rstype!="dark-bias-off")
|
---|
1335 | {
|
---|
1336 | service_feedback.voltageOn();
|
---|
1337 | service_feedback.waitForVoltageOn();
|
---|
1338 | }
|
---|
1339 |
|
---|
1340 | if (!irq)
|
---|
1341 | {
|
---|
1342 | var tm2 = new Date();
|
---|
1343 |
|
---|
1344 | dim.log("Starting ratescan 2/1 ["+obs[sub].rstype+"]");
|
---|
1345 |
|
---|
1346 | //set reference to whole camera (in case it was changed)
|
---|
1347 | dim.send("RATE_SCAN/SET_REFERENCE_CAMERA");
|
---|
1348 | // Start rate scan
|
---|
1349 | dim.send("RATE_SCAN/START_THRESHOLD_SCAN", 50, 300, 20, obs[sub].rstype);
|
---|
1350 |
|
---|
1351 | // Lets wait if the ratescan really starts... this might take a few
|
---|
1352 | // seconds because RATE_SCAN configures the ftm and is waiting for
|
---|
1353 | // it to be configured.
|
---|
1354 | dim.wait("RATE_SCAN", "InProgress", 10000);
|
---|
1355 | //FIXME: discuss what best value is here
|
---|
1356 | dim.wait("RATE_SCAN", "Connected", 2700000);//45min
|
---|
1357 | //dim.wait("RATE_SCAN", "Connected", 1200000);//3.3h
|
---|
1358 |
|
---|
1359 | // Here one could implement a watchdog for the feedback as well, but what is the difference
|
---|
1360 | // whether finally one has to find out if the feedback was in the correct state
|
---|
1361 | // or the ratescan was interrupted?
|
---|
1362 |
|
---|
1363 | // this line is actually some kind of hack.
|
---|
1364 | // after the Ratescan, no data is written to disk. I don't know why, but it happens all the time
|
---|
1365 | // So I decided to put this line here as a kind of patchwork....
|
---|
1366 | //dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
|
---|
1367 |
|
---|
1368 | dim.log("Ratescan 2/1 done [%.1fs, %.1fs]".$((tm2-tm1)/1000, (new Date()-tm2)/1000));
|
---|
1369 | }
|
---|
1370 |
|
---|
1371 | if (!irq)
|
---|
1372 | {
|
---|
1373 | var tm2 = new Date();
|
---|
1374 |
|
---|
1375 | dim.log("Starting ratescan 2/2 ["+obs[sub].rstype+"]");
|
---|
1376 |
|
---|
1377 | // Start rate scan
|
---|
1378 | dim.send("RATE_SCAN/START_THRESHOLD_SCAN", 300, 1000, 100, obs[sub].rstype);
|
---|
1379 |
|
---|
1380 | // Lets wait if the ratescan really starts... this might take a few
|
---|
1381 | // seconds because RATE_SCAN configures the ftm and is waiting for
|
---|
1382 | // it to be configured.
|
---|
1383 | dim.wait("RATE_SCAN", "InProgress", 10000);
|
---|
1384 | dim.wait("RATE_SCAN", "Connected", 2700000);
|
---|
1385 |
|
---|
1386 | // Here one could implement a watchdog for the feedback as well, but what is the difference
|
---|
1387 | // whether finally one has to find out if the feedback was in the correct state
|
---|
1388 | // or the ratescan was interrupted?
|
---|
1389 |
|
---|
1390 | // this line is actually some kind of hack.
|
---|
1391 | // after the Ratescan, no data is written to disk. I don't know why, but it happens all the time
|
---|
1392 | // So I decided to put this line here as a kind of patchwork....
|
---|
1393 | //dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
|
---|
1394 |
|
---|
1395 | dim.log("Ratescan 2/2 done [%.1fs, %.1fs]".$((tm2-tm1)/1000, (new Date()-tm2)/1000));
|
---|
1396 | }
|
---|
1397 |
|
---|
1398 | dim.log("Task finished [RATESCAN2]");
|
---|
1399 | console.out("");
|
---|
1400 | break; // case "RATESCAN2"
|
---|
1401 |
|
---|
1402 | case "CUSTOM":
|
---|
1403 |
|
---|
1404 | // This is a workaround to make sure that we really catch
|
---|
1405 | // the new OnTrack state later and not the old one
|
---|
1406 | dim.send("DRIVE_CONTROL/STOP");
|
---|
1407 | dim.wait("DRIVE_CONTROL", "Initialized", 15000);
|
---|
1408 |
|
---|
1409 | // Ramp bias if needed
|
---|
1410 | if (!obs[sub].biason)
|
---|
1411 | service_feedback.voltageOff();
|
---|
1412 | else
|
---|
1413 | {
|
---|
1414 | // Switch the voltage to a reduced level (Ubd)
|
---|
1415 | var bias = dim.state("BIAS_CONTROL").name;
|
---|
1416 | if (bias=="VoltageOn" || bias=="Ramping")
|
---|
1417 | service_feedback.voltageOn(0);
|
---|
1418 | }
|
---|
1419 | // Close lid
|
---|
1420 | CloseLid();
|
---|
1421 |
|
---|
1422 | // Move to position (zd/az)
|
---|
1423 | dim.log("Moving telescope to zd="+obs[sub].zd+" az="+obs[sub].az);
|
---|
1424 | dim.send("DRIVE_CONTROL/MOVE_TO", obs[sub].zd, obs[sub].az);
|
---|
1425 | v8.sleep(3000);
|
---|
1426 | dim.wait("DRIVE_CONTROL", "Initialized", 150000); // 110s for turning and 30s for stabilizing
|
---|
1427 |
|
---|
1428 | // Now tracking stable, switch voltage to nominal level and wait
|
---|
1429 | // for stability.
|
---|
1430 | if (obs[sub].biason)
|
---|
1431 | {
|
---|
1432 | service_feedback.voltageOn();
|
---|
1433 | service_feedback.waitForVoltageOn();
|
---|
1434 | }
|
---|
1435 |
|
---|
1436 | if (!irq)
|
---|
1437 | {
|
---|
1438 | dim.log("Taking custom run with time "+obs[sub].time+"s, threshold="+obs[sub].threshold+", biason="+obs[sub].biason);
|
---|
1439 |
|
---|
1440 | var customRun = function()
|
---|
1441 | {
|
---|
1442 | v8.sleep(500);//wait that configuration is set
|
---|
1443 | dim.wait("FTM_CONTROL", "TriggerOn", 15000);
|
---|
1444 | dim.send("FAD_CONTROL/SEND_SINGLE_TRIGGER");
|
---|
1445 | dim.send("RATE_CONTROL/STOP");
|
---|
1446 | dim.send("FTM_CONTROL/STOP_TRIGGER");
|
---|
1447 | dim.wait("FTM_CONTROL", "Valid", 3000);
|
---|
1448 | dim.send("FTM_CONTROL/ENABLE_TRIGGER", true);
|
---|
1449 | dim.send("FTM_CONTROL/SET_TIME_MARKER_DELAY", 123);
|
---|
1450 | dim.send("FTM_CONTROL/SET_THRESHOLD", -1, obs[sub].threshold);
|
---|
1451 | v8.sleep(500);//wait that configuration is set
|
---|
1452 | dim.send("FTM_CONTROL/START_TRIGGER");
|
---|
1453 | dim.wait("FTM_CONTROL", "TriggerOn", 15000);
|
---|
1454 | }
|
---|
1455 |
|
---|
1456 | takeRun("custom", -1, obs[sub].time, customRun);
|
---|
1457 | }
|
---|
1458 | dim.log("Task finished [CUSTOM].");
|
---|
1459 | dim.log("");
|
---|
1460 | break; // case "CUSTOM"
|
---|
1461 |
|
---|
1462 | case "DATA":
|
---|
1463 |
|
---|
1464 | // ========================== case "DATA" ============================
|
---|
1465 | /*
|
---|
1466 | if (Sun.horizon("FACT").isUp)
|
---|
1467 | {
|
---|
1468 | console.out(" SHUTDOWN","");
|
---|
1469 | Shutdown();
|
---|
1470 | console.out(" Exit forced due to broken schedule", "");
|
---|
1471 | exit();
|
---|
1472 | }
|
---|
1473 | */
|
---|
1474 |
|
---|
1475 | // Calculate remaining time for this observation in minutes
|
---|
1476 | var remaining = nextObs==undefined ? 0 : (nextObs.start-new Date())/60000;
|
---|
1477 | //dim.log("DEBUG: remaining: "+remaining+" nextObs="+nextObs+" start="+nextObs.start);
|
---|
1478 |
|
---|
1479 | // ------------------------------------------------------------
|
---|
1480 |
|
---|
1481 | dim.log("Run count "+run+" [remaining "+parseInt(remaining)+"min]");
|
---|
1482 |
|
---|
1483 | // ----- Time since last DRS Calibration [min] ------
|
---|
1484 | var diff = getTimeSinceLastDrsCalib();
|
---|
1485 |
|
---|
1486 | // Changine pointing position and take calibration...
|
---|
1487 | // ...every four runs (every ~20min)
|
---|
1488 | // ...if at least ten minutes of observation time are left
|
---|
1489 | // ...if this is the first run on the source
|
---|
1490 | var point = (run%4==0 && remaining>10 && !obs[sub].orbit) || run==0; // undefined==null -> true!
|
---|
1491 |
|
---|
1492 | // Take DRS Calib...
|
---|
1493 | // ...every four runs (every ~20min)
|
---|
1494 | // ...at last every two hours
|
---|
1495 | // ...when DRS temperature has changed by more than 2deg (?)
|
---|
1496 | // ...when more than 15min of observation are left
|
---|
1497 | // ...no drs calibration was done yet
|
---|
1498 | var drscal = (run%4==0 && (remaining>15 && diff>70)) || diff==null;
|
---|
1499 |
|
---|
1500 | if (point)
|
---|
1501 | {
|
---|
1502 | // Switch the voltage to a reduced voltage level
|
---|
1503 | service_feedback.voltageOn(0);
|
---|
1504 |
|
---|
1505 | // Change wobble position every four runs,
|
---|
1506 | // start with alternating wobble positions each day
|
---|
1507 | var wobble = (parseInt(run/4) + parseInt(new Date()/1000/3600/24-0.5))%2+1;
|
---|
1508 | var angle = obs[sub].angle == null ? Math.random()*360 : obs[sub].angle;
|
---|
1509 |
|
---|
1510 | if (obs[sub].orbit) // != undefined, != null, != 0
|
---|
1511 | dim.log("Pointing telescope to '"+obs[sub].source+"' [orbit="+obs[sub].orbit+"min, angle="+angle+"]");
|
---|
1512 | else
|
---|
1513 | dim.log("Pointing telescope to '"+obs[sub].source+"' [wobble="+wobble+"]");
|
---|
1514 |
|
---|
1515 | // This is a workaround to make sure that we really catch
|
---|
1516 | // the new OnTrack state later and not the old one
|
---|
1517 | dim.send("DRIVE_CONTROL/STOP");
|
---|
1518 | dim.wait("DRIVE_CONTROL", "Initialized", 15000);
|
---|
1519 |
|
---|
1520 | if (obs[sub].orbit) // != undefined, != null, != 0
|
---|
1521 | dim.send("DRIVE_CONTROL/TRACK_ORBIT", angle, obs[sub].orbit, obs[sub].source);
|
---|
1522 | else
|
---|
1523 | dim.send("DRIVE_CONTROL/TRACK_WOBBLE", wobble, obs[sub].source);
|
---|
1524 |
|
---|
1525 | // Do we have to check if the telescope is really moving?
|
---|
1526 | // We can cross-check the SOURCE service later
|
---|
1527 | }
|
---|
1528 |
|
---|
1529 | if (drscal)
|
---|
1530 | {
|
---|
1531 | doDrsCalibration("data"); // will turn voltage off
|
---|
1532 |
|
---|
1533 | // Now we switch on the voltage and a significant amount of
|
---|
1534 | // time has been passed, so do the check again.
|
---|
1535 | sun = Sun.horizon(-12);
|
---|
1536 | if (!was_up && sun.isUp)
|
---|
1537 | {
|
---|
1538 | dim.log("Sun rise detected....");
|
---|
1539 | continue;
|
---|
1540 | }
|
---|
1541 | }
|
---|
1542 |
|
---|
1543 | if (irq)
|
---|
1544 | continue;
|
---|
1545 |
|
---|
1546 | OpenLid();
|
---|
1547 |
|
---|
1548 | // This is now th right time to wait for th drive to be stable
|
---|
1549 | dim.wait("DRIVE_CONTROL", "OnTrack", 150000); // 110s for turning and 30s for stabilizing
|
---|
1550 |
|
---|
1551 | // Now check the voltage... (do not start a lot of stuff just to do nothing)
|
---|
1552 | var state = dim.state("FEEDBACK").name;
|
---|
1553 | if (state=="Warning" || state=="Critical" || state=="OnStandby")
|
---|
1554 | {
|
---|
1555 | v8.sleep(60000);
|
---|
1556 | continue;
|
---|
1557 | }
|
---|
1558 |
|
---|
1559 | // Now we are 'OnTrack', so we can ramp to nominal voltage
|
---|
1560 | // and wait for the feedback to get stable
|
---|
1561 | service_feedback.voltageOn();
|
---|
1562 | service_feedback.waitForVoltageOn();
|
---|
1563 |
|
---|
1564 | // If pointing had changed, do calibration
|
---|
1565 | if (!irq && point)
|
---|
1566 | {
|
---|
1567 | dim.log("Starting calibration.");
|
---|
1568 |
|
---|
1569 | // Calibration (2% of 20')
|
---|
1570 | while (!irq)
|
---|
1571 | {
|
---|
1572 | if (irq || !takeRun("pedestal", 1000)) // 80 Hz -> 10s
|
---|
1573 | continue;
|
---|
1574 | // if (irq || !takeRun("light-pulser-ext", 1000)) // 80 Hz -> 10s
|
---|
1575 | // continue;
|
---|
1576 | break;
|
---|
1577 | }
|
---|
1578 | }
|
---|
1579 |
|
---|
1580 | //console.out(" Taking data: start [5min]");
|
---|
1581 |
|
---|
1582 | // FIXME: What do we do if during calibration something has happened
|
---|
1583 | // e.g. drive went to ERROR? Maybe we have to check all states again?
|
---|
1584 |
|
---|
1585 | var twilight = Sun.horizon(-16).isUp;
|
---|
1586 |
|
---|
1587 | if (twilight)
|
---|
1588 | {
|
---|
1589 | for (var i=0; i<5 && !irq; i++)
|
---|
1590 | takeRun("data", -1, 60); // Take data (1min)
|
---|
1591 | }
|
---|
1592 | else
|
---|
1593 | {
|
---|
1594 | var len = 300;
|
---|
1595 | while (!irq && len>15)
|
---|
1596 | {
|
---|
1597 | var time = new Date();
|
---|
1598 | if (takeRun("data", -1, len)) // Take data (5min)
|
---|
1599 | break;
|
---|
1600 |
|
---|
1601 | len -= parseInt((new Date()-time)/1000);
|
---|
1602 | }
|
---|
1603 | }
|
---|
1604 |
|
---|
1605 | //console.out(" Taking data: done");
|
---|
1606 | run++;
|
---|
1607 |
|
---|
1608 | continue; // case "DATA"
|
---|
1609 | }
|
---|
1610 |
|
---|
1611 | if (nextObs!=undefined && sub==obs.length-1)
|
---|
1612 | dim.log("Next observation will start at "+nextObs.start.toUTCString()+" [id="+nextObs.id+"]");
|
---|
1613 |
|
---|
1614 | sub++;
|
---|
1615 | }
|
---|
1616 |
|
---|
1617 | sub_drsruns.close();
|
---|
1618 |
|
---|
1619 | dim.log("Left main loop [irq="+irq+"]");
|
---|
1620 |
|
---|
1621 | // ================================================================
|
---|
1622 | // Comments and ToDo goes here
|
---|
1623 | // ================================================================
|
---|
1624 |
|
---|
1625 | // error handline : http://www.sitepoint.com/exceptional-exception-handling-in-javascript/
|
---|
1626 | // classes: http://www.phpied.com/3-ways-to-define-a-javascript-class/
|
---|