-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
693 lines (662 loc) · 43.9 KB
/
publications.html
File metadata and controls
693 lines (662 loc) · 43.9 KB
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
---
title: TRACMASS publications
keywords: research papers, publications, literature
category: basics
---
<!doctype html>
<html lang="en">
<head>
<title>TRACMASS publications</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="shortcut icon" href="images/headers_footer/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/headers_footer/favicon.ico" type="image/x-icon">
</head>
<body class="palette-navy">
<div id="page" class="site">
{% include header.html pre_link=" " %}
<main id="content" class="site-content">
<article class="post post-full">
<header class="post-header has-gradient outer">
<div class="bg-img" style="background-image: url('images/headers_footer/fig_header.png')"></div>
<div class="inner-sm">
<h1 class="post-title">TRACMASS publications</h1>
<div class="post-subtitle">
a non-exhaustive list
</div>
</div>
</header>
<div class="inner-md outer">
<div class="post-content">
<script>
function search_publication() {
let input = document.getElementById('searchbar').value
input = input.toLowerCase();
let x = document.getElementsByClassName('reference');
for (i = 0; i < x.length; i++) {
if (!x[i].innerHTML.toLowerCase().includes(input)) {
x[i].style.display = "none";
}
else {
x[i].style.display = "list-item";
}
}
}
</script>
<input id="searchbar" onkeyup="search_publication()" type="text" name="search"
placeholder="Search by publication or category ...">
<ul id="myUL" style="list-style-type:none;">
<br>
<li class="reference"> Meng, Z., Ji, Q., Chen, H. and Lv, G. (2025). Quantification of multi-source
contributions to volume transport in the Tsushima Strait. Ocean Modelling, page 102597.
<a class="trmLnk" href="https://doi.org/10.1016/j.ocemod.2025.102597" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Dey, D., Joseph, L., Ray, A., Marsh, R., Skliris, N., Turner, A.G., Ayantika, D.C.,
Mukhopadhyay, P., Chakraborty, A. and Sil, S. (2025). Interactions between subpolar and subtropical jet
streams lead to extreme rainfall events over the North Indian Subcontinent in June 2013 and July 2023.
Climate Dynamics, 63(5), p.230.
<a class="trmLnk" href="https://doi.org/10.1007/s00382-025-07712-w" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
<span class="badge badge-air badge-lg">Atmospheric water</span>
</li>
<br>
<li class="reference"> Eisbrenner, E. (2025). Lagrangian attribution of marine heatwave drivers.
Environmental Research Communications, 7(11), 111007.
<a class="trmLnk" href="https://doi.org/10.1088/2515-7620/ae0f81" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Chafik, L., Eisbrenner, E. and Döös, K. (2025). Lagrangian View of Atlantic Water
Pathways toward the North Sea. Tellus A: Dynamic Meteorology and Oceanography, 77(1), pages 151–159.
<a class="trmLnk" href="https://doi.org/10.16993/tellusa.4104" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Zarzyczny, K.M., Robidart, J.C., Fenberg, P.B., Forryan, A., Hellberg, M.E.,
Williams, S.T., Paz‐García, D.A., Naveira Garabato, A.C. and Rius, M. (2025). Combining environmental
DNA
data with oceanography, life history and ecology for detecting climate‐induced range shifts. Diversity
and Distributions, 31(8), p.e70064.
<a class="trmLnk" href="https://doi.org/10.1111/ddi.70064" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Hong, W., Chen, G., Han, W. and Zhang, T. (2025). The role of the Westward
Equatorial Undercurrent in feeding the Seychelles–Chagos Thermocline Ridge upwelling: W. Hong et al.
Climate Dynamics, 63(6), p.272.
<a class="trmLnk" href="https://doi.org/10.1007/s00382-025-07751-3" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Tooth, O.J., Johnson, H.L. and Wilson, C. (2025). Controls on dense-water formation
along the path of the North Atlantic subpolar gyre. Ocean Science, 21(5), pp.2101-2123.
<a class="trmLnk" href="https://doi.org/10.5194/os-21-2101-2025" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Pang, K., Feng, Y., Zheng, Y., Fang, C. and Xu, X. (2025). Simulating the ENSO
impact on the distribution and fate of floating litter particles in the Northern South China Sea.
Frontiers in Marine Science.
<a class="trmLnk" href="https://doi.org/10.3389/fmars.2024.1494809" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Reiss, R.S., Lemmin, U., Mettra, F., Hamze‐Ziabari, S.M. and Barry, D.A. (2025).
Unveiling the complex structure of vertical mode‐two Kelvin waves driving strong nearshore currents in
large, deep Lake Geneva. Journal of Geophysical Research: Oceans, 130(10), p.e2025JC022353.
<a class="trmLnk" href="https://doi.org/10.1029/2025JC022353" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-other badge-lg">Regional</span>
<span class="badge badge-other badge-lg">Waves</span>
</li>
<!-- ^2025^ -->
<br>
<li class="reference">Dey, D., Marsh, R., Drijfhout, S., Josey, S.A., Sinha, B., Grist, J. and Döös, K.
(2024). Formation of the Atlantic Meridional Overturning Circulation lower limb is critically dependent
on Atlantic-Arctic mixing. Nature Communications, 15(1), page 7341.
<a class="trmLnk" href="https://doi.org/10.1002/qj.4621" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference">Dey, D., Geen, R., Lambert, F.H., Agrawal, S., Vallis, G., Marsh, R., Skliris, N.
and Döös, K. (2024). Identification of the atmospheric water sources and pathways responsible for the
East Asian summer monsoon rainfall. Quarterly Journal of the Royal Meteorological Society, 150(759),
pages 763-775.
<a class="trmLnk" href="https://doi.org/10.1002/qj.4621" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
<span class="badge badge-air badge-lg">Atmosphere</span>
<span class="badge badge-air badge-lg">Atmospheric water</span>
</li>
<br>
<li class="reference">Catalano, K.A., Drenkard, E.J., Curchitser, E.N., Dedrick, A.G., Stuart, M.R.,
Montes Jr, H.R. and Pinsky, M.L. (2024). The contribution of nearshore oceanography to temporal
variation
in larval dispersal. Ecology, 105(10), p.e4412.
<a class="trmLnk" href="https://doi.org/10.1002/ecy.4412" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
<span class="badge badge-other badge-lg">Biology</span>
</li>
<br>
<li class="reference">Marsh, R., Dey, D., Lenn, Y.D. and Roberts, E.M. (2024). Shifts from surface density
compensation to projected warming, freshening and stronger stratification in the subpolar North
Atlantic. Climate Dynamics, 62(8), pp.8227-8253.
<a class="trmLnk" href="https://doi.org/10.1007/s00382-024-07336-6" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference">Harris, E., Dey, D., Marsh, R. and Grist, J. (2024). Meridional Heat Convergence
Will
Increase Tropical North Atlantic Heat Content Available for Hurricane Intensification. In Advances in
Hurricane Risk in a Changing Climate (pp. 77-95). Cham: Springer Nature Switzerland.
<a class="trmLnk" href="https://doi.org/10.1007/978-3-031-63186-3_4" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference">Holman, L.E., Pazmiño, D.A., Gopalakrishnan, S., Forryan, A., Hearn, A.R.,
Naveira-Garabato, A.C. and Rius, M. (2024). Fine-scale oceanographic processes shape marine biodiversity
patterns in the Galápagos Islands. bioRxiv, pp.2024-03.
<a class="trmLnk" href="https://doi.org/10.1101/2024.03.06.583537" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
<span class="badge badge-other badge-lg">Biology</span>
</li>
<br>
<li class="reference">Irani Rahaghi, A., Odermatt, D., Anneville, O., Sepúlveda Steiner, O., Reiss, R.S.,
Amadori, M., Toffolon, M., Jacquet, S., Harmel, T., Werther, M. and Soulignac, F. (2024). Combined Earth
observations reveal the sequence of conditions leading to a large algal bloom in Lake Geneva.
Communications Earth & Environment, 5(1), p.229.
<a class="trmLnk" href="https://doi.org/10.1038/s43247-024-01351-5" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
<span class="badge badge-other badge-lg">Biology</span>
</li>
<!-- ^2024^ -->
<br>
<li class="reference"> Abdennadher, J., Boukthir, M. and Döös, K. (2023). Water Mass Transformation in a
Secluded Bay of the Mediterranean Sea. Tellus A: Dynamic Meteorology and Oceanography, 75(1).
<a class="trmLnk" href="https://doi.org/10.16993/tellusa.3243" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Berglund, S., Döös, K., Groeskamp, S. and McDougall, T. (2023). North Atlantic
Ocean circulation and related exchange of heat and salt between water masses. Geophysical Research
Letters,
50(13), page e2022GL100989.
<a class="trmLnk" href="https://doi.org/10.1029/2022GL100989" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Dey, D., Aldama Campino, A. and Döös, K. (2023). Atmospheric water transport
connectivity within and between ocean basins and land. Hydrology and Earth System Sciences, 27(2),
pages 481-493.
<a class="trmLnk" href="https://doi.org/10.5194/hess-27-481-2023" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-air badge-lg">Atmosphere</span>
<span class="badge badge-air badge-lg">Atmospheric water</span>
</li>
<br>
<li class="reference">Fitz, K.S., Montes Jr, H.R., Thompson, D.M. and Pinsky, M.L., 2023.
Isolation‐by‐distance and isolation‐by‐oceanography in maroon anemonefish (Amphiprion biaculeatus).
Evolutionary applications, 16(2), pp.379-392.
<a class="trmLnk" href="https://doi.org/10.1111/eva.13448" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-air badge-lg">Regional</span>
<span class="badge badge-air badge-lg">Biology</span>
</li>
<br>
<li class="reference">Tooth, O.J., Johnson, H.L., Wilson, C. and Evans, D.G. (2023). Seasonal overturning
variability in the eastern North Atlantic subpolar gyre: a Lagrangian perspective. Ocean Science, 19(3),
pp.769-791.
<a class="trmLnk" href="https://doi.org/10.5194/os-19-769-2023" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-air badge-lg">Regional</span>
</li>
<!-- ^2023^ -->
<br>
<li class="reference"> Berglund, S., Döös, K., Groeskamp, S. and McDougall, T.J. (2022). The downward
spiralling nature of the North Atlantic Subtropical Gyre. Nature communications, 13(1), 2000.
<a class="trmLnk" href="https://doi.org/10.1038/s41467-022-29607-8" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Xiu, P., Guo, L. and Ma, W. (2022). Modelling the influence of submesoscale
processes on phytoplankton dynamics in the northern South China Sea. Frontiers in Marine Science, 9,
p.967678.
<a class="trmLnk" href="https://doi.org/10.3389/fmars.2022.967678" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
<span class="badge badge-other badge-lg">Biology</span>
</li>
<br>
<li class="reference"> Schumacher, D.L., Hauser, M. and Seneviratne, S.I. (2022). Drivers and mechanisms
of
the 2021 Pacific Northwest heatwave. Earth's Future, 10(12), p.e2022EF002967.
<a class="trmLnk" href="https://doi.org/10.1029/2022EF002967" target="_blank">Link</a> <br>
<em>Categories:</em>
<span class="badge badge-other badge-lg">Regional</span>
<span class="badge badge-other badge-lg">Atmosphere</span>
</li>
<!-- ^2022^ -->
<br>
<li class="reference"> Dey, D., and Döös, K. (2021). Tracing the Origin of the South Asian Summer Monsoon
Precipitation and Its Variability Using a Novel Lagrangian Framework. Journal of Climate, 34(21),
8655-8668.
<a class="trmLnk" href="https://doi.org/10.1175/JCLI-D-20-0967.1" target="_blank">Link</a> <br>
<em>Categories:</em> <span class="badge badge-air badge-lg">Atmosphere</span> <span
class="badge badge-air badge-lg">Atmospheric water</span>
</li>
<br>
<li class="reference"> Berglund, S., Döös, K., Aldama Campino, A., & Nycander, J. (2021). The water mass
transformation in the upper limb of the overturning circulation in the Southern Hemisphere. Journal of
Geophysical Research: Oceans, 126, e2021JC017330.
<a class="trmLnk" href="https://doi.org/10.1029/2021JC017330" target="_blank">Link</a> <br>
<em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span>
</li>
<!-- ^2021^ -->
<br>
<li class="reference"> Dey, D., and Döös, K. (2020). Atmospheric Freshwater Transport From the Atlantic to
the Pacific Ocean: A Lagrangian Analysis. Geophysical Research Letters, 47(6), e2019GL086176.
<a class="trmLnk" href="https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1029/2019GL086176"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-air badge-lg">Atmosphere</span> <span class="badge badge-air badge-lg">Atmospheric
water</span>
</li>
<br>
<li class="reference"> Liang, L., Xue, H. (2020). The reversal indian ocean waters. Geophysical Research
Letters, 47, e2020GL088269.
<a class="trmLnk" href="https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020GL088269"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Jonsson, PR, Moksnes, P-O, Corell, H, Bonsdorff, E, Nilsson Jacobi, M. (2020).
Ecological coherence of Marine Protected Areas: New tools applied to the Baltic Sea network. Aquatic
Conserv: Mar Freshw Ecosyst. 30: 743– 760.
<a class="trmLnk" href="https://onlinelibrary.wiley.com/doi/10.1002/aqc.3286" target="_blank">Link</a>
<br> <em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span> <span
class="badge badge-bio badge-lg">Ecology</span> <span
class="badge badge-other badge-lg">Regional</span>
</li>
<!-- ^2020^ -->
<br>
<li class="reference"> Cimatoribus, A.A., Lemmin, U. and Barry, D.A. (2019). Tracking Lagrangian transport
in Lake Geneva: A 3D numerical modeling investigation. Limnol Oceanogr, 64: 1252-1269.
<a class="trmLnk" href="https://aslopubs.onlinelibrary.wiley.com/doi/10.1002/lno.11111"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Magne Simonsen, Hans-Christian Teien, Ole Christian Lind, Øyvind Saetra, Jon
Albretsen, Brit Salbu (2019). Modeling key processes affecting Al speciation and transport in estuaries,
Science of The Total Environment, Volume 687, Pages 1147-1163.
<a class="trmLnk" href="https://www.sciencedirect.com/science/article/pii/S0048969719323654?via%3Dihub"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Ecology</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Liang, L., Xue, H., & Shu, Y. (2019). The Indonesian throughflow and the
circulation in the Banda Sea: A modeling study. Journal of Geophysical Research: Oceans, 124, 3089–
3106.
<a class="trmLnk" href="https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2018JC014926"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<!-- ^2019^ -->
<br>
<li class="reference"> Villarino, E., Watson, J.R., Jönsson, B. et al (2018). Large-scale ocean
connectivity and planktonic body size. Nat Commun 9, 142.
<a class="trmLnk" href="https://www.nature.com/articles/s41467-017-02535-8" target="_blank">Link</a>
<br> <em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span> <span
class="badge badge-bio badge-lg">Biology</span>
</li>
<!-- ^2018^ -->
<br>
<li class="reference"> Berglund, S., Döös, K., and Nycander, J. (2017). Lagrangian tracing of the
water–mass transformations in the Atlantic Ocean. Tellus A: Dynamic Meteorology and Oceanography, 69(1),
1306311.
<a class="trmLnk" href="https://www.tandfonline.com/doi/pdf/10.1080/16000870.2017.1306311"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
</li>
<br>
<li class="reference"> Döös, K., B. F. Jönsson and J. Kjellsson (2017), Evaluation of oceanic and
atmospheric trajectory schemes in the TRACMASS trajectory model v6.0. Geosci. Model Dev., 10, 1733–1749
<a class="trmLnk" href="https://doi.org/10.5194/gmd-10-1733-2017" target="_blank">Link</a> <br>
<em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-air badge-lg">Atmosphere</span>
</li>
<!-- ^2017^ -->
<br>
<li class="reference"> Jönsson, B., Watson, J. (2016). The timescales of global surface-ocean
connectivity. Nat Commun 7, 11239.
<a class="trmLnk" href="https://www.nature.com/articles/ncomms11239" target="_blank">Link</a> <br>
<em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span>
</li>
<br>
<li class="reference"> Colleen M. Petrik, Janet T. Duffy-Anderson, Frederic Castruccio, Enrique N.
Curchitser, Seth L. Danielson, Katherine Hedstrom, Franz Mueter (2016). Modelled connectivity between
Walleye Pollock (Gadus chalcogrammus) spawning and age-0 nursery areas in warm and cold years with
implications for juvenile survival, ICES Journal of Marine Science, Volume 73, Issue 7, July 2016, Pages
1890–1900.
<a class="trmLnk" href="https://academic.oup.com/icesjms/article/73/7/1890/2458227"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Biology</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Jönsson, B. F., and Salisbury, J. E. (2016), Episodicity in phytoplankton dynamics
in a coastal region, Geophys. Res. Lett., 43, 5821– 5828.
<a class="trmLnk" href="https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/2016GL068683"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Biology</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Kleypas, J.A., Thompson, D.M., Castruccio, F.S., Curchitser, E.N., Pinsky, M. and
Watson, J.R. (2016). Larval connectivity across temperature gradients and its potential effect on heat
tolerance in coral populations. Glob Change Biol, 22: 3539-3549.
<a class="trmLnk" href="https://onlinelibrary.wiley.com/doi/10.1111/gcb.13347" target="_blank">Link</a>
<br> <em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span> <span
class="badge badge-bio badge-lg">Biology</span> <span
class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Viikmäe, B., T. Soomere, (2016). Temporal scales for nearshore hits of
current-driven pollution in the Gulf of Finland. Marine Pollution Bulletin, Volume 106, Issues 1–2,
pages 77-86.
<a class="trmLnk" href="https://www.sciencedirect.com/science/article/pii/S0025326X16301540?via%3Dihub"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Pollution
control</span> <span class="badge badge-other badge-lg">Regional</span>
</li>
<!-- ^2016^ -->
<br>
<li class="reference"> Colleen M. Petrik, Janet T. Duffy-Anderson, Franz Mueter, Katherine Hedstrom,
Enrique N. Curchitser (2015). Biophysical transport model suggests climate variability determines
distribution of Walleye Pollock early life stages in the eastern Bering Sea through effects on spawning,
Progress in Oceanography, Volume 138, Part B, Pages 459-474.
<a class="trmLnk" href="https://www.sciencedirect.com/science/article/pii/S0079661114001128?via%3Dihub"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Biology</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Rothäusler, E., Corell, H. and Jormalainen, V. (2015). Abundance and dispersal
trajectories of floating Fucus vesiculosus in the Northern Baltic Sea. Limnol. Oceanogr., 60: 2173-2184.
<a class="trmLnk" href="https://aslopubs.onlinelibrary.wiley.com/doi/10.1002/lno.10195"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Biology</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<!-- ^2015^ -->
<br>
<li class="reference"> Viikmäe, B., T. Soomere, (2014). Spatial pattern of current-driven hits to the
nearshore from a major marine fairway in the Gulf of Finland. Journal of Marine Systems, Volume 129,
pages 106-117.
<a class="trmLnk" href="https://www.sciencedirect.com/science/article/pii/S092479631300153X?via%3Dihub"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Moksnes, Per-Olav, Corell, Hanna, Tryman, Kentaroo, Hordoir, Robinson, Jonsson, Per
R., (2014). Larval behavior and dispersal mechanisms in shore crab larvae (Carcinus maenas): Local
adaptations to different tidal environments?, Limnology and Oceanography, 59.
<a class="trmLnk"
href="https://aslopubs.onlinelibrary.wiley.com/action/showCitFormats?doi=10.4319%2Flo.2014.59.2.0588"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Biology</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Nilsson, J.A.U., K. Döös, P. Ruti, V. Artale, A. Coward, L. Brodeau (2013).
Observed and modeled global-ocean turbulence regimes as deduced from surface trajectory data. J. Phys.
Oceanogr.
<a class="trmLnk" href="https://journals.ametsoc.org/view/journals/phoc/43/11/jpo-d-12-0193.1.xml"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
</li>
<br>
<li class="reference"> Delpeche–Ellmann, N., Soomere T. (2013). Using Lagrangian models to assist in
maritime management of Coastal and Marine Protected Areas. Journal of Coastal Research, 65(sp1), 36-41.
<a class="trmLnk"
href="https://bioone.org/journals/journal-of-coastal-research/volume-65/issue-sp1/SI65-007.1/Using-Lagrangian-models-to-assist-in-maritime-management-of-Coastal/10.2112/SI65-007.1.full"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Pollution
control</span> <span class="badge badge-bio badge-lg">Ecology</span> <span
class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Viikmäe, B., Torsvik, T. & Soomere, T. (2013). Impact of horizontal eddy
diffusivity on Lagrangian statistics for coastal pollution from a major marine fairway. Ocean Dynamics
63, 589–597
<a class="trmLnk" href="https://link.springer.com/article/10.1007%2Fs10236-013-0615-3"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Pollution
control</span> <span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Corell, H., Döös, K. (2013). Difference in Particle Transport Between Two Coastal
Areas in the Baltic Sea Investigated with High-Resolution Trajectory Modeling. AMBIO 42, 455–463.
<a class="trmLnk" href="https://link.springer.com/article/10.1007%2Fs13280-013-0397-3"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-bio badge-lg">Sediments</span> <span
class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Kjellsson, J., K. Döös, T. Soomere (2013) Preventive Methods for Coastal Pollution:
towards the Use of Ocean Dynamics for Pollution Control. Book Chapter 8: Evaluation and Tuning of Model
Trajectories and Spreading Rates in the Baltic Sea using Surface-drifter Observations. Springer
International Publishing.
<a class="trmLnk" href="https://link.springer.com/chapter/10.1007/978-3-319-00440-2_8"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Döös, K., J. Kjellsson, and B. F. Jönsson (2013), TRACMASS - A Lagrangian
Trajectory Model, in Preventive Methods for Coastal Protection, edited by T. Soomere and E. Quak,
Springer International Publishing.
<a class="trmLnk" href="https://link.springer.com/chapter/10.1007/978-3-319-00440-2_7"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-air badge-lg">Atmosphere</span> <span
class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Corell H., P.O. Moksnes, A. Engqvist, K. Döös, P. R. Jonsson, (2012): Depth
distribution of larvae critically affects their dispersal and the efficiency of marine protected areas,
Marine Ecology Progress Series, 467:29-46. <a class="trmLnk"
href="https://www.int-res.com/abstracts/meps/v467/p29-46/" target="_blank">Link</a> <br>
<em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span> <span
class="badge badge-bio badge-lg">Biology</span> <span
class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Kjellsson, J., and K. Döös (2012a), Lagrangian decomposition of the Hadley and
Ferrel Cells, Geophys. Res. Lett., 39(L15807)
<a class="trmLnk" href="http://onlinelibrary.wiley.com/doi/10.1029/2012GL052420/full"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-air badge-lg">Atmosphere</span>
</li>
<br>
<li class="reference"> Kjellsson, J., and K. Döös (2012b), Surface drifters and model trajectories in the
Baltic Sea, Boreal Environment Research, 17, 447–459.
<a class="trmLnk" href="https://www.diva-portal.org/smash/get/diva2:563137/FULLTEXT01.pdf"
target="_blank">Link</a><br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Döös, K., Nilsson, J., Nycander, J., Brodeau, L., & Ballarotta, M. (2012). The
World Ocean Thermohaline Circulation, Journal of Physical Oceanography, 42(9), 1445-1460.
<a class="trmLnk" href="https://journals.ametsoc.org/view/journals/phoc/42/9/jpo-d-11-0163.1.xml"
target="_blank">Link</a><br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
</li>
<br>
<li class="reference"> Jacobi, M., André, C., Döös, K., & Jonsson, P. (2012). Identification of
subpopulations from connectivity matrices. Ecography, 35(11).
<a class="trmLnk" href="https://onlinelibrary.wiley.com/doi/epdf/10.1111/j.1600-0587.2012.07281.x"
target="_blank">Link</a><br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Soomere, T., Delpeche, N., Viikmäe, B., Quak, E., Meier, H. E. M. and Döös (2011).
K. Patterns of current-induced transport in the surface layer of the Gulf of Finland. Boreal Env. Res.,
16 (suppl. a): 49-63. <a class="trmLnk"
href="http://www.borenv.net/BER/archive/pdfs/ber16/ber16A-049.pdf" target="_blank">Link</a><br>
<em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span> <span
class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Döös K., V. Rupolo, L. Brodeau (2011). Dispersion of surface drifters and
model-simulated trajectories. Ocean Modelling. Volume 39, Issues 3-4, 2011, Pages 301-310,
<a class="trmLnk" href="https://www.sciencedirect.com/science/article/pii/S1463500311000989"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Theoretical</span>
</li>
<br>
<li class="reference"> Jönsson B, K. Döös , P. Lundberg , K. Myrberg (2011). A Lagrangian-trajectory study
of a gradually mixed estuary. Continental Shelf Research 31, 1811-1817
<a class="trmLnk" href="https://www.sciencedirect.com/science/article/pii/S0278434311002500"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Döös, K., J. Nycander, and A. C. Coward (2008), Lagrangian decomposition of the
Deacon Cell, J. Geophys. Res., 113, C07028.
<a class="trmLnk" href="http://onlinelibrary.wiley.com/doi/10.1029/2007JC004351/abstract"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Döös K., A. Engqvist, (2007) Assessment of water exchange between a discharge
region and the open sea - A comparison of different methodological concepts. Estuarine, Coastal and
Shelf Science. Es- tuarine, Coastal and Shelf Science 74 (2007) 585-597.
<a class="trmLnk" href="https://www.sciencedirect.com/science/article/pii/S027277140700159X"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Engqvist A., K. Döös and O. Andrejev, (2006). Modeling Water Exchange and
Contaminant Transport through a Baltic Coastal Region. Ambio Vol. 35, No. 8.
<a class="trmLnk"
href="https://bioone.org/journals/ambio-a-journal-of-the-human-environment/volume-35/issue-8/0044-7447(2006)35[435:MWEACT]2.0.CO;2/Modeling-Water-Exchange-and-Contaminant-Transport-through-a-Baltic-Coastal/10.1579/0044-7447(2006)35[435:MWEACT]2.0.CO;2.full"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Drijfhout S., P. De Vries, K. Döös, A. Coward (2003). Impact of eddy-induced
transport of the Lagrangian structure of the upper branch of the thermohaline circulation. J. Phys.
Oceanogr. 33,3. 2141-2155.
<a class="trmLnk"
href="https://journals.ametsoc.org/view/journals/phoc/33/10/1520-0485_2003_033_2141_ioetot_2.0.co_2.xml?tab_body=pdf"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
</li>
<br>
<li class="reference"> Nycander J., K Döös and A. C. Coward (2002). Chaotic and regular trajectories in
the Antarctic Circumpolar. Tellus - Series A, Vol. 54, issue 1, p.99-106.
<a class="trmLnk" href="https://www.tandfonline.com/doi/abs/10.3402/tellusa.v54i1.12118"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
<span class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference"> Vries, P. de and K. Döös (2001). Calculating Lagrangian trajectories using
time-dependent velocity fields. J. Atmos. Oceanic Technology. Vol. 18, No. 6, 1092-1101.
<a class="trmLnk"
href="https://journals.ametsoc.org/view/journals/atot/18/6/1520-0426_2001_018_1092_cltutd_2_0_co_2.xml"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-other badge-lg">Theoretical</span>
</li>
<br>
<li class="reference"> Kimura S, Döös K, Coward AC (1999) Numerical simulation to resolve the issue of
downstream migration of the Japanese eel. Marine Ecology Progress Series, Vol. 186, p. 303-306.
<a class="trmLnk" href="https://www.int-res.com/articles/meps/186/m186p303.pdf" target="_blank">Link</a>
<br> <em>Categories:</em> <span class="badge badge-ocean badge-lg">Ocean</span> <span
class="badge badge-bio badge-lg">Biology</span> <span
class="badge badge-other badge-lg">Regional</span>
</li>
<br>
<li class="reference">Döös, K. (1995), Interocean exchange of water masses, J. Geophys. Res., 100,
13,499–13,514.
<a class="trmLnk" href="http://onlinelibrary.wiley.com/doi/10.1029/95JC00337/abstract"
target="_blank">Link</a> <br> <em>Categories:</em> <span
class="badge badge-ocean badge-lg">Ocean</span>
</li>
</ul>
</div><!-- .post-content -->
</div><!-- .inner-md -->
</article><!-- .post -->
</main><!-- .site-content -->
{% include footer.html %}
</div><!-- .site -->
</body>
</html>