source: trunk/FACT++/scripts/Main.js@ 18988

Last change on this file since 18988 was 18965, checked in by tbretz, 6 years ago
Fixed a typo in a comment
File size: 53.5 KB
Line 
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
7dim.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//
15if (!$['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'
25include('scripts/Observation_class.js');
26include('scripts/getSchedule.js');
27
28var observations = [ ];
29
30// Get the observation scheduled for 'now' from the table and
31// return its index
32function 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 future 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/*
98function 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
115function 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
137var irq;
138
139function 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
196function 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
235function 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// ================================================================
264dim.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
279var service_feedback = new Subscription("FEEDBACK/CALIBRATED_CURRENTS");
280
281service_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
319service_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
385service_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
424service_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
452function 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/*
584function 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
629var datalogger_subscriptions = new Subscription("DATA_LOGGER/SUBSCRIPTIONS");
630datalogger_subscriptions.get(3000, false);
631
632datalogger_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// ----------------------------------------------------------------
736include('scripts/Startup.js');
737
738// ================================================================
739// Code to monitor clock conditioner
740// ================================================================
741
742var sub_counter = new Subscription("FTM_CONTROL/COUNTER");
743sub_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.
755var sub_incomplete = new Subscription("FAD_CONTROL/INCOMPLETE");
756var sub_connections = new Subscription("FAD_CONTROL/CONNECTIONS");
757var sub_startrun = new Subscription("FAD_CONTROL/START_RUN");
758sub_startrun.get(5000);
759
760include('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.");
767checkSend(["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.");
774service_feedback.get(5000);
775
776// ----------------------------------------------------------------
777// Connect to the DRS_RUNS service
778// ----------------------------------------------------------------
779//console.out("Drs runs init: start.");
780
781var sub_drsruns = new Subscription("FAD_CONTROL/DRS_RUNS");
782sub_drsruns.get(5000);
783// FIXME: Check if the last DRS calibration was complete?
784
785function 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// ----------------------------------------------------------------
806var triggerReloadSources = false;
807
808function handleIrq(cmd, args, time, user)
809{
810 console.out("Interrupt received:");
811 console.out(" IRQ: "+cmd);
812 console.out(" Time: "+time);
813 console.out(" User: "+user);
814
815 if (cmd.toUpperCase()=="RELOADSOURCES")
816 {
817 dim.log("Reloading source table scheduled before next pointing operation.");
818 triggerReloadSources = true;
819 return;
820 }
821
822 irq = cmd ? cmd : "stop";
823
824 // This will end a run in progress as if it where correctly stopped
825 if (dim.state("MCP").name=="TakingData")
826 dim.send("MCP/STOP");
827
828 // This will stop a rate scan in progress
829 if (dim.state("RATE_SCAN").name=="InProgress")
830 dim.send("RATE_SCAN/STOP");
831}
832
833dimctrl.setInterruptHandler(handleIrq);
834
835// ----------------------------------------------------------------
836// Make sure we will write files
837// ----------------------------------------------------------------
838dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
839
840// ----------------------------------------------------------------
841// Print some information for the user about the
842// expected first oberservation
843// ----------------------------------------------------------------
844var test = getObservation();
845if (test!=undefined)
846{
847 var n = new Date();
848 if (observations.length>0 && test==-1)
849 dim.log("First observation scheduled for "+observations[0].start.toUTCString()+" [id="+observations[0].id+"]");
850 if (test>=0 && test<observations.length)
851 dim.log("First observation should start immediately ["+observations[test].start.toUTCString()+", id="+observations[test].id+"]");
852 if (observations.length>0 && observations[0].start>n+12*3600*1000)
853 dim.log("No observations scheduled for the next 12 hours!");
854 if (observations.length==0)
855 dim.log("No observations scheduled!");
856}
857
858// ----------------------------------------------------------------
859// Start main loop
860// ----------------------------------------------------------------
861dim.log("Entering main loop.");
862console.out("");
863
864var run = -2; // getObservation never called
865var sub;
866var lastId;
867var nextId;
868var sun = Sun.horizon(-12);
869var system_on; // undefined
870
871function processIrq()
872{
873 if (!irq)
874 return false;
875
876 if (irq.toUpperCase()=="RESCHEDULE")
877 {
878 irq = undefined;
879 return false;
880 }
881
882 if (irq.toUpperCase()=="OFF")
883 {
884 service_feedback.voltageOff();
885 dim.send("FAD_CONTROL/CLOSE_OPEN_FILES");
886 return true;
887 }
888
889 /*
890 if (irq.toUpperCase()=="STOP")
891 {
892 dim.send("FAD_CONTROL/CLOSE_OPEN_FILES");
893 dim.send("MCP/STOP");
894 return true;
895 }*/
896
897 if (irq.toUpperCase()=="SHUTDOWN")
898 {
899 Shutdown();
900 return true;
901 }
902
903 dim.log("IRQ "+irq+" unhandled... stopping script.");
904 return true;
905}
906
907while (!processIrq())
908{
909 // Check if observation position is still valid
910 // If source position has changed, set run=0
911 var idxObs = getObservation();
912 if (idxObs===undefined)
913 break;
914
915 // we are still waiting for the first observation in the schedule
916 if (idxObs==-1)
917 {
918 // flag that the first observation will be in the future
919 run = -1;
920 v8.sleep(1000);
921 continue;
922 }
923
924 // Check if we have to take action do to sun-rise
925 var was_up = sun.isUp;
926 sun = Sun.horizon(-12);
927 if (!was_up && sun.isUp)
928 {
929 console.out("");
930 dim.log("Sun rise detected.... automatic shutdown initiated!");
931 // FIXME: State check?
932 Shutdown();
933 system_on = false;
934 continue;
935 }
936
937 // Current and next observation target
938 var obs = observations[idxObs];
939 var nextObs = observations[idxObs+1];
940
941 // Check if observation target has changed
942 if (lastId!=obs.id) // !Object.isEqual(obs, nextObs)
943 {
944 dim.log("Starting new observation ["+obs.start.toUTCString()+", id="+obs.id+"]");
945
946 // This is the first source, but we do not come from
947 // a scheduled 'START', so we have to check if the
948 // telescop is operational already
949 sub = 0;
950 if (run<0)
951 {
952 //Startup(); // -> Bias On/Off?, Lid open/closed?
953 //CloseLid();
954 }
955
956 // The first observation had a start-time in the past...
957 // In this particular case start with the last entry
958 // in the list of measurements
959 if (run==-2)
960 sub = obs.length-1;
961
962 run = 0;
963 lastId = obs.id;
964 }
965
966 //dim.log("DEBUG: Next observation scheduled for "+nextObs.start.toUTCString()+" [id="+nextObs.id+"]");
967 if (nextObs && nextId!=nextObs.id)
968 {
969 dim.log("Next observation scheduled for "+nextObs.start.toUTCString()+" [id="+nextObs.id+"]");
970 console.out("");
971 nextId = nextObs.id;
972 }
973
974 if (!nextObs && nextId)
975 {
976 if (obs[sub].task=="SUSPEND")
977 dim.log("Further observation suspended.");
978 else
979 dim.log("No further observation scheduled.");
980 console.out("");
981 nextId = undefined;
982 }
983
984 //if (nextObs==undefined && obs[obs.length-1].task!="SHUTDOWN")
985 // throw Error("Last scheduled measurement must be a shutdown.");
986
987 // We are done with all measurement slots for this
988 // observation... wait for next observation
989 if (sub>=obs.length)
990 {
991 v8.sleep(1000);
992 continue;
993 }
994
995 if (system_on===false && obs[sub].task!="STARTUP")
996 {
997 v8.sleep(1000);
998 continue;
999 }
1000
1001 // Check if sun is still up... only DATA and */
1002 if ((obs[sub].task=="DATA" || obs[sub].task=="RATESCAN" || obs[sub].task=="RATESCAN2" ) && sun.isUp)
1003 {
1004 var now = new Date();
1005 var remaining = (sun.set - now)/60000;
1006 console.out(now.toUTCString()+" - "+obs[sub].task+": Sun above FACT-horizon: sleeping 1min, remaining %.1fmin".$(remaining));
1007 v8.sleep(60000);
1008 continue;
1009 }
1010
1011
1012 if (obs[sub].task!="IDLE" && (obs[sub].task!="DATA" && run>0))
1013 dim.log("New task ["+obs[sub]+"]");
1014
1015 // FIXME: Maybe print a warning if Drive is on during day time!
1016
1017 // It is not ideal that we allow the drive to be on during day time, but
1018 // otherwise it is difficult to allow e.g. the STARTUP at the beginning of the night
1019 var power_states = sun.isUp || !system_on ? [ "DriveOff", "SystemOn" ] : [ "SystemOn" ];
1020 var drive_states = sun.isUp || !system_on ? undefined : [ "Initialized", "Tracking", "OnTrack" ];
1021
1022 // A scheduled task was found, lets check if all servers are
1023 // still only and in reasonable states. If this is not the case,
1024 // something unexpected must have happend and the script is aborted.
1025 //console.out(" Checking states [general]");
1026 var table =
1027 [
1028 [ "TNG_WEATHER" ],
1029 [ "MAGIC_WEATHER" ],
1030 [ "CHAT" ],
1031 [ "SMART_FACT" ],
1032 [ "TEMPERATURE" ],
1033 [ "DATA_LOGGER", [ "NightlyFileOpen", "WaitForRun", "Logging" ] ],
1034 [ "FSC_CONTROL", [ "Connected" ] ],
1035 [ "MCP", [ "Idle" ] ],
1036 [ "TIME_CHECK", [ "Valid" ] ],
1037 [ "PWR_CONTROL", power_states/*[ "SystemOn" ]*/ ],
1038 [ "AGILENT_CONTROL_24V", [ "VoltageOn" ] ],
1039 [ "AGILENT_CONTROL_50V", [ "VoltageOn" ] ],
1040 //[ "AGILENT_CONTROL_80V", [ "VoltageOn" ] ],
1041 [ "AGILENT_CONTROL_80V", [ "VoltageOn", "Disconnected" ] ], //hack to allow for data taking while agilent not available
1042 [ "BIAS_CONTROL", [ "VoltageOff", "VoltageOn", "Ramping" ] ],
1043 [ "FEEDBACK", [ "Calibrated", "InProgress", "OnStandby", "Warning", "Critical" ] ],
1044 [ "LID_CONTROL", [ "Open", "Closed" ] ],
1045 [ "DRIVE_CONTROL", drive_states/*[ "Armed", "Tracking", "OnTrack" ]*/ ],
1046 [ "FTM_CONTROL", [ "Valid", "TriggerOn" ] ],
1047 [ "FAD_CONTROL", [ "Connected", "RunInProgress" ] ],
1048 [ "RATE_SCAN", [ "Connected" ] ],
1049 [ "RATE_CONTROL", [ "Connected", "GlobalThresholdSet", "InProgress" ] ],
1050 [ "GPS_CONTROL", [ "Locked" ] ],
1051 [ "SQM_CONTROL", [ "Disconnected", "Connected", "Valid" ] ],
1052 [ "PFMINI_CONTROL", [ "Disconnected", "Connected", "Receiving" ] ],
1053 [ "BIAS_TEMP", [ "Valid" ] ],
1054 ];
1055
1056
1057 if (!checkStates(table))
1058 {
1059 throw new Error("Something unexpected has happened. One of the servers "+
1060 "is in a state in which it should not be. Please,"+
1061 "try to find out what happened...");
1062 }
1063
1064 datalogger_subscriptions.check();
1065
1066 // If this is an observation which needs the voltage to be swicthed on
1067 // skip that if the voltage is not stable
1068 /*
1069 if (obs[sub].task=="DATA" || obs[sub].task=="RATESCAN")
1070 {
1071 var state = dim.state("FEEDBACK").name;
1072 if (state=="Warning" || state=="Critical" || state=="OnStandby")
1073 {
1074 v8.sleep(1000);
1075 continue;
1076 }
1077 }*/
1078
1079
1080 // Check if obs.task is one of the one-time-tasks
1081 switch (obs[sub].task)
1082 {
1083 case "IDLE":
1084 v8.sleep(5000);
1085 continue;
1086
1087 case "SUSPEND":
1088 case "SLEEP":
1089 Shutdown("unlock"); //GoToSleep();
1090
1091 dim.log("Task finished ["+obs[sub].task+"].");
1092 console.out("");
1093 sub++;
1094 continue;
1095
1096 case "STARTUP":
1097 CloseLid();
1098
1099 doDrsCalibration("startup"); // will switch the voltage off
1100
1101 if (irq)
1102 break;
1103
1104 service_feedback.voltageOn();
1105 service_feedback.waitForVoltageOn();
1106
1107 // Before we can switch to 3000 we have to make the right DRS calibration
1108 dim.log("Taking single p.e. run.");
1109 while (!irq && !takeRun("single-pe", 10000));
1110
1111 // It is unclear what comes next, so we better switch off the voltage
1112 service_feedback.voltageOff();
1113
1114 system_on = true;
1115 dim.log("Task finished [STARTUP]");
1116 console.out("");
1117 break;
1118
1119 case "SHUTDOWN":
1120 Shutdown("singlepe");
1121 system_on = false;
1122
1123 // FIXME: Avoid new observations after a shutdown until
1124 // the next startup (set run back to -2?)
1125 sub++;
1126 dim.log("Task finished [SHUTDOWN]");
1127 console.out("");
1128 //console.out(" Waiting for next startup.", "");
1129 continue;
1130
1131 case "DRSCALIB":
1132 doDrsCalibration("drscalib"); // will switch the voltage off
1133 dim.log("Task finished [DRSCALIB]");
1134 console.out("");
1135 break;
1136
1137 case "SINGLEPE":
1138 // The lid must be closes
1139 CloseLid();
1140
1141 // Check if DRS calibration is necessary
1142 var diff = getTimeSinceLastDrsCalib();
1143 if (diff>30 || diff==null)
1144 {
1145 doDrsCalibration("singlepe"); // will turn voltage off
1146 if (irq)
1147 break;
1148 }
1149
1150 // The voltage must be on
1151 service_feedback.voltageOn();
1152 service_feedback.waitForVoltageOn();
1153
1154 // Before we can switch to 3000 we have to make the right DRS calibration
1155 dim.log("Taking single p.e. run.");
1156 while (!irq && !takeRun("single-pe", 10000));
1157
1158 // It is unclear what comes next, so we better switch off the voltage
1159 service_feedback.voltageOff();
1160 dim.log("Task finished [SINGLE-PE]");
1161 console.out("");
1162 break;
1163
1164 case "OVTEST":
1165 var locked = dim.state("DRIVE_CONTROL").name=="Locked";
1166 if (!locked)
1167 dim.send("DRIVE_CONTROL/PARK");
1168
1169 dim.send("FEEDBACK/STOP");
1170
1171 // The lid must be closed
1172 CloseLid();
1173
1174 if (!locked)
1175 {
1176 //console.out("Waiting for telescope to park. This may take a while.");
1177 dim.wait("DRIVE_CONTROL", "Locked", 3000);
1178 dim.send("DRIVE_CONTROL/UNLOCK");
1179 }
1180
1181 // Check if DRS calibration is necessary
1182 var diff = getTimeSinceLastDrsCalib();
1183 if (diff>30 || diff==null)
1184 {
1185 doDrsCalibration("ovtest"); // will turn voltage off
1186 if (irq)
1187 break;
1188 }
1189
1190 // The voltage must be on
1191 service_feedback.voltageOn(0.4);
1192 service_feedback.waitForVoltageOn();
1193
1194 dim.log("Taking single p.e. run (0.4V)");
1195 while (!irq && !takeRun("single-pe", 10000));
1196
1197 for (var i=5; i<18 && !irq; i++)
1198 {
1199 dim.send("FEEDBACK/STOP");
1200 dim.wait("FEEDBACK", "Calibrated", 3000);
1201 dim.wait("BIAS_CONTROL", "VoltageOn", 3000);
1202 dim.send("FEEDBACK/START", i*0.1);
1203 dim.wait("FEEDBACK", "InProgress", 45000);
1204 dim.wait("BIAS_CONTROL", "VoltageOn", 60000); // FIXME: 30000?
1205 service_feedback.waitForVoltageOn();
1206 dim.log("Taking single p.e. run ("+(i*0.1)+"V)");
1207 while (!irq && !takeRun("single-pe", 10000));
1208 }
1209
1210 // It is unclear what comes next, so we better switch off the voltage
1211 service_feedback.voltageOff();
1212 dim.log("Task finished [OVTEST]");
1213 console.out("");
1214 break;
1215
1216 case "RATESCAN":
1217 var tm1 = new Date();
1218
1219 // This is a workaround to make sure that we really catch
1220 // the new OnTrack state later and not the old one
1221 dim.send("DRIVE_CONTROL/STOP");
1222 dim.wait("DRIVE_CONTROL", "Initialized", 15000);
1223
1224 // The lid must be open
1225 OpenLid();
1226
1227 // Switch the voltage to a reduced level (Ubd)
1228 service_feedback.voltageOn(0);
1229
1230 if (obs[sub].source != null) // undefined != null -> false
1231 {
1232 dim.log("Pointing telescope to '"+obs[sub].source+"'.");
1233 dim.send("DRIVE_CONTROL/TRACK_ON", obs[sub].source);
1234 }
1235 else
1236 {
1237 dim.log("Pointing telescope to ra="+obs[sub].ra+" dec="+obs[sub].dec);
1238 dim.send("DRIVE_CONTROL/TRACK", obs[sub].ra, obs[sub].dec);
1239 }
1240
1241 dim.wait("DRIVE_CONTROL", "OnTrack", 150000); // 110s for turning and 30s for stabilizing
1242
1243 // Now tracking stable, switch voltage to nominal level and wait
1244 // for stability.
1245 service_feedback.voltageOn();
1246 service_feedback.waitForVoltageOn();
1247
1248 if (!irq)
1249 {
1250 dim.log("Starting calibration.");
1251
1252 // Calibration (2% of 20')
1253 while (!irq)
1254 {
1255 if (irq || !takeRun("pedestal", 1000)) // 80 Hz -> 10s
1256 continue;
1257 //if (irq || !takeRun("light-pulser-ext", 1000)) // 80 Hz -> 10s
1258 // continue;
1259 break;
1260 }
1261
1262 var tm2 = new Date();
1263
1264 dim.log("Starting ratescan.");
1265
1266 //set reference to whole camera (in case it was changed)
1267 dim.send("RATE_SCAN/SET_REFERENCE_CAMERA");
1268 // Start rate scan
1269 dim.send("RATE_SCAN/START_THRESHOLD_SCAN", 50, 1000, -10, "default");
1270
1271 // Lets wait if the ratescan really starts... this might take a few
1272 // seconds because RATE_SCAN configures the ftm and is waiting for
1273 // it to be configured.
1274 dim.wait("RATE_SCAN", "InProgress", 10000);
1275 dim.wait("RATE_SCAN", "Connected", 2700000);
1276
1277 // Here one could implement a watchdog for the feedback as well, but what is the difference
1278 // whether finally one has to find out if the feedback was in the correct state
1279 // or the ratescan was interrupted?
1280
1281 // this line is actually some kind of hack.
1282 // after the Ratescan, no data is written to disk. I don't know why, but it happens all the time
1283 // So I decided to put this line here as a kind of patchwork....
1284 //dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
1285
1286 dim.log("Ratescan done [%.1fs, %.1fs]".$((tm2-tm1)/1000, (new Date()-tm2)/1000));
1287 }
1288
1289 dim.log("Task finished [RATESCAN]");
1290 console.out("");
1291 break; // case "RATESCAN"
1292
1293 case "RATESCAN2":
1294 var tm1 = new Date();
1295
1296 // This is a workaround to make sure that we really catch
1297 // the new OnTrack state later and not the old one
1298 dim.send("DRIVE_CONTROL/STOP");
1299 dim.wait("DRIVE_CONTROL", "Initialized", 15000);
1300
1301 if (obs[sub].rstype=="dark-bias-off")
1302 service_feedback.voltageOff();
1303 else
1304 {
1305 // Switch the voltage to a reduced level (Ubd)
1306 var bias = dim.state("BIAS_CONTROL").name;
1307 if (bias=="VoltageOn" || bias=="Ramping")
1308 service_feedback.voltageOn(0);
1309 }
1310
1311 // Open the lid if required
1312 if (!obs[sub].lidclosed)
1313 OpenLid();
1314 else
1315 CloseLid();
1316
1317 // track source/position or move to position
1318 if (obs[sub].lidclosed)
1319 {
1320 dim.log("Moving telescope to zd="+obs[sub].zd+" az="+obs[sub].az);
1321 dim.send("DRIVE_CONTROL/MOVE_TO", obs[sub].zd, obs[sub].az);
1322 v8.sleep(3000);
1323 dim.wait("DRIVE_CONTROL", "Initialized", 150000); // 110s for turning and 30s for stabilizing
1324 }
1325 else
1326 {
1327 if (obs[sub].source != null) // undefined != null -> false
1328 {
1329 dim.log("Pointing telescope to '"+obs[sub].source+"'.");
1330 dim.send("DRIVE_CONTROL/TRACK_ON", obs[sub].source);
1331 }
1332 else
1333 {
1334 dim.log("Pointing telescope to ra="+obs[sub].ra+" dec="+obs[sub].dec);
1335 dim.send("DRIVE_CONTROL/TRACK", obs[sub].ra, obs[sub].dec);
1336 }
1337
1338 dim.wait("DRIVE_CONTROL", "OnTrack", 150000); // 110s for turning and 30s for stabilizing
1339 }
1340
1341 // Now tracking stable, switch voltage to nominal level and wait
1342 // for stability.
1343 if (obs[sub].rstype!="dark-bias-off")
1344 {
1345 service_feedback.voltageOn();
1346 service_feedback.waitForVoltageOn();
1347 }
1348
1349 if (!irq)
1350 {
1351 var tm2 = new Date();
1352
1353 dim.log("Starting ratescan 2/1 ["+obs[sub].rstype+"]");
1354
1355 //set reference to whole camera (in case it was changed)
1356 dim.send("RATE_SCAN/SET_REFERENCE_CAMERA");
1357 // Start rate scan
1358 dim.send("RATE_SCAN/START_THRESHOLD_SCAN", 50, 300, 20, obs[sub].rstype);
1359
1360 // Lets wait if the ratescan really starts... this might take a few
1361 // seconds because RATE_SCAN configures the ftm and is waiting for
1362 // it to be configured.
1363 dim.wait("RATE_SCAN", "InProgress", 10000);
1364 //FIXME: discuss what best value is here
1365 dim.wait("RATE_SCAN", "Connected", 2700000);//45min
1366 //dim.wait("RATE_SCAN", "Connected", 1200000);//3.3h
1367
1368 // Here one could implement a watchdog for the feedback as well, but what is the difference
1369 // whether finally one has to find out if the feedback was in the correct state
1370 // or the ratescan was interrupted?
1371
1372 // this line is actually some kind of hack.
1373 // after the Ratescan, no data is written to disk. I don't know why, but it happens all the time
1374 // So I decided to put this line here as a kind of patchwork....
1375 //dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
1376
1377 dim.log("Ratescan 2/1 done [%.1fs, %.1fs]".$((tm2-tm1)/1000, (new Date()-tm2)/1000));
1378 }
1379
1380 if (!irq)
1381 {
1382 var tm2 = new Date();
1383
1384 dim.log("Starting ratescan 2/2 ["+obs[sub].rstype+"]");
1385
1386 // Start rate scan
1387 dim.send("RATE_SCAN/START_THRESHOLD_SCAN", 300, 1000, 100, obs[sub].rstype);
1388
1389 // Lets wait if the ratescan really starts... this might take a few
1390 // seconds because RATE_SCAN configures the ftm and is waiting for
1391 // it to be configured.
1392 dim.wait("RATE_SCAN", "InProgress", 10000);
1393 dim.wait("RATE_SCAN", "Connected", 2700000);
1394
1395 // Here one could implement a watchdog for the feedback as well, but what is the difference
1396 // whether finally one has to find out if the feedback was in the correct state
1397 // or the ratescan was interrupted?
1398
1399 // this line is actually some kind of hack.
1400 // after the Ratescan, no data is written to disk. I don't know why, but it happens all the time
1401 // So I decided to put this line here as a kind of patchwork....
1402 //dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
1403
1404 dim.log("Ratescan 2/2 done [%.1fs, %.1fs]".$((tm2-tm1)/1000, (new Date()-tm2)/1000));
1405 }
1406
1407 dim.log("Task finished [RATESCAN2]");
1408 console.out("");
1409 break; // case "RATESCAN2"
1410
1411 case "CUSTOM":
1412
1413 // This is a workaround to make sure that we really catch
1414 // the new OnTrack state later and not the old one
1415 dim.send("DRIVE_CONTROL/STOP");
1416 dim.wait("DRIVE_CONTROL", "Initialized", 15000);
1417
1418 // Ramp bias if needed
1419 if (!obs[sub].biason)
1420 service_feedback.voltageOff();
1421 else
1422 {
1423 // Switch the voltage to a reduced level (Ubd)
1424 var bias = dim.state("BIAS_CONTROL").name;
1425 if (bias=="VoltageOn" || bias=="Ramping")
1426 service_feedback.voltageOn(0);
1427 }
1428 // Close lid
1429 CloseLid();
1430
1431 // Move to position (zd/az)
1432 dim.log("Moving telescope to zd="+obs[sub].zd+" az="+obs[sub].az);
1433 dim.send("DRIVE_CONTROL/MOVE_TO", obs[sub].zd, obs[sub].az);
1434 v8.sleep(3000);
1435 dim.wait("DRIVE_CONTROL", "Initialized", 150000); // 110s for turning and 30s for stabilizing
1436
1437 // Now tracking stable, switch voltage to nominal level and wait
1438 // for stability.
1439 if (obs[sub].biason)
1440 {
1441 service_feedback.voltageOn();
1442 service_feedback.waitForVoltageOn();
1443 }
1444
1445 if (!irq)
1446 {
1447 dim.log("Taking custom run with time "+obs[sub].time+"s, threshold="+obs[sub].threshold+", biason="+obs[sub].biason);
1448
1449 var customRun = function()
1450 {
1451 v8.sleep(500);//wait that configuration is set
1452 dim.wait("FTM_CONTROL", "TriggerOn", 15000);
1453 dim.send("FAD_CONTROL/SEND_SINGLE_TRIGGER");
1454 dim.send("RATE_CONTROL/STOP");
1455 dim.send("FTM_CONTROL/STOP_TRIGGER");
1456 dim.wait("FTM_CONTROL", "Valid", 3000);
1457 dim.send("FTM_CONTROL/ENABLE_TRIGGER", true);
1458 dim.send("FTM_CONTROL/SET_TIME_MARKER_DELAY", 123);
1459 dim.send("FTM_CONTROL/SET_THRESHOLD", -1, obs[sub].threshold);
1460 v8.sleep(500);//wait that configuration is set
1461 dim.send("FTM_CONTROL/START_TRIGGER");
1462 dim.wait("FTM_CONTROL", "TriggerOn", 15000);
1463 }
1464
1465 takeRun("custom", -1, obs[sub].time, customRun);
1466 }
1467 dim.log("Task finished [CUSTOM].");
1468 dim.log("");
1469 break; // case "CUSTOM"
1470
1471 case "DATA":
1472
1473 // ========================== case "DATA" ============================
1474 /*
1475 if (Sun.horizon("FACT").isUp)
1476 {
1477 console.out(" SHUTDOWN","");
1478 Shutdown();
1479 console.out(" Exit forced due to broken schedule", "");
1480 exit();
1481 }
1482 */
1483
1484 // Calculate remaining time for this observation in minutes
1485 var remaining = nextObs==undefined ? 0 : (nextObs.start-new Date())/60000;
1486 //dim.log("DEBUG: remaining: "+remaining+" nextObs="+nextObs+" start="+nextObs.start);
1487
1488 // ------------------------------------------------------------
1489
1490 dim.log("Run count "+run+" [remaining "+parseInt(remaining)+"min]");
1491
1492 // ----- Time since last DRS Calibration [min] ------
1493 var diff = getTimeSinceLastDrsCalib();
1494
1495 // Changine pointing position and take calibration...
1496 // ...every four runs (every ~20min)
1497 // ...if at least ten minutes of observation time are left
1498 // ...if this is the first run on the source
1499 var point = (run%4==0 && remaining>10 && !obs[sub].orbit) || run==0; // undefined==null -> true!
1500
1501 // Take DRS Calib...
1502 // ...every four runs (every ~20min)
1503 // ...at last every two hours
1504 // ...when DRS temperature has changed by more than 2deg (?)
1505 // ...when more than 15min of observation are left
1506 // ...no drs calibration was done yet
1507 var drscal = (run%4==0 && (remaining>15 && diff>70)) || diff==null;
1508
1509 if (point)
1510 {
1511 // Switch the voltage to a reduced voltage level
1512 service_feedback.voltageOn(0);
1513
1514 // Change wobble position every four runs,
1515 // start with alternating wobble positions each day
1516 var wobble = (parseInt(run/4) + parseInt(new Date()/1000/3600/24-0.5))%2+1;
1517 var angle = obs[sub].angle == null ? Math.random()*360 : obs[sub].angle;
1518
1519 if (obs[sub].orbit) // != undefined, != null, != 0
1520 dim.log("Pointing telescope to '"+obs[sub].source+"' [orbit="+obs[sub].orbit+"min, angle="+angle+"]");
1521 else
1522 dim.log("Pointing telescope to '"+obs[sub].source+"' [wobble="+wobble+"]");
1523
1524 // This is a workaround to make sure that we really catch
1525 // the new OnTrack state later and not the old one
1526 dim.send("DRIVE_CONTROL/STOP");
1527 dim.wait("DRIVE_CONTROL", "Initialized", 15000);
1528
1529 if (triggerReloadSources) // It's all synchronous - no need to wait here
1530 {
1531 dim.send("DRIVE_CONTROL/RELOAD_SOURCES");
1532 triggerReloadSources = false;
1533 dim.log("Reloading source table triggered in drivectrl.");
1534 }
1535
1536 if (obs[sub].orbit) // != undefined, != null, != 0
1537 dim.send("DRIVE_CONTROL/TRACK_ORBIT", angle, obs[sub].orbit, obs[sub].source);
1538 else
1539 dim.send("DRIVE_CONTROL/TRACK_WOBBLE", wobble, obs[sub].source);
1540
1541 // Do we have to check if the telescope is really moving?
1542 // We can cross-check the SOURCE service later
1543 }
1544
1545 if (drscal)
1546 {
1547 doDrsCalibration("data"); // will turn voltage off
1548
1549 // Now we switch on the voltage and a significant amount of
1550 // time has been passed, so do the check again.
1551 sun = Sun.horizon(-12);
1552 if (!was_up && sun.isUp)
1553 {
1554 dim.log("Sun rise detected....");
1555 continue;
1556 }
1557 }
1558
1559 if (irq)
1560 continue;
1561
1562 OpenLid();
1563
1564 // This is now th right time to wait for th drive to be stable
1565 dim.wait("DRIVE_CONTROL", "OnTrack", 150000); // 110s for turning and 30s for stabilizing
1566
1567 // Now check the voltage... (do not start a lot of stuff just to do nothing)
1568 var state = dim.state("FEEDBACK").name;
1569 if (state=="Warning" || state=="Critical" || state=="OnStandby")
1570 {
1571 v8.sleep(60000);
1572 continue;
1573 }
1574
1575 // Now we are 'OnTrack', so we can ramp to nominal voltage
1576 // and wait for the feedback to get stable
1577 service_feedback.voltageOn();
1578 service_feedback.waitForVoltageOn();
1579
1580 // If pointing had changed, do calibration
1581 if (!irq && point)
1582 {
1583 dim.log("Starting calibration.");
1584
1585 // Calibration (2% of 20')
1586 while (!irq)
1587 {
1588 if (irq || !takeRun("pedestal", 1000)) // 80 Hz -> 10s
1589 continue;
1590// if (irq || !takeRun("light-pulser-ext", 1000)) // 80 Hz -> 10s
1591// continue;
1592 break;
1593 }
1594 }
1595
1596 //console.out(" Taking data: start [5min]");
1597
1598 // FIXME: What do we do if during calibration something has happened
1599 // e.g. drive went to ERROR? Maybe we have to check all states again?
1600
1601 var twilight = Sun.horizon(-16).isUp;
1602
1603 if (twilight)
1604 {
1605 for (var i=0; i<5 && !irq; i++)
1606 takeRun("data", -1, 60); // Take data (1min)
1607 }
1608 else
1609 {
1610 var len = 300;
1611 while (!irq && len>15)
1612 {
1613 var time = new Date();
1614 if (takeRun("data", -1, len)) // Take data (5min)
1615 break;
1616
1617 len -= parseInt((new Date()-time)/1000);
1618 }
1619 }
1620
1621 //console.out(" Taking data: done");
1622 run++;
1623
1624 continue; // case "DATA"
1625 }
1626
1627 if (nextObs!=undefined && sub==obs.length-1)
1628 dim.log("Next observation will start at "+nextObs.start.toUTCString()+" [id="+nextObs.id+"]");
1629
1630 sub++;
1631}
1632
1633sub_drsruns.close();
1634
1635dim.log("Left main loop [irq="+irq+"]");
1636
1637// ================================================================
1638// Comments and ToDo goes here
1639// ================================================================
1640
1641// error handline : http://www.sitepoint.com/exceptional-exception-handling-in-javascript/
1642// classes: http://www.phpied.com/3-ways-to-define-a-javascript-class/
Note: See TracBrowser for help on using the repository browser.