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
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200 | # 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.
aggregate Science {
arguments {
PeakDetectChlActive = false
"""
Turns on peak detection of Cholorphyll.
"""
PeakDepthAvgProfilesChlActive = false
"""
Turns on reporting of cholorphyll peak depth averaged over a number of yo-yo profiles.
"""
EdgeDetectChlActive = false
"""
Turns on edge detection of Cholorphyll.
"""
TimeWindowPeakReport = NaN minute
"""
If greater than zero, report a peak every window. If NaN or zero, this
variable is ignored.
"""
HighestChlPeakReportActive = false
"""
Turns on reporting of the highest peak value of chlorophyll on yo-yo
profiles in a horizontal sliding window (of length
numProfilesSlidingwindow)
"""
HighestSaltPeakReportActive = false
"""
Turns on reporting of the highest peak value of salinity on yo-yo
profiles in a horizontal sliding window (of length
numProfilesSlidingwindow)
"""
HighestOilPeakReportActive = false
"""
Turns on reporting of the highest peak value of oil on yo-yo profiles in
a horizontal sliding window (of length numProfilesSlidingwindow)
"""
PatchTracking = false
"""
If tracking a patch
"""
FilterWidthHorizontal = 3 count
"""
Width of boxcar filter applied to yoyo-wise chl peaks to pick out the
highest peak.
"""
NumProfilesSlidingwindow = 100 count
"""
Length of horizontal sliding window. The highest yoyo-wise chl peak
(after low-pass filtering by a filter of length FilterWidthHorizontal)
within this window.
"""
OffPeakFractionHorizontal = 80 percent
"""
When filtered horizontal value is this fraction of the peak, consider it
outside the patch.
"""
PeakDetectNO3Active = false
"""
Turns on peak detection of Nitrate (and turns on ISUS).
"""
PeakDetectOilActive = false
"""
Turns on peak detection of Dissolved Oil.
"""
PeakDetectFDOMActive = false
"""
Turns on peak detection of
concentration_of_colored_dissolved_organic_matter_in_sea_water from FDOM
sensor.
"""
PeakDetectSalinityActive = false
"""
Turns on peak detection of salinity.
"""
PeakDetectPlanktivoreLMavgROIActive = false
"""
Turns on peak detection of PlanktivoreLMavgROI.
"""
PeakDepthAvgProfilesPlanktivoreLMavgROIActive = false
"""
Turns on reporting of LMavgROI peak depth averaged over a number of yo-yo profiles.
"""
EdgeDetectPlanktivoreLMavgROIActive = false
"""
Turns on edge detection of PlanktivoreLMavgROI.
"""
PeakDetectPlanktivoreHMavgROIActive = false
"""
Turns on peak detection of PlanktivoreHMavgROI.
"""
EdgeDetectPlanktivoreHMavgROIActive = false
"""
Turns on edge detection of PlanktivoreHMavgROI.
"""
PeakDetectPlanktivoreDiatomsActive = false
"""
Turns on peak detection of PlanktivoreDiatoms.
"""
EdgeDetectPlanktivoreDiatomsActive = false
"""
Turns on edge detection of PlanktivoreDiatoms.
"""
PeakDetectPlanktivoreDinoflagellatesActive = false
"""
Turns on peak detection of PlanktivoreDinoflagellates.
"""
EdgeDetectPlanktivoreDinoflagellatesActive = false
"""
Turns on edge detection of PlanktivoreDinoflagellates.
"""
UpwardDerivativeOfTemperatureActive = false
"""
Turns on seawater temperature derivative.
"""
EnabledAanderaaO2 = Science:Aanderaa_O2.loadAtStartup
"""
Automatically set to True if the Aanderaa O2 sensor is installed. Set to
false to disable reading Aandera O2.
"""
EnabledNeilBrown = Science:CTD_NeilBrown.loadAtStartup
"""
Automatically set to true if the Neil Brown CTD is enabled. Set to false
to disable reading from the Neil Brown.
"""
EnabledRBRTridente = Science:RBRTridente.loadAtStartup
"""
Automatically set to true if the RBR Tridente is enabled. Set to false
to disable reading from the Tridente.
"""
EnabledSeabird = Science:CTD_Seabird.loadAtStartup
"""
Automatically set to true if the CTD is enabled. Set to false to disable
reading from the CTD.
"""
EnabledWetLabsBB2FL = Science:WetLabsBB2FL.loadAtStartup
"""
Automatically set to true if the the WetLabs BB2FL is enabled. Set to
false to disable the WetLabs BB2FL.
"""
EnabledWetLabsSeaOWL_UV_A = Science:WetLabsSeaOWL_UV_A.loadAtStartup
"""
Automatically set to true if the the WetLabs SeaOWL UV-A is enabled. Set
to false to disable the WetLabs SeaOWL UV-A.
"""
EnabledWetLabsUBAT = Science:WetLabsUBAT.loadAtStartup
"""
Automatically set to true if the the WetLabs UBAT is enabled. Set to
false to disable the WetLabs UBAT.
"""
LowPassWindowLength = 20 count
"""
Low-pass window length (based on depth sensor sampling interval 0.4
second) for low-pass filtering.
"""
MedianFilterLen = 5 count
"""
Median filter length (only for chlorophyll fluorescence which tends to
have spikes)
"""
ShallowBound = NaN meter
"""
Shallow depth bound for detecting any peak or edge on each descent or ascent
profile.
"""
DeepBound = NaN meter
"""
Deep depth bound for detecting any peak or edge on each descent or ascent
profile.
"""
DeepThreshValidLeg = NaN meter
"""
Flip-to-ascent depth needs to be deeper than this threshold to be considered a valid leg for peak reporting.
"""
DepChangeThreshForAttitudeFlip = 2.0 meter
"""
Depth change threshold for determining vehicle attitude flip.
"""
OffPeakFractionVerticalAscent = NaN percent
"""
Off-peak fraction for defining the edge of a vertical layer when vehicle is on ascent.
"""
OffPeakFractionVerticalDescent = NaN percent
"""
Off-peak fraction for defining the edge of a vertical layer when vehicle is on descent.
"""
ChlPeakThresh = 0 microgram_per_liter
"""
In vertical-dimension edge detection, threshold for qualifying as an peak.
"""
NumberOfLayers = 1 count
"""
Expected number of high-signal layers.
"""
ChlThreshTriggerActive = false
"""
Turns on chlorophyll threshold trigger.
"""
ChlLowerThresh = NaN microgram_per_liter
"""
Used only when ChlThreshTriggerActive is True. Triggered when
chlorophyll falls in [ChlLowerThresh ChlUpperThresh]. ChlLowerThresh is
ignored if NaN.
"""
ChlUpperThresh = NaN microgram_per_liter
"""
Used only when ChlThreshTriggerActive is True. Triggered when
chlorophyll falls in [ChlLowerThresh ChlUpperThresh]. ChlUpperThresh is
ignored if NaN.
"""
NumProfilesThresh = 5 count
"""
Used only when ChlThreshTriggerActive is True. Triggered when
chlorophyll falls in [lowerThreshold upperThreshold] on
numProfilesThreshold consecutive profiles.
"""
PlanktivoreLMavgROIPeakThresh = 0 count_per_second
"""
In vertical-dimension edge detection, threshold for qualifying as an peak.
"""
PlanktivoreHMavgROIPeakThresh = 0 count_per_second
"""
In vertical-dimension edge detection, threshold for qualifying as an peak.
"""
PlanktivoreDiatomsPeakThresh = 0 count_per_milliliter
"""
In vertical-dimension edge detection, threshold for qualifying as an peak.
"""
PlanktivoreDinoflagellatesPeakThresh = 0 count_per_milliliter
"""
In vertical-dimension edge detection, threshold for qualifying as an peak.
"""
}
output {
GoDown = true
PeakChl = NaN microgram_per_liter
PeakChlDepth = NaN meter
PeakChlTemperature = NaN celsius
PeakChlLatitude = NaN degree
PeakChlLongitude = NaN degree
PeakChlAvgProfiles = NaN microgram_per_liter
PeakChlDepthAvgProfiles = NaN meter
EdgeChl = NaN microgram_per_liter
EdgeChlDepth = NaN meter
EdgeChlTemperature = NaN celsius
EdgeChlLatitude = NaN degree
EdgeChlLongitude = NaN degree
PeakNO3 = NaN micromole_per_liter
PeakNO3Depth = NaN meter
PeakNO3Latitude = NaN degree
PeakNO3Longitude = NaN degree
PeakOil = NaN kilogram_per_cubic_meter
PeakOilDepth = NaN meter
PeakOilLatitude = NaN degree
PeakOilLongitude = NaN degree
PeakFDOM = NaN part_per_billion
PeakFDOMDepth = NaN meter
PeakFDOMTemperature = NaN celsius
PeakFDOMLatitude = NaN degree
PeakFDOMLongitude = NaN degree
PeakSalt = NaN psu
PeakSaltDepth = NaN meter
PeakSaltTemperature = NaN celsius
PeakSaltLatitude = NaN degree
PeakSaltLongitude = NaN degree
PeakPlanktivoreLMavgROI = NaN count_per_second
PeakPlanktivoreLMavgROIDepth = NaN meter
PeakPlanktivoreLMavgROITemperature = NaN celsius
PeakPlanktivoreLMavgROILatitude = NaN degree
PeakPlanktivoreLMavgROILongitude = NaN degree
PeakPlanktivoreLMavgROIAvgProfiles = NaN count_per_second
PeakPlanktivoreLMavgROIDepthAvgProfiles = NaN meter
EdgePlanktivoreLMavgROI = NaN count_per_second
EdgePlanktivoreLMavgROIDepth = NaN meter
EdgePlanktivoreLMavgROITemperature = NaN celsius
EdgePlanktivoreLMavgROILatitude = NaN degree
EdgePlanktivoreLMavgROILongitude = NaN degree
PeakPlanktivoreHMavgROI = NaN count_per_second
PeakPlanktivoreHMavgROIDepth = NaN meter
PeakPlanktivoreHMavgROITemperature = NaN celsius
PeakPlanktivoreHMavgROILatitude = NaN degree
PeakPlanktivoreHMavgROILongitude = NaN degree
EdgePlanktivoreHMavgROI = NaN count_per_second
EdgePlanktivoreHMavgROIDepth = NaN meter
EdgePlanktivoreHMavgROITemperature = NaN celsius
EdgePlanktivoreHMavgROILatitude = NaN degree
EdgePlanktivoreHMavgROILongitude = NaN degree
PeakPlanktivoreDiatoms = NaN count_per_milliliter
PeakPlanktivoreDiatomsDepth = NaN meter
PeakPlanktivoreDiatomsTemperature = NaN celsius
PeakPlanktivoreDiatomsLatitude = NaN degree
PeakPlanktivoreDiatomsLongitude = NaN degree
EdgePlanktivoreDiatoms = NaN count_per_milliliter
EdgePlanktivoreDiatomsDepth = NaN meter
EdgePlanktivoreDiatomsTemperature = NaN celsius
EdgePlanktivoreDiatomsLatitude = NaN degree
EdgePlanktivoreDiatomsLongitude = NaN degree
PeakPlanktivoreDinoflagellates = NaN count_per_milliliter
PeakPlanktivoreDinoflagellatesDepth = NaN meter
PeakPlanktivoreDinoflagellatesTemperature = NaN celsius
PeakPlanktivoreDinoflagellatesLatitude = NaN degree
PeakPlanktivoreDinoflagellatesLongitude = NaN degree
EdgePlanktivoreDinoflagellates = NaN count_per_milliliter
EdgePlanktivoreDinoflagellatesDepth = NaN meter
EdgePlanktivoreDinoflagellatesTemperature = NaN celsius
EdgePlanktivoreDinoflagellatesLatitude = NaN degree
EdgePlanktivoreDinoflagellatesLongitude = NaN degree
PatchChl = NaN microgram_per_liter
PatchChlDepth = NaN meter
PatchChlLatitude = NaN degree
PatchChlLongitude = NaN degree
PatchChlDistance = NaN meter
PatchSalt = NaN psu
PatchSaltDepth = NaN meter
PatchSaltLatitude = NaN degree
PatchSaltLongitude = NaN degree
PatchSaltDistance = NaN meter
PatchOil = NaN psu
PatchOilDepth = NaN meter
PatchOilLatitude = NaN degree
PatchOilLongitude = NaN degree
PatchOilDistance = NaN meter
TriggeredOnChl = false
ChlTriggering = NaN microgram_per_liter
}
run in parallel
readData strategy="MinError" {
while ( EnabledAanderaaO2 )
Universal:mass_concentration_of_oxygen_in_sea_water
}
readData strategy="MinError" {
while (
EnabledNeilBrown
or EnabledSeabird
)
Universal:sea_water_temperature
Universal:sea_water_salinity
}
readData strategy="MinError" {
while ( EnabledSeabird )
Science:CTD_Seabird.sea_water_temperature
Science:CTD_Seabird.sea_water_salinity
}
readData strategy="MinError" {
while (
( EnabledNeilBrown
or EnabledSeabird
)
and UpwardDerivativeOfTemperatureActive
)
Universal:upward_derivative_of_sea_water_temperature
}
readData strategy="MinError" {
while (
EnabledWetLabsBB2FL
or EnabledRBRTridente
or PeakDetectChlActive
)
Universal:mass_concentration_of_chlorophyll_in_sea_water
}
readData strategy="MinError" {
while ( EnabledWetLabsUBAT )
Science:WetLabsUBAT.average_bioluminescence
}
readData id="Read_Oil" strategy="MinError" {
while (
EnabledWetLabsSeaOWL_UV_A
or PeakDetectOilActive
)
Universal:mass_concentration_of_petroleum_hydrocarbons_in_sea_water
}
aggregate OceanCurrent {
run in sequence
behavior Estimation:CurrentEstimator {
run in parallel
}
}
aggregate PeakDetectChl {
run while ( PeakDetectChlActive )
# In "run while", the behavior's initialize() functions runs on init, but the redefinearg (in the mission that calls Science.tl) doesn't happen until the next cycle. The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior.. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = Universal:mass_concentration_of_chlorophyll_in_sea_water
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set deepThreshValidLeg = DeepThreshValidLeg
set depthChangeThresh = DepChangeThreshForAttitudeFlip
outputArg PeakChl = peakDetect
outputArg PeakChlDepth = peakDepth
outputArg PeakChlTemperature = peakTemperature
outputArg PeakChlLatitude = peakLatitude
outputArg PeakChlLongitude = peakLongitude
}
#debug
#syslog info "PeakChl = " + PeakChl~microgram_per_liter + ". PeakChlDepth = " + PeakChlDepth~meter
sendData service=express (
PeakChl,
PeakChlDepth
)
aggregate SyslogSendDataPeakDepthAvgProfilesChl {
run in sequence
break if ( not ( PeakDepthAvgProfilesChlActive ) )
syslog info "PeakChlAvgProfiles = " + PeakChlAvgProfiles~microgram_per_liter
+ ". PeakChlDepthAvgProfiles = " + PeakChlDepthAvgProfiles~meter
sendData service=express (
PeakChlAvgProfiles,
PeakChlDepthAvgProfiles
)
}
}
aggregate EdgeDetectChl {
run while ( EdgeDetectChlActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "EdgeDetectVsDepth"
behavior Trigger:EdgeDetectVsDepth {
run in sequence
set detect = Universal:mass_concentration_of_chlorophyll_in_sea_water
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set offpeakFractionAscent = OffPeakFractionVerticalAscent
set offpeakFractionDescent = OffPeakFractionVerticalDescent
set depthChangeThresh = DepChangeThreshForAttitudeFlip
set peakThresh = ChlPeakThresh
set numLayers = NumberOfLayers
outputArg GoDown = goDown
outputArg PeakChl = peakDetect
outputArg PeakChlDepth = peakDepth
outputArg PeakChlTemperature = peakTemperature
outputArg PeakChlLatitude = peakLatitude
outputArg PeakChlLongitude = peakLongitude
outputArg EdgeChl = edgeDetect
outputArg EdgeChlDepth = edgeDepth
outputArg EdgeChlTemperature = edgeTemperature
outputArg EdgeChlLatitude = edgeLatitude
outputArg EdgeChlLongitude = edgeLongitude
}
syslog info "GoDown, ChlPeakThresh, PeakChl, PeakChlDepth, EdgeChl, EdgeChlDepth = "
+ GoDown~bool + ", " + ChlPeakThresh~microgram_per_liter + ", " + PeakChl~microgram_per_liter
+ ", " + PeakChlDepth~meter + ", " + EdgeChl~microgram_per_liter + ", " + EdgeChlDepth~meter
sendData service=express (
PeakChl,
PeakChlDepth,
EdgeChl,
EdgeChlDepth
)
}
aggregate HighestChlPeakReport {
run while ( HighestChlPeakReportActive )
behavior Trigger:PeakDetectHorizontal {
run in sequence
set detectFrom = PeakChl
set depthFrom = PeakChlDepth
set latitudeFrom = PeakChlLatitude
set longitudeFrom = PeakChlLongitude
set patchTracking = PatchTracking
set filterWidth = FilterWidthHorizontal
set numProfilesSlidingwindow = NumProfilesSlidingwindow
set offPeakFraction = OffPeakFractionHorizontal
outputArg PatchChl = peakDetect
outputArg PatchChlDepth = peakDepth
outputArg PatchChlLatitude = peakLatitude
outputArg PatchChlLongitude = peakLongitude
outputArg PatchChlDistance = peakDistance
}
}
aggregate PeakDepthAvgProfilesChl {
run while ( PeakDepthAvgProfilesChlActive )
# In "run while", the behavior's initialize() functions runs on init, but the redefinearg (in the mission that calls Science.tl) doesn't happen until the next cycle. The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior.. Don't delete.
syslog debug "PeakDetectHorizontal"
behavior Trigger:PeakDetectHorizontal {
run in sequence
# Set patchTracking to false because the purpose here is not for patch tracking but for reporting peak depth etc. at every attitude flip (ascent to descent or conversely) on yo-yo profiles. See PeakDetectHorizontal.cpp.
set patchTracking = false
set detectFrom = PeakChl
set depthFrom = PeakChlDepth
set latitudeFrom = PeakChlLatitude
set longitudeFrom = PeakChlLongitude
set filterWidth = FilterWidthHorizontal
outputArg PeakChlAvgProfiles = peakDetect
outputArg PeakChlDepthAvgProfiles = peakDepth
}
}
aggregate PeakDetectNO3 {
run while ( PeakDetectNO3Active )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = Universal:mole_concentration_of_nitrate_in_sea_water
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set shallowBound = ShallowBound
set deepBound = DeepBound
outputArg PeakNO3 = peakDetect
outputArg PeakNO3Depth = peakDepth
outputArg PeakNO3Latitude = peakLatitude
outputArg PeakNO3Longitude = peakLongitude
}
sendData service=express (
PeakNO3,
PeakNO3Depth
)
}
aggregate PeakDetectOil {
run while ( PeakDetectOilActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = Universal:mass_concentration_of_petroleum_hydrocarbons_in_sea_water
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set shallowBound = ShallowBound
set deepBound = DeepBound
outputArg PeakOil = peakDetect
outputArg PeakOilDepth = peakDepth
outputArg PeakOilLatitude = peakLatitude
outputArg PeakOilLongitude = peakLongitude
}
# debug
# <Syslog Severity="Important">PeakOil, PeakOilDepth, PeakOilTemperature, PeakOilLatitude, PeakOilLongitude = <Arg Name="PeakOil"/><Units:kilogram_per_cubic_meter/>, <Arg Name="PeakOilDepth"/><Units:meter/>, <Arg Name="PeakOilTemperature"/><Units:celsius/>, <Arg Name="PeakOilLatitude"/><Units:degree/>, <Arg Name="PeakOilLongitude"/><Units:degree/></Syslog>
sendData service=express (
PeakOil,
PeakOilDepth
)
}
aggregate HighestOilPeakReport {
run while ( HighestOilPeakReportActive )
behavior Trigger:PeakDetectHorizontal {
run in sequence
set detectFrom = PeakOil
set depthFrom = PeakOilDepth
set latitudeFrom = PeakOilLatitude
set longitudeFrom = PeakOilLongitude
set patchTracking = PatchTracking
set filterWidth = FilterWidthHorizontal
set numProfilesSlidingwindow = NumProfilesSlidingwindow
set offPeakFraction = OffPeakFractionHorizontal
outputArg PatchOil = peakDetect
outputArg PatchOilDepth = peakDepth
outputArg PatchOilLatitude = peakLatitude
outputArg PatchOilLongitude = peakLongitude
outputArg PatchOilDistance = peakDistance
}
}
aggregate PeakDetectFDOM {
run while ( PeakDetectFDOMActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = Universal:concentration_of_colored_dissolved_organic_matter_in_sea_water
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set shallowBound = ShallowBound
set deepBound = DeepBound
outputArg PeakFDOM = peakDetect
outputArg PeakFDOMDepth = peakDepth
outputArg PeakFDOMTemperature = peakTemperature
outputArg PeakFDOMLatitude = peakLatitude
outputArg PeakFDOMLongitude = peakLongitude
}
sendData service=express (
PeakFDOM,
PeakFDOMDepth
)
}
aggregate PeakDetectSalinity {
run while ( PeakDetectSalinityActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = Universal:sea_water_salinity
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set depthChangeThresh = DepChangeThreshForAttitudeFlip
outputArg PeakSalt = peakDetect
outputArg PeakSaltDepth = peakDepth
outputArg PeakSaltTemperature = peakTemperature
outputArg PeakSaltLatitude = peakLatitude
outputArg PeakSaltLongitude = peakLongitude
}
# debug
# <Syslog Severity="Important">PeakSalt, PeakSaltDepth, PeakSaltTemperature, PeakSaltLatitude, PeakSaltLongitude = <Arg Name="PeakSalt"/><Units:psu/>, <Arg Name="PeakSaltDepth"/><Units:meter/>, <Arg Name="PeakSaltTemperature"/><Units:celsius/>, <Arg Name="PeakSaltLatitude"/><Units:degree/>, <Arg Name="PeakSaltLongitude"/><Units:degree/></Syslog>
sendData service=express (
PeakSalt,
PeakSaltDepth
)
}
aggregate HighestSaltPeakReport {
run while ( HighestSaltPeakReportActive )
behavior Trigger:PeakDetectHorizontal {
run in sequence
set detectFrom = PeakSalt
set depthFrom = PeakSaltDepth
set latitudeFrom = PeakSaltLatitude
set longitudeFrom = PeakSaltLongitude
set patchTracking = PatchTracking
set filterWidth = FilterWidthHorizontal
set numProfilesSlidingwindow = NumProfilesSlidingwindow
set offPeakFraction = OffPeakFractionHorizontal
outputArg PatchSalt = peakDetect
outputArg PatchSaltDepth = peakDepth
outputArg PatchSaltLatitude = peakLatitude
outputArg PatchSaltLongitude = peakLongitude
outputArg PatchSaltDistance = peakDistance
}
}
aggregate PeakDetectPlanktivoreLMavgROI {
run while ( PeakDetectPlanktivoreLMavgROIActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = "_.planktivore_LM_AvgRois"
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set depthChangeThresh = DepChangeThreshForAttitudeFlip
outputArg PeakPlanktivoreLMavgROI = peakDetect
outputArg PeakPlanktivoreLMavgROIDepth = peakDepth
outputArg PeakPlanktivoreLMavgROITemperature = peakTemperature
outputArg PeakPlanktivoreLMavgROILatitude = peakLatitude
outputArg PeakPlanktivoreLMavgROILongitude = peakLongitude
}
sendData service=express (
PeakPlanktivoreLMavgROI,
PeakPlanktivoreLMavgROIDepth
)
aggregate SyslogSendDataPeakDepthAvgProfilesPlanktivoreLMavgROI {
run in sequence
break if (
not ( PeakDepthAvgProfilesPlanktivoreLMavgROIActive )
)
syslog info "PeakPlanktivoreLMavgROIAvgProfiles = "
+ PeakPlanktivoreLMavgROIAvgProfiles~count_per_second
+ ". PeakPlanktivoreLMavgROIDepthAvgProfiles = " + PeakPlanktivoreLMavgROIDepthAvgProfiles~meter
sendData service=express (
PeakPlanktivoreLMavgROIAvgProfiles,
PeakPlanktivoreLMavgROIDepthAvgProfiles
)
}
}
aggregate EdgeDetectPlanktivoreLMavgROI {
run while ( EdgeDetectPlanktivoreLMavgROIActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "EdgeDetectVsDepth"
behavior Trigger:EdgeDetectVsDepth {
run in sequence
set detect = "_.planktivore_LM_AvgRois"
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set offpeakFractionAscent = OffPeakFractionVerticalAscent
set offpeakFractionDescent = OffPeakFractionVerticalDescent
set depthChangeThresh = DepChangeThreshForAttitudeFlip
set peakThresh = PlanktivoreLMavgROIPeakThresh
set numLayers = NumberOfLayers
outputArg GoDown = goDown
outputArg PeakPlanktivoreLMavgROI = peakDetect
outputArg PeakPlanktivoreLMavgROIDepth = peakDepth
outputArg PeakPlanktivoreLMavgROITemperature = peakTemperature
outputArg PeakPlanktivoreLMavgROILatitude = peakLatitude
outputArg PeakPlanktivoreLMavgROILongitude = peakLongitude
outputArg EdgePlanktivoreLMavgROI = edgeDetect
outputArg EdgePlanktivoreLMavgROIDepth = edgeDepth
outputArg EdgePlanktivoreLMavgROITemperature = edgeTemperature
outputArg EdgePlanktivoreLMavgROILatitude = edgeLatitude
outputArg EdgePlanktivoreLMavgROILongitude = edgeLongitude
}
syslog info "GoDown, PlanktivoreLMavgROIPeakThresh, PeakPlanktivoreLMavgROI, PeakPlanktivoreLMavgROIDepth, EdgePlanktivoreLMavgROI, EdgePlanktivoreLMavgROIDepth = "
+ GoDown~bool + ", " + PlanktivoreLMavgROIPeakThresh~count_per_second + ", "
+ PeakPlanktivoreLMavgROI~count_per_second + ", " + PeakPlanktivoreLMavgROIDepth~meter + ", "
+ EdgePlanktivoreLMavgROI~count_per_second + ", " + EdgePlanktivoreLMavgROIDepth~meter
sendData service=express (
PeakPlanktivoreLMavgROI,
PeakPlanktivoreLMavgROIDepth,
EdgePlanktivoreLMavgROI,
EdgePlanktivoreLMavgROIDepth
)
}
aggregate PeakDepthAvgProfilesPlanktivoreLMavgROI {
run while (
PeakDepthAvgProfilesPlanktivoreLMavgROIActive
)
# In "run while", the behavior's initialize() functions runs on init, but the redefinearg (in the mission that calls Science.tl) doesn't happen until the next cycle. The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior.. Don't delete.
syslog debug "PeakDetectHorizontal"
behavior Trigger:PeakDetectHorizontal {
run in sequence
# Set patchTracking to false because the purpose here is not for patch tracking but for reporting peak depth etc. at every attitude flip (ascent to descent or conversely) on yo-yo profiles. See PeakDetectHorizontal.cpp.
set patchTracking = false
set detectFrom = PeakPlanktivoreLMavgROI
set depthFrom = PeakPlanktivoreLMavgROIDepth
set latitudeFrom = PeakPlanktivoreLMavgROILatitude
set longitudeFrom = PeakPlanktivoreLMavgROILongitude
set filterWidth = FilterWidthHorizontal
outputArg PeakPlanktivoreLMavgROIAvgProfiles = peakDetect
outputArg PeakPlanktivoreLMavgROIDepthAvgProfiles = peakDepth
}
}
aggregate PeakDetectPlanktivoreHMavgROI {
run while ( PeakDetectPlanktivoreHMavgROIActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = "_.planktivore_HM_AvgRois"
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set depthChangeThresh = DepChangeThreshForAttitudeFlip
outputArg PeakPlanktivoreHMavgROI = peakDetect
outputArg PeakPlanktivoreHMavgROIDepth = peakDepth
outputArg PeakPlanktivoreHMavgROITemperature = peakTemperature
outputArg PeakPlanktivoreHMavgROILatitude = peakLatitude
outputArg PeakPlanktivoreHMavgROILongitude = peakLongitude
}
# debug
# <Syslog Severity="Important">PeakPlanktivoreHMavgROI, PeakPlanktivoreHMavgROILatitude, PeakPlanktivoreHMavgROILongitude = <Arg Name="PeakPlanktivoreHMavgROI"/><Units:count_per_second/>, <Arg Name="PeakPlanktivoreHMavgROILatitude"/><Units:degree/>, <Arg Name="PeakPlanktivoreHMavgROILongitude"/><Units:degree/></Syslog>
sendData service=express (
PeakPlanktivoreHMavgROI,
PeakPlanktivoreHMavgROIDepth
)
}
aggregate EdgeDetectPlanktivoreHMavgROI {
run while ( EdgeDetectPlanktivoreHMavgROIActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "EdgeDetectVsDepth"
behavior Trigger:EdgeDetectVsDepth {
run in sequence
set detect = "_.planktivore_HM_AvgRois"
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set offpeakFractionAscent = OffPeakFractionVerticalAscent
set offpeakFractionDescent = OffPeakFractionVerticalDescent
set depthChangeThresh = DepChangeThreshForAttitudeFlip
set peakThresh = PlanktivoreHMavgROIPeakThresh
set numLayers = NumberOfLayers
outputArg GoDown = goDown
outputArg PeakPlanktivoreHMavgROI = peakDetect
outputArg PeakPlanktivoreHMavgROIDepth = peakDepth
outputArg PeakPlanktivoreHMavgROITemperature = peakTemperature
outputArg PeakPlanktivoreHMavgROILatitude = peakLatitude
outputArg PeakPlanktivoreHMavgROILongitude = peakLongitude
outputArg EdgePlanktivoreHMavgROI = edgeDetect
outputArg EdgePlanktivoreHMavgROIDepth = edgeDepth
outputArg EdgePlanktivoreHMavgROITemperature = edgeTemperature
outputArg EdgePlanktivoreHMavgROILatitude = edgeLatitude
outputArg EdgePlanktivoreHMavgROILongitude = edgeLongitude
}
syslog info "GoDown, PlanktivoreHMavgROIPeakThresh, PeakPlanktivoreHMavgROI, PeakPlanktivoreHMavgROIDepth, EdgePlanktivoreHMavgROI, EdgePlanktivoreHMavgROIDepth = "
+ GoDown~bool + ", " + PlanktivoreHMavgROIPeakThresh~count_per_second + ", "
+ PeakPlanktivoreHMavgROI~count_per_second + ", " + PeakPlanktivoreHMavgROIDepth~meter + ", "
+ EdgePlanktivoreHMavgROI~count_per_second + ", " + EdgePlanktivoreHMavgROIDepth~meter
sendData service=express (
PeakPlanktivoreHMavgROI,
PeakPlanktivoreHMavgROIDepth,
EdgePlanktivoreHMavgROI,
EdgePlanktivoreHMavgROIDepth
)
}
aggregate PeakDetectPlanktivoreDiatoms {
run while ( PeakDetectPlanktivoreDiatomsActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = "_.planktivore_diatoms"
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set depthChangeThresh = DepChangeThreshForAttitudeFlip
outputArg PeakPlanktivoreDiatoms = peakDetect
outputArg PeakPlanktivoreDiatomsDepth = peakDepth
outputArg PeakPlanktivoreDiatomsTemperature = peakTemperature
outputArg PeakPlanktivoreDiatomsLatitude = peakLatitude
outputArg PeakPlanktivoreDiatomsLongitude = peakLongitude
}
sendData service=express (
PeakPlanktivoreDiatoms,
PeakPlanktivoreDiatomsDepth
)
}
aggregate EdgeDetectPlanktivoreDiatoms {
run while ( EdgeDetectPlanktivoreDiatomsActive )
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "EdgeDetectVsDepth"
behavior Trigger:EdgeDetectVsDepth {
run in sequence
set detect = "_.planktivore_diatoms"
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set offpeakFractionAscent = OffPeakFractionVerticalAscent
set offpeakFractionDescent = OffPeakFractionVerticalDescent
set depthChangeThresh = DepChangeThreshForAttitudeFlip
set peakThresh = PlanktivoreDiatomsPeakThresh
set numLayers = NumberOfLayers
outputArg GoDown = goDown
outputArg PeakPlanktivoreDiatoms = peakDetect
outputArg PeakPlanktivoreDiatomsDepth = peakDepth
outputArg PeakPlanktivoreDiatomsTemperature = peakTemperature
outputArg PeakPlanktivoreDiatomsLatitude = peakLatitude
outputArg PeakPlanktivoreDiatomsLongitude = peakLongitude
outputArg EdgePlanktivoreDiatoms = edgeDetect
outputArg EdgePlanktivoreDiatomsDepth = edgeDepth
outputArg EdgePlanktivoreDiatomsTemperature = edgeTemperature
outputArg EdgePlanktivoreDiatomsLatitude = edgeLatitude
outputArg EdgePlanktivoreDiatomsLongitude = edgeLongitude
}
syslog info "GoDown, PlanktivoreDiatomsPeakThresh, PeakPlanktivoreDiatoms, PeakPlanktivoreDiatomsDepth, EdgePlanktivoreDiatoms, EdgePlanktivoreDiatomsDepth = "
+ GoDown~bool + ", " + PlanktivoreDiatomsPeakThresh~count_per_milliliter + ", "
+ PeakPlanktivoreDiatoms~count_per_milliliter + ", " + PeakPlanktivoreDiatomsDepth~meter + ", "
+ EdgePlanktivoreDiatoms~count_per_milliliter + ", " + EdgePlanktivoreDiatomsDepth~meter
sendData service=express (
PeakPlanktivoreDiatoms,
PeakPlanktivoreDiatomsDepth,
EdgePlanktivoreDiatoms,
EdgePlanktivoreDiatomsDepth
)
}
aggregate PeakDetectPlanktivoreDinoflagellates {
run while (
PeakDetectPlanktivoreDinoflagellatesActive
)
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "PeakDetectVsDepth"
behavior Trigger:PeakDetectVsDepth {
run in sequence
set detect = "_.planktivore_dinoflagellates"
set timeWindowPeakReport = TimeWindowPeakReport
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set depthChangeThresh = DepChangeThreshForAttitudeFlip
outputArg PeakPlanktivoreDinoflagellates = peakDetect
outputArg PeakPlanktivoreDinoflagellatesDepth = peakDepth
outputArg PeakPlanktivoreDinoflagellatesTemperature = peakTemperature
outputArg PeakPlanktivoreDinoflagellatesLatitude = peakLatitude
outputArg PeakPlanktivoreDinoflagellatesLongitude = peakLongitude
}
sendData service=express (
PeakPlanktivoreDinoflagellates,
PeakPlanktivoreDinoflagellatesDepth
)
}
aggregate EdgeDetectPlanktivoreDinoflagellates {
run while (
EdgeDetectPlanktivoreDinoflagellatesActive
)
# The following line is a work-around to ensure redefinearg (in the mission that calls Science.tl) is taken by the behavior. Don't delete.
syslog debug "EdgeDetectVsDepth"
behavior Trigger:EdgeDetectVsDepth {
run in sequence
set detect = "_.planktivore_dinoflagellates"
set windowLength = LowPassWindowLength
set medianFilterLength = MedianFilterLen
set shallowBound = ShallowBound
set deepBound = DeepBound
set offpeakFractionAscent = OffPeakFractionVerticalAscent
set offpeakFractionDescent = OffPeakFractionVerticalDescent
set depthChangeThresh = DepChangeThreshForAttitudeFlip
set peakThresh = PlanktivoreDinoflagellatesPeakThresh
set numLayers = NumberOfLayers
outputArg GoDown = goDown
outputArg PeakPlanktivoreDinoflagellates = peakDetect
outputArg PeakPlanktivoreDinoflagellatesDepth = peakDepth
outputArg PeakPlanktivoreDinoflagellatesTemperature = peakTemperature
outputArg PeakPlanktivoreDinoflagellatesLatitude = peakLatitude
outputArg PeakPlanktivoreDinoflagellatesLongitude = peakLongitude
outputArg EdgePlanktivoreDinoflagellates = edgeDetect
outputArg EdgePlanktivoreDinoflagellatesDepth = edgeDepth
outputArg EdgePlanktivoreDinoflagellatesTemperature = edgeTemperature
outputArg EdgePlanktivoreDinoflagellatesLatitude = edgeLatitude
outputArg EdgePlanktivoreDinoflagellatesLongitude = edgeLongitude
}
syslog info "GoDown, PlanktivoreDinoflagellatesPeakThresh, PeakPlanktivoreDinoflagellates, PeakPlanktivoreDinoflagellatesDepth, EdgePlanktivoreDinoflagellates, EdgePlanktivoreDinoflagellatesDepth = "
+ GoDown~bool + ", " + PlanktivoreDinoflagellatesPeakThresh~count_per_milliliter + ", "
+ PeakPlanktivoreDinoflagellates~count_per_milliliter + ", "
+ PeakPlanktivoreDinoflagellatesDepth~meter + ", "
+ EdgePlanktivoreDinoflagellates~count_per_milliliter + ", "
+ EdgePlanktivoreDinoflagellatesDepth~meter
sendData service=express (
PeakPlanktivoreDinoflagellates,
PeakPlanktivoreDinoflagellatesDepth,
EdgePlanktivoreDinoflagellates,
EdgePlanktivoreDinoflagellatesDepth
)
}
aggregate ChlThreshTrigger {
run while ( ChlThreshTriggerActive )
behavior Trigger:ValueDetect {
run in sequence
set detect = PeakChl
set lowerThreshold = ChlLowerThresh
set upperThreshold = ChlUpperThresh
set numProfilesThreshold = NumProfilesThresh
outputArg ChlTriggering = outputValue
}
assign in sequence TriggeredOnChl = true
syslog important "Triggered. PeakChl values on " + NumProfilesThresh~count
+ " consecutive yo-yo profiles fall in [" + ChlLowerThresh~microgram_per_liter
+ ChlUpperThresh~microgram_per_liter + "] (NaN bound is ignored)."
}
}
|