1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059 | # - Copyright (c) 2024 MBARI
# - MBARI Proprietary Information. Confidential. All Rights Reserved
# - Unauthorized copying or distribution of this file via any medium is strictly
# - prohibited.
# -
# - WARNING - This file contains information whose export is restricted by the
# - Export Administration Act of 1979 (Title 50, U.S.C., App. 2401 et seq.), as
# - amended. Violations of these export laws are subject to severe civil and/or
# - criminal penalties.
mission sci2_sampling {
arguments {
# Almost every mission should start with an overall timeout and a NeedCommsTime. Drift Missions will have an acoustic timeout instead of a NeedCommsTime.
# You probably need to change these.
MissionTimeout = 20 hour
"""
Maximum duration of mission
"""
AcousticTrackingTimeout = 240 hour
"""
If the vehicle does not receive an acoustic signal for more than this
length of time, it will surface for communications. Set longer than
MissionTimeout to effectively disable.
"""
NeedCommsTimeTransit = 60 minute
"""
On yo-yo transit to waypoint, how often to surface for commumications.
"""
NeedCommsTimeProfileStation = 30 minute
"""
During profile-station at each waypoint, how often to surface for
commumications.
"""
# debug
# </Description><Units:minute/><Value>5</Value></DefineArg>
NeedCommsTimeSampling = 60 minute
"""
Set to a very long duration to prevent surfacing during sampling. Note
that ESP and sipper sampling times are very different.
"""
# debug
# </Description><Units:minute/><Value>300</Value></DefineArg>
SkipCommsWaypoint = true
"""
Skip communications when reaching waypoint. Only surfaces to be prepared
to dive to find peak chl.
"""
# debug
# </Description><False/></DefineArg>
ProfileStationAtWaypoint = false
"""
Whether to profile-station at each waypoint.
"""
# debug
# </Description><True/></DefineArg>
MaxDurationProfileStation = 30 minute
"""
Maximum duration of profile-station at each waypoint.
"""
# debug
# </Description><Units:minute/><Value>10</Value></DefineArg>
MaxWaitTimeNoFiring = 0.5 hour
"""
If no firing after more than MaxWaitTimeNoFiring, terminate mission.
Note that ESP and sipper sampling times are very different. Also
consider wait time between samplings.
"""
# debug
# </Description><Units:hour/><Value>2</Value></DefineArg>
MaxWaitTimeNotAchievingDepth = 0.5 hour
"""
Maximum wait time the vehicle cannot reach the targeted depth.
"""
UseAcousticMessageTerminateProfileStation = false
"""
Whether to use acoustic message to terminate profile-station.
"""
# debug
# </Description><True/></DefineArg>
SendSamplingCompleteMessage = true
"""
Whether to send sampling-complete message to the other LRAUV.
"""
# debug
# </Description><False/></DefineArg>
SendSampleStatusData = false
"""
Whether to senddata to acoustic modem.
"""
# debug
# </Description><True/></DefineArg>
SendSampleDataToMultipleModems = false
"""
Whether to senddata to more than one modem.
"""
# debug
# </Description><False/></DefineArg>
ModemID1 = 1 enum
"""
Modem ID1. Initialized to 1.
"""
ModemID2 = 4 enum
"""
Modem ID2. Initialized to 4.
"""
SpeedTransit = 1.0 meter_per_second
"""
Vehicle speed when transiting.
"""
SpeedOfInitialDive = 1.0 meter_per_second
"""
Vehicle speed during initial dive (for looking for the chl max). 0.0 for
drift mode (prop off); 1.0 for spiral mode (prop on). Initialized to 1
m/s.
"""
SpeedOfSampling = 1.0 meter_per_second
"""
Vehicle speed during sampling: 0.0 for drift mode (prop off); 1.0 for
donut mode (prop on). Initialized to 1 m/s.
"""
# debug
# </Description><Units:meter_per_second/><Value>0</Value></DefineArg>
MaxDepth = 50 meter
"""
Maximum depth for the entire mission.
"""
MinAltitude = 7 meter
"""
Minimum altitude for the entire mission.
"""
MinOffshore = 2 kilometer
"""
Minimum offshore distance for the entire mission.
"""
PeakDetectChl = true
"""
Whether to enable peak chl detection on each yo-yo profile
"""
# debug
# </Description><False/></DefineArg>
TriggerThresholdChl = 2 microgram_per_liter
"""
If non-NaN, sets threshold for triggering sampling. Chl value of 2.5
mug/L corresponds to HS2 fluorescence reading of 0.001 on Dorado.
"""
ShallowBoundChl = 2 meter
"""
Shallow depth bound for chl-peak detection.
"""
DeepBoundChl = 20 meter
"""
Deep depth bound for chl-peak detection.
"""
TransitYoYoMinDepth = 2 meter
"""
Minimum depth while performing the YoYo behavior.
"""
TransitYoYoMaxDepth = 20 meter
"""
Maximum depth while performing the YoYo behavior.
"""
ProfileStationYoYoMinDepth = 2 meter
"""
Minimum depth while performing the YoYo behavior.
"""
ProfileStationYoYoMaxDepth = 20 meter
"""
Maximum depth while performing the YoYo behavior.
"""
ProfileStationRadius = 30 meter
"""
Radius to circle around the waypoint.
"""
YoYoMinAltitude = 9 meter
"""
Minimum altitude while performing the YoYo behavior (for
bottom-terminated YoYos).
"""
WaitTimeDepUndulationCommon = 1.0 minute
"""
Value common to all samples unless set differently: Wait duration for
the depth undulation to damp down.
"""
# debug
# </Description><Units:minute/><Value>5.0</Value></DefineArg>
CartridgeTypeCommon = -6 count
"""
Value common to all samples unless set diffently: cartridge type.
"""
# debug
# </Description><Units:count/><Value>NaN</Value></DefineArg>
Lat1 = NaN degree
"""
Latitude of waypoint 1. If NaN, sample here.
"""
# debug
# </Description><Units:degree/><Value>36.809</Value></DefineArg>
Lon1 = NaN degree
"""
Longitude of waypoint 1. If NaN, sample here.
"""
# debug
# </Description><Units:degree/><Value>-121.822</Value></DefineArg>
NumSamplersLocation1 = 3 count
"""
Number of ESP cartridges or CANON samplers. Set to 0 to disable
sampling.
"""
# debug
# </Description><Units:count/><Value>1</Value></DefineArg>
SampleAtPeakChlLocation1 = true
"""
Whether to sample at peak-chl depth.
"""
# debug
# </Description><False/></DefineArg>
CartridgeType1Location1 = NaN count
"""
Sample 1. Cartridge type.
"""
CartridgeType2Location1 = NaN count
"""
Sample 2.
"""
CartridgeType3Location1 = NaN count
"""
Sample 3.
"""
CartridgeType4Location1 = NaN count
"""
Sample 4.
"""
CartridgeType5Location1 = NaN count
"""
Sample 5.
"""
CartridgeType6Location1 = NaN count
"""
Sample 6.
"""
CartridgeType7Location1 = NaN count
"""
Sample 7.
"""
CartridgeType8Location1 = NaN count
"""
Sample 8.
"""
CartridgeType9Location1 = NaN count
"""
Sample 9.
"""
CartridgeType10Location1 = NaN count
"""
Sample 10.
"""
DepDiffFromPeakChlLocation1 = 0 meter
"""
Depth difference (positive: deeper; negative: shallower) from the
peak-chl depth.
"""
# debug
# </Description><Units:meter/><Value>NaN</Value></DefineArg>
DepLocation1 = NaN meter
"""
Pre-designated depth.
"""
# debug
# </Description><Units:meter/><Value>10</Value></DefineArg>
TempDiffFromPeakChlLocation1 = NaN kelvin
"""
Target temperature difference from the peak-chl temperature.
"""
# debug
# </Description><Units:kelvin/><Value>0</Value></DefineArg>
TempLocation1 = NaN celsius
"""
Pre-designated temperature.
"""
# debug
# </Description><Units:celsius/><Value>12.5</Value></DefineArg>
WaitTimeDepUndulation1Location1 = 5.0 minute
"""
Sample 1. Wait duration for the depth undulation to damp down.
"""
Lat[2..10] = NaN degree
"""
Latitude of waypoint {$}. If NaN, skipped.
"""
# debug
# </Description><Units:degree/><Value>36.82</Value></DefineArg>
Lon[2..10] = NaN degree
"""
Longitude of waypoint {$}. If NaN, skipped.
"""
# debug
# </Description><Units:degree/><Value>-121.83</Value></DefineArg>
NumSamplersLocation[2..10] = 3 count
"""
Number of ESP cartridges or CANON samplers. Set to 0 to disable
sampling.
"""
# debug
# </Description><Units:count/><Value>0</Value></DefineArg>
# debug
SampleAtPeakChlLocation[2..10] = true
CartridgeType1Location[2..10] = NaN count
CartridgeType2Location[2..10] = NaN count
CartridgeType3Location[2..10] = NaN count
CartridgeType4Location[2..10] = NaN count
CartridgeType5Location[2..10] = NaN count
CartridgeType6Location[2..10] = NaN count
CartridgeType7Location[2..10] = NaN count
CartridgeType8Location[2..10] = NaN count
CartridgeType9Location[2..10] = NaN count
CartridgeType10Location[2..10] = NaN count
# debug
DepDiffFromPeakChlLocation[2..10] = 0 meter
DepLocation[2..10] = NaN meter
TempDiffFromPeakChlLocation[2..10] = NaN kelvin
TempLocation[2..10] = NaN celsius
WaitTimeDepUndulation1Location[2..10] = 5.0 minute
# You probably do not need to change these.
IntervalRestartLogs = 24 hour
AscentRate = -0.05 meter_per_second
"""
Go-up depth rate (negative depth rate means going up).
"""
DescentRate = 0.2 meter_per_second
"""
Go-down depth rate (positive depth rate means going down).
"""
LPWindowLength = 20 count
"""
Low-pass window length (based on depth sensor sampling interval 0.4
second) for low-pass filtering.
"""
MedianFilterLength = 5 count
"""
Median filter length (only for chlorophyll fluorescence which tends to
have spikes). The median-filtered signal enters the succeeding low-pass
filter. If set to 1, then no median filtering, i.e., the raw
fluorescence signal directly enters the low-pass filter.
"""
DurationOfInitialDive = 1.0 minute
"""
On the first dive for looking for the chl max, run at SpeedInitialDive
for this duration (e.g., 1 m/s spiral to dive fast).
"""
RudderAngleInInitialDive = 9 degree
"""
Rudder angle in initial spiral-down to leave surface. Initialized to 9
degrees.
"""
RudderAngleInDonutSampling = 13 degree
"""
Rudder angle during donut sampling.
"""
RiseFromTurningDepth = 5 meter
"""
The peak chl detected on the initial dive is reported when the vehicle
has turned from the deepest depth (i.e., the turning depth) onto the
ascending profile at a depth that is RiseFromDeepTurningPoint shallower
than the turning depth. For robustness, RiseFromTurningDepth =
DepthChangeThreshAttitudeFlip + 2 meters.
"""
DepthChangeThreshAttitudeFlip = 3 meter
"""
Depth change threshold for determining vehicle attitude flip.
"""
YoYoUpPitch = 20 degree
"""
Vehicle up pitch while performing the YoYo behavior.
"""
YoYoDownPitch = -20 degree
"""
Vehicle down pitch while performing the YoYo behavior.
"""
SurfacePitch = 20 degree
"""
Pitch to maintain while ascending
"""
SurfaceDepthRate = NaN meter_per_second
"""
Depth rate to maintain while ascending. Set to NaN if using pitch
"""
BuoyDiveAccel = 0.0025 meter_per_second_squared
"""
In buoyancy-only mode, maxBuoyDiveAccel needs to be set at least an
order of magnitude higher than that in Control.cfg.
"""
# You are even less likely to need to change these.
CircleMaxError = 100 meter
"""
If this distance away from the circle, drive straight towards (or away
from the center). Otherwise, try to reduce distance from the ideal
circle.
"""
CircleTurnToPort = false
"""
If true, vehicle turns to the left around the center point. If false,
vehicle turns to the right.
"""
KwpHeading = 0.010 radian_per_meter
"""
Used to relax waypoint cross-track error constant that is adjusted for
docking. (You can override this setting by passing an argument.)
"""
}
output {
# Internal variables that you should not change
WaypointLat = NaN degree
"""
Latitude of cylinder center if set to a waypoint. Initialized to NaN.
"""
WaypointLon = NaN degree
"""
Longitude of cylinder center if set to a waypoint. Initialized to NaN.
"""
ElapsedSinceReachingWpt = 0 hour
OtherLRAUVNearSignalReceived = false
TrueVar = true
"""
A True boolean, defined as an arg because you can't directly place
values in a call to SendData.
"""
}
# Missions should almost always start with a timeout and a NeedComms aggregate. Drift missions will not use NeedComms.
timeout duration=MissionTimeout
# Missions should almost always start with standard safety envelopes
behavior Sample:AbortSample {
run in parallel
}
insert Insert/StandardEnvelopes.tl
assign in sequence StandardEnvelopes:MinAltitude = MinAltitude
assign in sequence StandardEnvelopes:MaxDepth = MaxDepth
assign in sequence StandardEnvelopes:MinOffshore = MinOffshore
insert Insert/AbortDrift.tl {
redefineArg AcousticTimeout = AcousticTrackingTimeout
}
insert Insert/Science.tl {
redefineArg PeakDetectChlActive = PeakDetectChl
redefineArg LowPassWindowLength = LPWindowLength
redefineArg MedianFilterLen = MedianFilterLength
redefineArg PeakShallowBound = ShallowBoundChl
redefineArg PeakDeepBound = DeepBoundChl
redefineArg DepChangeThreshForAttitudeFlip = DepthChangeThreshAttitudeFlip
}
insert Insert/SampleAtPeakChlDepOrTemp.tl {
redefineArg MaxWaitNoFiring = MaxWaitTimeNoFiring
redefineArg MaxWaitNotAchievingDepth = MaxWaitTimeNotAchievingDepth
redefineArg SendSampleStatusAndData = SendSampleStatusData
redefineArg SendDataToMultipleModems = SendSampleDataToMultipleModems
redefineArg modemId1 = ModemID1
redefineArg modemId2 = ModemID2
redefineArg InitialDiveDuration = DurationOfInitialDive
redefineArg SpeedInitialDive = SpeedOfInitialDive
redefineArg SpeedSampling = SpeedOfSampling
redefineArg RudderAngleInitialDive = RudderAngleInInitialDive
redefineArg RudderAngleDonutSampling = RudderAngleInDonutSampling
redefineArg TriggerThreshChl = TriggerThresholdChl
redefineArg ShallowbndChl = ShallowBoundChl
redefineArg DeepbndChl = DeepBoundChl
redefineArg CartridgeCommon = CartridgeTypeCommon
redefineArg WaitDepUndulationCommon = WaitTimeDepUndulationCommon
redefineArg UpRate = AscentRate
redefineArg DownRate = DescentRate
redefineArg RiseFromTurningDep = RiseFromTurningDepth
redefineArg DepChangeThreshAttitudeFlip = DepthChangeThreshAttitudeFlip
redefineArg LPWindowLength = LPWindowLength
redefineArg MedianFilterLength = MedianFilterLength
}
insert id="NeedComms" Insert/NeedComms.tl
assign in parallel Control:VerticalControl.maxBuoyDiveAccel = BuoyDiveAccel
# Many missions will keep mass position fixed at the default. This mission allows the buoyancy volume to change to track the chlorophyll peak while drifting.
behavior Guidance:Pitch {
run in parallel
set massPosition = Control:VerticalControl.massDefault
}
behavior Guidance:AltitudeEnvelope {
"""
Another altitude envelope for the YoYo behavior. This envelope
should fall within the limits of the standard safety envelopes in
Insert/StandardEnvelopes.tl in order to avoid commanding high pitch
angles for bottom-terminated YoYos.
"""
run in parallel
set minAltitude = YoYoMinAltitude
}
aggregate CheckOtherLRAUVNearSignal {
run when (
not ( OtherLRAUVNearSignalReceived )
and ( elapsed ( customUri "_.near" ) < elapsed ( OtherLRAUVNearSignalReceived ) )
)
syslog important "Received _.near signal from the other LRAUV."
assign in sequence OtherLRAUVNearSignalReceived = true
}
aggregate TransitToWaypoint {
run when ( called )
aggregate Transit {
run in sequence
assign in sequence NeedComms:DiveInterval = NeedCommsTimeTransit
behavior Guidance:Buoyancy {
run in parallel
set position = Control:VerticalControl.buoyancyNeutral
}
behavior Guidance:SetSpeed {
run in parallel
set speed = SpeedTransit
}
behavior Guidance:DepthEnvelope {
run in parallel
set minDepth = TransitYoYoMinDepth
set maxDepth = TransitYoYoMaxDepth
set downPitch = YoYoDownPitch
set upPitch = YoYoUpPitch
}
behavior Guidance:YoYo {
run in parallel
set downPitch = YoYoDownPitch
set upPitch = YoYoUpPitch
}
behavior Guidance:Waypoint {
run in sequence
set latitude = WaypointLat
set longitude = WaypointLon
}
}
}
aggregate TransitComms {
run when ( called )
aggregate EndOfTransitNeedComms {
run in sequence
break if ( SkipCommsWaypoint )
behavior Guidance:Buoyancy {
run in parallel
set position = Control:VerticalControl.buoyancyNeutral
}
behavior Guidance:SetSpeed {
run in parallel
set speed = SpeedTransit
}
call id="WptComms" refId="NeedComms"
}
aggregate EndOfTransitSurfacing {
run in sequence
break if ( not ( SkipCommsWaypoint ) )
behavior Guidance:Buoyancy {
run in parallel
set position = Control:VerticalControl.buoyancyNeutral
}
behavior Guidance:SetSpeed {
run in parallel
set speed = SpeedTransit
}
behavior Guidance:GoToSurface {
run in sequence
set pitch = SurfacePitch
set depthRate = SurfaceDepthRate
set speed = SpeedTransit
}
}
}
aggregate ProfileStationWpt {
run when ( called )
break if (
elapsed ( ElapsedSinceReachingWpt ) >= MaxDurationProfileStation
or (
UseAcousticMessageTerminateProfileStation
and OtherLRAUVNearSignalReceived
)
)
assign in sequence NeedComms:DiveInterval = NeedCommsTimeProfileStation
behavior Guidance:Buoyancy {
run in parallel
set position = Control:VerticalControl.buoyancyNeutral
}
behavior Guidance:SetSpeed {
run in parallel
set speed = SpeedTransit
}
behavior Guidance:DepthEnvelope {
run in parallel
set minDepth = ProfileStationYoYoMinDepth
set maxDepth = ProfileStationYoYoMaxDepth
set pitch = YoYoUpPitch
}
behavior Guidance:AltitudeEnvelope {
run in parallel
set minAltitude = YoYoMinAltitude
set pitch = YoYoUpPitch
}
behavior Guidance:YoYo {
run in parallel
set pitch = YoYoUpPitch
}
aggregate CircleWrapper {
run in sequence repeat=4096
assign in parallel Control:HorizontalControl.kwpHeading = KwpHeading
behavior Guidance:Circle {
run in sequence
set latitude = WaypointLat
set longitude = WaypointLon
set radius = ProfileStationRadius
set maxError = CircleMaxError
set turnToPort = CircleTurnToPort
}
}
}
aggregate SampleWpt {
run when ( called )
assign in sequence NeedComms:DiveInterval = NeedCommsTimeSampling
call id="SamplingWpt" refId="SampleAtPeakChlDepOrTemp"
}
aggregate SendMessage {
run when ( called )
aggregate SendMsg {
run in sequence
break if ( not ( SendSamplingCompleteMessage ) )
behavior Sensor:SendDirect {
run in sequence
set destType = "modem"
set destId = ModemID1
set destName = "_.terminateMission"
set value = TrueVar
set unit = "bool"
}
syslog important "Set _.terminateMission to " + TrueVar~bool
}
}
# Automatically restart logs
aggregate CycleLogs {
run in parallel
aggregate {
run in sequence
behavior Guidance:Wait {
run in sequence
set duration = IntervalRestartLogs
}
syslog important "Restarting logs."
behavior Guidance:Execute {
run in sequence
set command = "restart logs"
}
}
}
aggregate MissionStart {
run in sequence
call id="MissionStartComms" refId="NeedComms"
}
aggregate Wpt1 {
run in sequence
break if (
isNaN ( NumSamplersLocation1 )
or ( NumSamplersLocation1 == 0 count )
)
assign in sequence WaypointLat = Lat1
assign in sequence WaypointLon = Lon1
call id="TransitToWpt" refId="TransitToWaypoint"
call id="TransitCommsWpt" refId="TransitComms"
assign in sequence ElapsedSinceReachingWpt = 0 hour
assign in sequence SampleAtPeakChlDepOrTemp:NumSamplers = NumSamplersLocation1
assign in sequence SampleAtPeakChlDepOrTemp:CntSamples = 1 count
assign in sequence SampleAtPeakChlDepOrTemp:SampleAtPeakChl = SampleAtPeakChlLocation1
assign in sequence SampleAtPeakChlDepOrTemp:FlagGoDown = SampleAtPeakChlLocation1
assign in sequence SampleAtPeakChlDepOrTemp:FlagInitialDiveCompleted = false
assign in sequence SampleAtPeakChlDepOrTemp:SampleOptionsSet = false
assign in sequence SampleAtPeakChlDepOrTemp:SampleCountIncreased = true
assign in sequence SampleAtPeakChlDepOrTemp:SampleCompleted = false
assign in sequence SampleAtPeakChlDepOrTemp:FlagPeakChlDepthSet = false
assign in sequence SampleAtPeakChlDepOrTemp:FlagPeakChlTempSet = false
assign in sequence SampleAtPeakChlDepOrTemp:FlagTargetDepthSet = false
assign in sequence SampleAtPeakChlDepOrTemp:FlagTempSet = false
assign in sequence SampleAtPeakChlDepOrTemp:TempDiffFromPeakChl = TempDiffFromPeakChlLocation1
assign in sequence SampleAtPeakChlDepOrTemp:TempDesignated = TempLocation1
assign in sequence SampleAtPeakChlDepOrTemp:DepDiffFromPeakChl = DepDiffFromPeakChlLocation1
assign in sequence SampleAtPeakChlDepOrTemp:DepDesignated = DepLocation1
assign in sequence SampleAtPeakChlDepOrTemp:WaitDepUndulation1 = WaitTimeDepUndulation1Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType1 = CartridgeType1Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType2 = CartridgeType2Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType3 = CartridgeType3Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType4 = CartridgeType4Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType5 = CartridgeType5Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType6 = CartridgeType6Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType7 = CartridgeType7Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType8 = CartridgeType8Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType9 = CartridgeType9Location1
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType10 = CartridgeType10Location1
# If revising script, make sure call of NeedComms completes GPS fixes.
aggregate ProfileStationWaypoint1 {
run in sequence
break if ( not ( ProfileStationAtWaypoint ) )
assign in sequence SampleAtPeakChlDepOrTemp:EnableElapsedSinceStartOrLastSample = false
call id="ProfileStation1" priorityHere=true refId="ProfileStationWpt"
call id="ProfileStationComms1" refId="NeedComms"
assign in sequence SampleAtPeakChlDepOrTemp:ElapsedSinceStartOrLastSample = 0 hour
assign in sequence SampleAtPeakChlDepOrTemp:EnableElapsedSinceStartOrLastSample = true
}
call id="SamplingLocation1" refId="SampleWpt"
call id="SendMessageSamplingComplete" refId="SendMessage"
call id="NeedCommsSamplingDoneWpt1" refId="NeedComms"
}
macro $i = 2..10 {
aggregate Wpt$i {
run in sequence
break if (
isNaN ( NumSamplersLocation[$i] )
or ( NumSamplersLocation[$i] == 0 count )
or ( isNaN ( Lat[$i] ) )
or ( isNaN ( Lon[$i] ) )
)
assign in sequence WaypointLat = Lat[$i]
assign in sequence WaypointLon = Lon[$i]
call id="TransitToWpt" refId="TransitToWaypoint"
call id="TransitCommsWpt" refId="TransitComms"
assign in sequence ElapsedSinceReachingWpt = 0 hour
assign in sequence SampleAtPeakChlDepOrTemp:NumSamplers = NumSamplersLocation[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CntSamples = 1 count
assign in sequence SampleAtPeakChlDepOrTemp:SampleAtPeakChl = SampleAtPeakChlLocation[$i]
assign in sequence SampleAtPeakChlDepOrTemp:FlagGoDown = SampleAtPeakChlLocation[$i]
assign in sequence SampleAtPeakChlDepOrTemp:FlagInitialDiveCompleted = false
assign in sequence SampleAtPeakChlDepOrTemp:SampleOptionsSet = false
assign in sequence SampleAtPeakChlDepOrTemp:SampleCountIncreased = true
assign in sequence SampleAtPeakChlDepOrTemp:SampleCompleted = false
assign in sequence SampleAtPeakChlDepOrTemp:FlagPeakChlDepthSet = false
assign in sequence SampleAtPeakChlDepOrTemp:FlagPeakChlTempSet = false
assign in sequence SampleAtPeakChlDepOrTemp:FlagTargetDepthSet = false
assign in sequence SampleAtPeakChlDepOrTemp:FlagTempSet = false
assign in sequence SampleAtPeakChlDepOrTemp:TempDiffFromPeakChl = TempDiffFromPeakChlLocation[$i]
assign in sequence SampleAtPeakChlDepOrTemp:TempDesignated = TempLocation[$i]
assign in sequence SampleAtPeakChlDepOrTemp:DepDiffFromPeakChl = DepDiffFromPeakChlLocation[$i]
assign in sequence SampleAtPeakChlDepOrTemp:DepDesignated = DepLocation[$i]
assign in sequence SampleAtPeakChlDepOrTemp:WaitDepUndulation1 = WaitTimeDepUndulation1Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType1 = CartridgeType1Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType2 = CartridgeType2Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType3 = CartridgeType3Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType4 = CartridgeType4Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType5 = CartridgeType5Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType6 = CartridgeType6Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType7 = CartridgeType7Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType8 = CartridgeType8Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType9 = CartridgeType9Location[$i]
assign in sequence SampleAtPeakChlDepOrTemp:CartridgeType10 = CartridgeType10Location[$i]
aggregate ProfileStationWaypoint$i {
run in sequence
break if ( not ( ProfileStationAtWaypoint ) )
assign in sequence SampleAtPeakChlDepOrTemp:EnableElapsedSinceStartOrLastSample = false
call id="ProfileStation$i" priorityHere=true refId="ProfileStationWpt"
call id="ProfileStationComms$i" refId="NeedComms"
assign in sequence SampleAtPeakChlDepOrTemp:ElapsedSinceStartOrLastSample = 0 hour
assign in sequence SampleAtPeakChlDepOrTemp:EnableElapsedSinceStartOrLastSample = true
}
call id="SamplingLocation[$i]" refId="SampleWpt"
call id="SendMessageSamplingComplete$i" refId="SendMessage"
call id="NeedCommsSamplingDoneWpt$i" refId="NeedComms"
}
}
}
|