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

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