-
Notifications
You must be signed in to change notification settings - Fork 0
/
conferences.html
3346 lines (3346 loc) · 332 KB
/
conferences.html
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
<!DOCTYPE html>
<html>
<head>
<title>Conferences</title>
<meta charset="utf-8"/>
<meta name="robots" content="noindex">
<link href="app_1.1.2.css" rel="stylesheet"/>
<link href="https://www.tu-darmstadt.de/media/resources/css_2/themes_css/theme-3c.css" rel="stylesheet"/>
</head>
<body>
<div id="site">
<h2>2025</h2>
<h2>2024</h2>
<!--Ziegler_2024ad-->
<p style="margin-bottom: 0.2em"><strong>Ebert, David ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Dölz, Jürgen</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Efficient Shape Uncertainty Quantification for the <span class="bibtex-protected">TESLA</span> Cavity.</em>
In: <em>21st Biennial <span class="bibtex-protected">IEEE</span> Conference on Electromagnetic Field Computation (<span class="bibtex-protected">CEFC</span> 2024)</em>, Jeju, Korea.
URL: <a class="link" target="_top" href="http://cefc2024.com/">http://cefc2024.com/</a>.
[Talk]</p>
<!--Ziegler_2024ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Spurious modes in reduced basis approximations for <span class="bibtex-protected">Maxwell</span>'s eigenvalue problem.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Talk]</p>
<!--Wiesheu_2024ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; Rodenberg, Benjamin ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2024):
<em>Multirate Magnetothermal Coupling with Time Adaptive Waveform Relaxation.</em>
In: <em>5th <span class="bibtex-protected">preCICE</span> Workshop 2024</em>, Stuttgart, Germany.
[Talk]</p>
<!--Wiesheu_2024ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2024):
<em>Co-Simulation Techniques for Field-Circuit Coupled Problems.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2024</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Seibel_2024ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/seibel.en.jsp">Seibel, Timon</a> ; Schmidt, Kersten ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>On a Hybridized Domain Decomposition Formulation.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2024</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Seibel_2024ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/seibel.en.jsp">Seibel, Timon</a> ; Schmidt, Kersten ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>On a Hybridized Domain Decomposition Formulation.</em>
In: <em>94th Annual Meeting of the International Association of Applied Mathematics and Mechanics (<span class="bibtex-protected">GAMM</span> 2024)</em>, Magdeburg.
[Talk]</p>
<!--Seibel_2024aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/seibel.en.jsp">Seibel, Timon</a> ; Schmidt, Kersten ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>On a Hybridized Domain Decomposition Formulation.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Schnaubelt_2024ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Dular, Julien ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Parallel-in-time integration of transient phenomena in no-insulation superconducting coils using Parareal.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Talk]</p>
<!--Paakkunainen_2024af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Denis, Louis ; Geuzaine, Christophe ; Rasilo, Paavo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Homogenization of <span class="bibtex-protected">HTS</span> Magnet Coils Using the Foil Conductor Model.</em>
In: <em><span class="bibtex-protected">ICAP</span> 2024</em>, Seeheim-Jugenheim.
[Talk]</p>
<!--Paakkunainen_2024ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Denis, Louis ; Geuzaine, Christophe ; Rasilo, Paavo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Homogenization of <span class="bibtex-protected">HTS</span> Coils and Stacks Using the Foil Conductor Model.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2024</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Paakkunainen_2024ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Denis, Louis ; Geuzaine, Christophe ; Rasilo, Paavo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Foil Conductor Model for Efficient Simulation of <span class="bibtex-protected">HTS</span> Stacks and Coils in Large Scale Applications.</em>
In: <em>Applied Superconductivity Conference 2024</em>, Salt Lake City, Utah, USA.
URL: <a class="link" target="_top" href="https://www.appliedsuperconductivity.org/asc2024/">https://www.appliedsuperconductivity.org/asc2024/</a>.
[Talk]</p>
<!--Paakkunainen_2024ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Denis, Louis ; Geuzaine, Christophe ; Rasilo, Paavo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Homogenization of <span class="bibtex-protected">HTS</span> Coils and Stacks Using the Foil Conductor Model.</em>
In: <em>9th International Workshop on Numerical Modelling of High Temperature Superconductors</em>, Bad Zurzach, Switzerland.
URL: <a class="link" target="_top" href="https://indico.psi.ch/event/14456/">https://indico.psi.ch/event/14456/</a>.
[Poster]</p>
<!--Paakkunainen_2024ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Bundschuh, Jonas ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; De Gersem, Herbert ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Circuit Consistency and Structure of Inductive Foil Conductor Models.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Merkel_2024ag-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Vázquez, Rafael</strong>
(2024):
<em>Tree-cotree gauging for hierarchical B-spline spaces.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2024</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Merkel_2024af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Vázquez, Rafael</strong>
(2024):
<em>A tree-cotree gauging method for <span class="bibtex-protected">IGA</span> based on hierarchical B-splines for electromagnetic problems.</em>
In: <em>Congress of Differential Equations and Applications / Congreso of Applited Mathematics</em>, Bilbao, Spain.
[Talk]</p>
<!--Merkel_2024ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Kapidani, Bernard ; Vázquez, Rafael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Tree-Cotree Gauge for <span class="bibtex-protected">IGA</span> Based on Hierarchical B-Splines.</em>
In: <em>9th European Congress on Computational Methods in Applied Sciences and Engineering</em>, Lisboa, Portugal.
URL: <a class="link" target="_top" href="https://eccomas2024.org/">https://eccomas2024.org/</a>.
[Talk]</p>
<!--Merkel_2024ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Isogeometric Methods for the Simulation and Optimization of Electric Motors.</em>
In: <em>Seminar</em>, Santiago de Compostela, Spain.
[Talk]</p>
<!--Merkel_2024ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Balian, Devin ; Herles, Leon ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; Ostrowski, Jörg ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Low Frequency Stabilization and Generalized <span class="bibtex-protected">Coulomb</span> Gauge via Tree-Cotree Decomposition.</em>
In: <em><span class="bibtex-protected">URSI</span>-<span class="bibtex-protected">B</span> Workshop Felder und Wellen</em>, Überherrn, Germany.
[Talk]</p>
<!--Merkel_2024ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Isogeometric Methods for the Simulation of Electric Motors Considering Rotation.</em>
In: <em>94th Annual Meeting of the International Association of Applied Mathematics and Mechanics (<span class="bibtex-protected">GAMM</span> 2024)</em>, Magdeburg.
[Talk]</p>
<!--Merkel_2024aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Challenges in the Simulation of Rotating Electric Motors using Isogemetric Analysis.</em>
In: <em>94th Annual Meeting of the International Association of Applied Mathematics and Mechanics (<span class="bibtex-protected">GAMM</span> 2024)</em>, Magdeburg.
[Poster]</p>
<!--Mally_2024ah-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; Kapidani, Bernard ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>On Domain Decomposition for Electromagnetic Problems in <span class="bibtex-protected">3D</span>.</em>
In: <em>5th International Conference on Computational Engineering (<span class="bibtex-protected">ICCE</span> 2024)</em>, Darmstadt, Germany.
[Talk]</p>
<!--Mally_2024ag-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Exploitation of <span class="bibtex-protected">Schur</span> Complements for Parallelized Simulation of Electric Machines.</em>
In: <em>21st International <span class="bibtex-protected">IGTE</span> Symposium 2024 on Computational Methods in Electromagnetics and Multiphysics</em>, Graz.
URL: <a class="link" target="_top" href="https://www.tugraz.at/events/igtesymp/home">https://www.tugraz.at/events/igtesymp/home</a>.
[Talk]</p>
<!--Mally_2024af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Nonlinear <span class="bibtex-protected">Schur</span> Complements for Parallelized Simulation of Electric Machines.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2024</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Mally_2024ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>On Tree-Cotree and Parallel Methods for Electromagnetic Simulations in <span class="bibtex-protected">3D</span>.</em>
In: <em>Invited Talk in internal seminar at <span class="bibtex-protected">Universidade de Santiago de Compostela</span></em>, Santiago de Compostela, Spain.
[Talk]</p>
<!--Mally_2024ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; Kapidani, Bernard ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>On Dual-Primal Tearing and Interconnecting for <span class="bibtex-protected">3D</span> Magnetostatics.</em>
In: <em>9th European Congress on Computational Methods in Applied Sciences and Engineering</em>, Lisboa, Portugal.
URL: <a class="link" target="_top" href="https://eccomas2024.org/">https://eccomas2024.org/</a>.
[Talk]</p>
<!--Mally_2024ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; Herles, Leon ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Parallelization in Space and Time for Parabolic Problems in <span class="bibtex-protected">3D</span>.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Mally_2024aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; Herles, Leon ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Parallelization in Space and Time for Parabolic Problems in <span class="bibtex-protected">3D</span>.</em>
In: <em><span class="bibtex-protected">XIII</span> Workshop on Parallel in Time Methods <span class="bibtex-protected">PinT</span> 2024</em>, Bruges, Belgium.
URL: <a class="link" target="_top" href="https://parallel-in-time.org/events/13th-pint-workshop/">https://parallel-in-time.org/events/13th-pint-workshop/</a>.
[Talk]</p>
<!--Herles_2024ab-->
<p style="margin-bottom: 0.2em"><strong>Herles, Leon ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Ostrowski, Jörg ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Frequency-Stable Full <span class="bibtex-protected">Maxwell</span> Using Generalized Tree-Cotree Gauges.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Hahn_2024aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/hahn.en.jsp">Hahn, Robert</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Vitrano, Andrea ; Geuzaine, Christophe ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Mortar thin shell approximation for transient analysis of superconducting accelerator magnets.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Talk]</p>
<!--Forster_2024aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; Jansen, Lennart ; Schilders, Wil ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Index-aware learning of circuits.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Balouchev_2024ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/balouchev.en.jsp">Balouchev, Boian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Dölz, Jürgen</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Torchio, Riccardo</strong>
(2024):
<em>Isogeometric Shape Optimization of Multi-Tapered Coaxial Baluns Simulated by an Integral Equation Method.</em>
In: <em>25th International Conference on Electromagnetics in Advanced Applications (<span class="bibtex-protected">ICEAA</span> 2024)</em>, Lisbon, Portugal.
URL: <a class="link" target="_top" href="https://www.iceaa-offshore.org">https://www.iceaa-offshore.org</a>.
[Talk]</p>
<!--Backmeyer_2024ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/backmeyer.en.jsp">Backmeyer, Merle</a> ; Kurz, Stefan ; Möller, Matthias ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Combining <span class="bibtex-protected">Neural</span> <span class="bibtex-protected">Networks</span> and <span class="bibtex-protected">Isogeometric</span> <span class="bibtex-protected">Analysis</span>.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2024</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Aouini_2024aa-->
<p style="margin-bottom: 0.2em"><strong>Aouini, Tobias Karim ; Farle, Ortwin ; Euler, Timo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Investigation of S-Parameter Evaluation for Coupled Meshes in Hybrid Solver Scenarios.</em>
In: <em>15th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2024)</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<h2>2023</h2>
<!--Ziegler_2023af-->
<p style="margin-bottom: 0.2em"><strong>Kappesser, Max ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Reduced Basis Approximation for <span class="bibtex-protected">Maxwell</span>'s Eigenvalue Problem for Parameter-Dependent Domains.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Ziegler_2023ad-->
<p style="margin-bottom: 0.2em"><strong>Kappesser, Max ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Reduced Basis Approximation for <span class="bibtex-protected">Maxwell</span>’s Eigenvalue Problem for Parameter-Dependent Domains.</em>
In: <em>24th Conference on the Computation of Electromagnetic Fields (<span class="bibtex-protected">COMPUMAG</span> 2023)</em>, Kyoto, Japan. International Compumag Society.
URL: <a class="link" target="_top" href="https://www.compumag2023.com">https://www.compumag2023.com</a>.
[Talk]</p>
<!--Ziegler_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/hahn.en.jsp">Hahn, Robert</a> ; Isensee, Victoria ; Nguyen, Anh Duc ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Tuning of the <span class="bibtex-protected">TESLA</span> Cavity using Derivative-Based Eigenvalue Optimization and Tracking.</em>
In: <em>11th International Conference on Computation in Electromagnetics (<span class="bibtex-protected">CEM</span> 2023)</em>, Cannes, France.
[Poster]</p>
<!--Wozniak_2023aa-->
<p style="margin-bottom: 0.2em"><strong>Wozniak, Mariusz ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Ravaioli, Emmanuele ; Dular, Julien ; Verweij, Arjan</strong>
(2023):
<em>Quench Co-Simulation of Canted Cos-Theta Magnets.</em>
In: <em>16th European Conference on Applied Superconductivity</em>, Bologna, Italy.
URL: <a class="link" target="_top" href="https://eucas2023.esas.org/">https://eucas2023.esas.org/</a>.
[Talk]</p>
<!--Wiesheu_2023af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Sittig, Tim ; Benke, Dimitri ; Fries, Max ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Weeger, Oliver ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2023):
<em>Structural Optimization of an Axial Rotatory Magnet Assembly for Magnetocaloric Cooling.</em>
In: <em>Dresden Days on Magnetocalorics</em>, Dresden, Germany.
[Poster]</p>
<!--Wiesheu_2023ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Komann, Theodor ; Ulbrich, Stefan ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2023):
<em>Combined Parameter and Shape Optimization of an Electric Machine with Isogeometric Analysis.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Wiesheu_2023ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Sittig, Tim ; Benke, Dimitri ; Fries, Max ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Weeger, Oliver ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2023):
<em>Shape Optimization of a Magnetocaloric Cooling System with Isogeometric Finite Elements.</em>
In: <em>22nd European Conference on Mathematics for Industry (<span class="bibtex-protected">ECMI</span> 2023)</em>, Wroclaw, Poland. European Consortium for Mathematics in Industry.
[Talk]</p>
<!--Wiesheu_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Komann, Theodor ; Ulbrich, Stefan ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2023):
<em>Combined Parameter and Shape Optimization of an Electric Machine with Isogeometric Analysis.</em>
In: <em>Math 2 Product (<span class="bibtex-protected">M2P</span>) 2023 – Emerging Technologies in Computational Science for Industry, Sustainability and Innovation</em>, Taormina, Italy.
[Talk]</p>
<!--Vitrano_2023ab-->
<p style="margin-bottom: 0.2em"><strong>Vitrano, Andrea ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Ravaioli, Emmanuele ; Verweij, Arjan</strong>
(2023):
<em>Finite Element Thermal Thin Shell Approximation for Simulation of Transients in Accelerator Magnets.</em>
In: <em><span class="bibtex-protected">CHATS</span> on Applied Superconductivity 2023</em>, Torino, Italy.
URL: <a class="link" target="_top" href="https://indico.cern.ch/event/1220228/">https://indico.cern.ch/event/1220228/</a>.
[Talk]</p>
<!--Seibel_2023aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/seibel.en.jsp">Seibel, Timon</a> ; Schmidt, Kersten ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Hybridized Domain Decomposition.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Schops_2023aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Isogeometric Mortar Methods for Electromagnetics.</em>
In: <em>10th <span class="bibtex-protected">GACM</span> Colloquium on Computational Mechanics</em>, Vienna.
URL: <a class="link" target="_top" href="https://colloquia.gacm.de">https://colloquia.gacm.de</a>, Keynote.
[Talk]</p>
<!--Schnaubelt_2023ah-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Magneto-Thermal Transient Simulation of No-Insulation Superconducting Coils.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Schnaubelt_2023ag-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Dular, Julien ; Geuzaine, Christophe ; Marsic, Nicolas ; Vanderheyden, Benoît ; Verweij, Arjan ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em><span class="bibtex-protected">3D</span> Magneto-Thermal <span class="bibtex-protected">FE</span> Simulations of <span class="bibtex-protected">NI</span> <span class="bibtex-protected">HTS</span> Coils with Thin Shell Approximations.</em>
In: <em>16th European Conference on Applied Superconductivity</em>, Bologna, Italy.
URL: <a class="link" target="_top" href="https://eucas2023.esas.org/">https://eucas2023.esas.org/</a>.
[Talk]</p>
<!--Schnaubelt_2023af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Dular, Julien ; Geuzaine, Christophe ; Marsic, Nicolas ; Vanderheyden, Benoît ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Magneto-Thermal Thin Shell Approximation for Open-Source Transient Analysis of Superconducting Magnets.</em>
In: <em>X International Conference of Computational Methods for Coupled Problems in Science and Engineering (<span class="bibtex-protected">COUPLED</span> 2023)</em>, Chania, Crete, Greece.
[Talk]</p>
<!--Schnaubelt_2023ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Dular, Julien ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Parallel-in-Time Integration of Transients in Superconducting Accelerator Magnets.</em>
In: <em>93rd Annual Meeting of the International Association of Applied Mathematics and Mechanics (<span class="bibtex-protected">GAMM</span> 2023)</em>, Dresden.
[Talk]</p>
<!--Schnaubelt_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Finite Element Quench Simulation With Focus on No-Insulation Coils.</em>
In: <em>Field Simulation of Accelerator Magnets Workshop</em>, Darmstadt.
URL: <a class="link" target="_top" href="https://www.temf.tu-darmstadt.de/emft/home_emft/neuigkeiten_emft/2023_02_07_magnetworkshop.de.jsp">https://www.temf.tu-darmstadt.de/emft/home_emft/neuigkeiten_emft/2023_02_07_magnetworkshop.de.jsp</a>.
[Talk]</p>
<!--Parekh_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/parekh.en.jsp">Parekh, Vivek</a> ; Flore, Dominik ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Theisinger, Peter</strong>
(2023):
<em>Multi-Objective Optimization of Electrical Machines using a Hybrid Data-and Physics-Driven Approach.</em>
In: <em>11th International Conference on Computation in Electromagnetics (<span class="bibtex-protected">CEM</span> 2023)</em>, Cannes, France.
[Poster]</p>
<!--Paakkunainen_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Bundschuh, Jonas ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; De Gersem, Herbert ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>A Stabilized Circuit-Consistent Foil Conductor Model.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Paakkunainen_2023ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Bundschuh, Jonas ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; De Gersem, Herbert ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Analysis and Stabilization of the Foil Conductor Model.</em>
In: <em>22nd European Conference on Mathematics for Industry (<span class="bibtex-protected">ECMI</span> 2023)</em>, Wroclaw, Poland. European Consortium for Mathematics in Industry.
[Talk]</p>
<!--Nolte_2023ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; Torchio, Riccardo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Ruehli, Albert E.</strong>
(2023):
<em>Simulating Multi-Tapered Coaxial Baluns with an Isogeometric Surface Integral Equation Method.</em>
In: <em>24th International Conference on Electromagnetics in Advanced Applications (<span class="bibtex-protected">ICEAA</span> 2023)</em>, Venice, Italy.
URL: <a class="link" target="_top" href="http://www.iceaa.net">http://www.iceaa.net</a>.
[Talk]</p>
<!--Nolte_2023ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; Torchio, Riccardo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Dölz, Jürgen</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Wolf, Felix</a> ; Ruehli, Albert E.</strong>
(2023):
<em>A Spline-Based Surface Integral Equation Method.</em>
In: <em><span class="bibtex-protected">URSI</span> Kleinheubacher Tagung (<span class="bibtex-protected">KHB</span> 2023)</em>, Miltenberg.
URL: <a class="link" target="_top" href="https://www.kh2023.de">https://www.kh2023.de</a>.
[Talk]</p>
<!--Nolte_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Dölz, Jürgen</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em><span class="bibtex-protected">Bembel</span>: The Fast Isogeometric Boundary Element <span class="bibtex-protected">C++</span> Library.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Nolte_2023ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Dölz, Jürgen</a> ; Multerer, Michael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em><span class="bibtex-protected">Bembel</span>: The Fast Isogeometric Boundary Element <span class="bibtex-protected">C++</span> Library for <span class="bibtex-protected">Laplace</span>, <span class="bibtex-protected">Helmholtz</span> and Electric Wave Equation.</em>
In: <em>11th International Conference on Isogeometric Analysis (<span class="bibtex-protected">IGA</span> 2023)</em>, Lyon.
URL: <a class="link" target="_top" href="https://iga2023.sciencesconf.org/">https://iga2023.sciencesconf.org/</a>.
[Poster]</p>
<!--Nolte_2023aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; Torchio, Riccardo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Dölz, Jürgen</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Wolf, Felix</a> ; Ruehli, Albert</strong>
(2023):
<em>A Spline-Based Full-Wave Partial Element Equivalent Circuit Method.</em>
In: <em>24th Conference on the Computation of Electromagnetic Fields (<span class="bibtex-protected">COMPUMAG</span> 2023)</em>, Kyoto, Japan. International Compumag Society.
URL: <a class="link" target="_top" href="https://www.compumag2023.com">https://www.compumag2023.com</a>.
[Poster]</p>
<!--Mulder_2023ab-->
<p style="margin-bottom: 0.2em"><strong>Mulder, Tim ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Dular, Julien ; Bordini, Bernardo ; Ravioli, Emmanuele ; Wozniak, Mariusz ; Verweij, Arjan</strong>
(2023):
<em><span class="bibtex-protected">E-CLIQ</span> Quench Protection for the Next Generation of <span class="bibtex-protected">Nb3Sn</span> Accelerator Magnets.</em>
In: <em><span class="bibtex-protected">MT</span> 28 Conference 2023</em>, Aix-en-Provence, France.
URL: <a class="link" target="_top" href="https://mt28.aoscongres.com/">https://mt28.aoscongres.com/</a>.
[Poster]</p>
<!--Merkel_2023af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Modeling and Simulation of Electric Motors.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Merkel_2023ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Isogeometric Analysis for the Simulation of Rotating Electric Machines.</em>
In: <em>Seminar</em>, Graz, Austria.
[Talk]</p>
<!--Merkel_2023ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Kapidani, Bernard ; Vázquez, Rafael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Coupling Methods for <span class="bibtex-protected">H</span>(curl) Problems and their Regularization.</em>
In: <em>10th International Congress on Industrial and Applied Mathematics (<span class="bibtex-protected">ICIAM</span> 2023)</em>, Tokyo, Japan.
URL: <a class="link" target="_top" href="https://iciam2023.org/">https://iciam2023.org/</a>.
[Talk]</p>
<!--Merkel_2023ab-->
<p style="margin-bottom: 0.2em"><strong>Balian, Devin ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Ostrowski, Jörg</strong>
(2023):
<em>Low-Frequency Stabilization of the Electroquasistatic Field Formulation.</em>
In: <em>24th Conference on the Computation of Electromagnetic Fields (<span class="bibtex-protected">COMPUMAG</span> 2023)</em>, Kyoto, Japan. International Compumag Society.
URL: <a class="link" target="_top" href="https://www.compumag2023.com">https://www.compumag2023.com</a>.
[Poster]</p>
<!--Merkel_2023aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Gschwentner, Andreas ; Roppert, Klaus ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Non-Conforming Isogeometric <span class="bibtex-protected">Nitsche</span> Formulation for the Simulation of Electric Motors.</em>
In: <em>24th Conference on the Computation of Electromagnetic Fields (<span class="bibtex-protected">COMPUMAG</span> 2023)</em>, Kyoto, Japan. International Compumag Society.
URL: <a class="link" target="_top" href="https://www.compumag2023.com">https://www.compumag2023.com</a>.
[Talk]</p>
<!--Mally_2023ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Tree-Cotree Gauging for Magnetostatics with Weak <span class="bibtex-protected">Dirichlet</span> Boundary Condition.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Mally_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; Kapidani, Bernard ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>How to Gauge Magnetostatics to Facilitate Domain Decomposition Methods.</em>
In: <em>Invited Talk in internal numerics seminar at <span class="bibtex-protected">EPFL</span></em>, Lausanne, Switzerland.
[Talk]</p>
<!--Mally_2023ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; Kapidani, Bernard ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>How to Gauge Magnetostatics to Facilitate Domain Decomposition Methods.</em>
In: <em>22nd European Conference on Mathematics for Industry (<span class="bibtex-protected">ECMI</span> 2023)</em>, Wroclaw, Poland. European Consortium for Mathematics in Industry.
[Talk]</p>
<!--Mally_2023aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; Kapidani, Bernard ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Steinbach, Olaf</strong>
(2023):
<em>Tearing and Interconnecting Approach for <span class="bibtex-protected">H(curl)</span>.</em>
In: <em><span class="bibtex-protected">SIAM</span> Conference on Computational Science and Engineering 2023</em>, Amsterdam, Netherlands.
URL: <a class="link" target="_top" href="https://www.siam.org/conferences/cm/conference/cse23">https://www.siam.org/conferences/cm/conference/cse23</a>.
[Talk]</p>
<!--Fuhrlander_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/former_group/">Fuhrländer, Mona</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>A <span class="bibtex-protected">Hermite</span> least squares method for minimizing failure probabilities.</em>
In: <em>11th International Conference on Computation in Electromagnetics (<span class="bibtex-protected">CEM</span> 2023)</em>, Cannes, France.
[Poster]</p>
<!--Forster_2023ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; Jansen, Lennart ; Schilders, Wil ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Index-aware learning of modified nodal analysis.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2023</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Forster_2023aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Schilders, Wil ; Böckhorst, Stephan ; Mevenkamp, Maximilian</strong>
(2023):
<em>Bayesian Experimental Design for <span class="bibtex-protected">LED</span>s using <span class="bibtex-protected">Gaussian</span> Processess.</em>
In: <em><span class="bibtex-protected">THERMINIC</span> 2023</em>, Budapest, Hungary.
URL: <a class="link" target="_top" href="http://www.therminic2023.eu">http://www.therminic2023.eu</a>.
[Talk]</p>
<!--Fleig_2023ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/fleig.en.jsp">Fleig, Luisa</a> ; Liebsch, Melvin ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Russenschuck, Stephan</strong>
(2023):
<em>Data-driven Determination of <span class="bibtex-protected">B(H)</span> Curves of Iron Yokes in Normal Conducting Accelerator Magnets.</em>
In: <em>11th International Conference on Computation in Electromagnetics (<span class="bibtex-protected">CEM</span> 2023)</em>, Cannes, France.
[Poster]</p>
<!--Fleig_2023aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/fleig.en.jsp">Fleig, Luisa</a> ; Liebsch, Melvin ; Russenschuck, Stephan ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>A <span class="bibtex-protected">Bayesian</span> Framework to Determine the Magnetization Orientation in <span class="bibtex-protected">Halbach</span> Arrays.</em>
In: <em>24th Conference on the Computation of Electromagnetic Fields (<span class="bibtex-protected">COMPUMAG</span> 2023)</em>, Kyoto, Japan. International Compumag Society.
URL: <a class="link" target="_top" href="https://www.compumag2023.com">https://www.compumag2023.com</a>.
[Poster]</p>
<!--Dolz_2023ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Dölz, Jürgen</a> ; Harbrecht, Helmut ; Kurz, Stefan ; Multerer, Michael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Wolf, Felix</a></strong>
(2023):
<em><span class="bibtex-protected">Bembel</span>: The <span class="bibtex-protected">BEM</span>-Based Engineering Library.</em>
In: <em><span class="bibtex-protected">SIAM</span> Conference on Computational Science and Engineering (<span class="bibtex-protected">CSE</span>) 2023</em>, Amsterdam, The Netherlands.
URL: <a class="link" target="_top" href="https://www.siam.org/conferences/cm/conference/cse23">https://www.siam.org/conferences/cm/conference/cse23</a>.
[Talk]</p>
<h2>2022</h2>
<!--Ziegler_2022ah-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Uncertainty Quantification of the <span class="bibtex-protected">TESLA</span> Cavity using High-Order Shape Derivatives.</em>
In: <em><span class="bibtex-protected">URSI</span> Kleinheubacher Tagung (<span class="bibtex-protected">KHB</span> 2022)</em>, Miltenberg.
URL: <a class="link" target="_top" href="https://www.kh2022.de">https://www.kh2022.de</a>.
[Poster]</p>
<!--Ziegler_2022ag-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Uncertainty Quantification of the <span class="bibtex-protected">TESLA</span> Cavity using High-Order Shape Derivatives.</em>
In: <em><span class="bibtex-protected">URSI</span> Kleinheubacher Tagung (<span class="bibtex-protected">KHB</span> 2022)</em>, Miltenberg.
URL: <a class="link" target="_top" href="https://www.kh2022.de">https://www.kh2022.de</a>.
[Talk]</p>
<!--Ziegler_2022af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Gangl, Peter ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Isogeometric shape derivatives applied to eigenmodes of superconducting cavities.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Ziegler_2022ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Gangl, Peter ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Isogeometric Shape Derivatives for <span class="bibtex-protected">Maxwell</span>’s Eigenproblem.</em>
In: <em>15th World Congress on Computational Mechanics and 8th Asian Pacific Congress on Computational Mechanics</em>, Yokohama.
URL: <a class="link" target="_top" href="https://www.wccm2022.org/">https://www.wccm2022.org/</a>.
[Talk]</p>
<!--Ziegler_2022ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Gangl, Peter ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Isogeometric Shape Derivatives for Automatic Mode Recognition.</em>
In: <em>14th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2022)</em>, Amsterdam.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Talk]</p>
<!--Ziegler_2022ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Gangl, Peter ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Analytic sensitivities of eigenpairs for eigenmode tracking using isogeometric analysis.</em>
In: <em><span class="bibtex-protected">URSI</span>-<span class="bibtex-protected">B</span> Workshop Felder und Wellen</em>, Raitenhaslach, Germany.
[Talk]</p>
<!--Ziegler_2022ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Gangl, Peter ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Shape Deformations for <span class="bibtex-protected">Maxwell</span>’s Eigenproblem in an Isogeometric Setting.</em>
In: <em><span class="bibtex-protected">SIAM</span> Conference on Uncertainty Quantification 2022</em>, Atlanta, USA.
URL: <a class="link" target="_top" href="https://www.siam.org/conferences/cm/conference/uq22">https://www.siam.org/conferences/cm/conference/uq22</a>.
[Talk]</p>
<!--Wiesheu_2022ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Sittig, Tim ; Benke, Dimitri ; Fries, Max ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Weeger, Oliver ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2022):
<em>Shape Optimization of a Magnetocaloric Cooling System with Isogeometric Finite Elements.</em>
In: <em>20th International <span class="bibtex-protected">IGTE</span> Symposium 2022 on Computational Methods in Electromagnetics and Multiphysics</em>, Graz.
URL: <a class="link" target="_top" href="http://wp12688559.server-he.de/symp22/">http://wp12688559.server-he.de/symp22/</a>.
[Talk]</p>
<!--Vitrano_2022aa-->
<p style="margin-bottom: 0.2em"><strong>Vitrano, Andrea ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Ravaioli, Emmanuele ; Verweij, Arjan</strong>
(2022):
<em>An Open-Source Finite Element Quench Simulation Tool for Superconducting Magnets.</em>
In: <em>Applied Superconductivity Conference 2022</em>, Honolulu.
URL: <a class="link" target="_top" href="https://www.appliedsuperconductivity.org/asc2022/">https://www.appliedsuperconductivity.org/asc2022/</a>.
[Poster]</p>
<!--Schnaubelt_2022ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Quench Simulation of No-Insulation <span class="bibtex-protected">HTS</span> Coils With <span class="bibtex-protected">3D</span> <span class="bibtex-protected">FEM</span>.</em>
In: <em>Applied Superconductivity Conference 2022</em>, Honolulu.
URL: <a class="link" target="_top" href="https://www.appliedsuperconductivity.org/asc2022/">https://www.appliedsuperconductivity.org/asc2022/</a>.
[Talk]</p>
<!--Schnaubelt_2022ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Thermal Thin Shell Approximation for <span class="bibtex-protected">3D</span> Finite Element Quench Simulations of Insulated <span class="bibtex-protected">HTS</span> Coils.</em>
In: <em>8th International Workshop on Numerical Modelling of High Temperature Superconductors</em>, Nancy.
URL: <a class="link" target="_top" href="https://htsmod2022.sciencesconf.org/">https://htsmod2022.sciencesconf.org/</a>.
[Talk]</p>
<!--Schnaubelt_2022ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Thermal Thin Shell Approximation for <span class="bibtex-protected">3D</span> <span class="bibtex-protected">FE</span> Quench Simulations of Insulated High-Temperature Superconducting Coils.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Parekh_2022ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/parekh.en.jsp">Parekh, Vivek</a> ; Flore, Dominik ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Performance Analysis of Electrical Machines Using a Hybrid Data- and Physics-Driven Model.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Parekh_2022ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/parekh.en.jsp">Parekh, Vivek</a> ; Flore, Dominik ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Performance analysis of Electrical Machines based on Electromagnetic System Characterization using Deep Learning.</em>
In: <em>14th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2022)</em>, Amsterdam.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Parekh_2022aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/parekh.en.jsp">Parekh, Vivek</a> ; Flore, Dominik ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Multi-objective topology optimization of electrical machines using variational autoencoder.</em>
In: <em>23rd Conference on the Computation of Electromagnetic Fields (<span class="bibtex-protected">COMPUMAG</span> 2021)</em>, Cancun, Mexico. International Compumag Society.
URL: <a class="link" target="_top" href="http://www.compumag2021.com">http://www.compumag2021.com</a>.
[Talk]</p>
<!--Paakkunainen_2022ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Laurson, Lasse ; Rasilo, Paavo</strong>
(2022):
<em>Coupled 2-D <span class="bibtex-protected">FEM</span> and 1-D Micromagnetic Model for Transverse Anisotropy Tape-Wound Magnetic Cores.</em>
In: <em>20th Biennial <span class="bibtex-protected">IEEE</span> Conference on Electromagnetic Field Computation (<span class="bibtex-protected">CEFC</span> 2022)</em>, Denver, CO, USA.
URL: <a class="link" target="_top" href="http://2022.ieeecefc.org/">http://2022.ieeecefc.org/</a>.
[Poster]</p>
<!--Paakkunainen_2022ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/paakkunainen.en.jsp">Paakkunainen, Elias</a> ; Laurson, Lasse ; Rasilo, Paavo</strong>
(2022):
<em>Coupled 2-D <span class="bibtex-protected">FEM</span> and 1-D Micromagnetic Model for Transverse Anisotropy Tape-Wound Cores.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Nolte_2022ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; Torchio, Riccardo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Ruehli, Albert</strong>
(2022):
<em>An Isogeometric Partial Element Equivalent Circuit Method.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Nolte_2022aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Dölz, Jürgen</a> ; Multerer, Michael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/nolte.en.jsp">Nolte, Maximilian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Wolf, Felix</a></strong>
(2022):
<em>Mortaring for the Isogeometric Boundary Element Method.</em>
In: <em><span class="bibtex-protected">X</span> International Conference on Isogeometric Analysis (<span class="bibtex-protected">IGA</span> 2022)</em>, Banff.
URL: <a class="link" target="_top" href="http://iga2022.usacm.org/">http://iga2022.usacm.org/</a>.
[Talk]</p>
<!--Mulder_2022aa-->
<p style="margin-bottom: 0.2em"><strong>Mulder, Tim ; Bordini, Bernardo ; Ravaioli, Emmanuele ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Verweij, Arjan</strong>
(2022):
<em>External Coil Coupled Loss Induced Quench (<span class="bibtex-protected">E-CLIQ</span>) System for Protection of <span class="bibtex-protected">LTS</span> Magnets.</em>
In: <em>Applied Superconductivity Conference 2022</em>, Honolulu.
URL: <a class="link" target="_top" href="https://www.appliedsuperconductivity.org/asc2022/">https://www.appliedsuperconductivity.org/asc2022/</a>.
[Talk]</p>
<!--Merkel_2022ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Kapidani, Bernard ; Vázquez, Rafael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Simulation and Torque Computation of Electric Machines.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Merkel_2022ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Kapidani, Bernard ; Vázquez, Rafael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Simulation of Rotation in Electric Motors using Isogeometric Mortaring.</em>
In: <em>International Conference on Domain Decomposition Methods <span class="bibtex-protected">DD</span>27</em>, Prague, Czech Republic.
URL: <a class="link" target="_top" href="https://www.dd27.cz">https://www.dd27.cz</a>.
[Talk]</p>
<!--Merkel_2022ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Kapidani, Bernardn ; Vázquez, Rafael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>An Isogeometric Tree-Cotree Gauge for Rotating Electric Machine Models with nonconforming Interfaces.</em>
In: <em>14th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2022)</em>, Amsterdam.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Talk]</p>
<!--Merkel_2022aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Kapidani, Bernard ; Vázquez, Rafael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Isogeometric Mortaring for the <span class="bibtex-protected">3D</span> Simulation of Electric Machines.</em>
In: <em>23rd Conference on the Computation of Electromagnetic Fields (<span class="bibtex-protected">COMPUMAG</span> 2021)</em>, Cancun, Mexico. International Compumag Society.
URL: <a class="link" target="_top" href="http://www.compumag2021.com">http://www.compumag2021.com</a>.
[Talk]</p>
<!--Mally_2022ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Steinbach, Olaf</strong>
(2022):
<em>Gauging and Domain Decomposition for Efficient Magnetoquasistatic Simulation.</em>
In: <em>Miniworkshop Space–Time Methods</em>, Graz.
[Talk]</p>
<!--Mally_2022ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Steinbach, Olaf</strong>
(2022):
<em>An All-floating Mortaring Method for Electromagnetic Application.</em>
In: <em>20th International <span class="bibtex-protected">IGTE</span> Symposium 2022 on Computational Methods in Electromagnetics and Multiphysics</em>, Graz.
URL: <a class="link" target="_top" href="http://wp12688559.server-he.de/symp22/">http://wp12688559.server-he.de/symp22/</a>.
[Talk]</p>
<!--Mally_2022ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>An All-floating <span class="bibtex-protected">IETI</span> Method from a Mortaring Perspective.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Mally_2022ab-->
<p style="margin-bottom: 0.2em"><strong>Dahiya, Sumita ; Elber, Gershon ; Hong, Q Youn ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/mally.en.jsp">Mally, Mario</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Steinbach, Olaf</strong>
(2022):
<em>A <span class="bibtex-protected">IETI</span> Method for Trivariate Geometries with nonconforming Patches based on Mortaring.</em>
In: <em>15th World Congress on Computational Mechanics and 8th Asian Pacific Congress on Computational Mechanics</em>, Yokohama.
URL: <a class="link" target="_top" href="https://www.wccm2022.org/">https://www.wccm2022.org/</a>.
[Talk]</p>
<!--Huber_2022ab-->
<p style="margin-bottom: 0.2em"><strong>Huber, Morten ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/former_group/">Fuhrländer, Mona</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Multi-Objective Yield Optimization for Electrical Machines.</em>
In: <em>Embedded Software Engineering Kongress 2022</em>, Sindelfingen.
URL: <a class="link" target="_top" href="https://ese-kongress.de">https://ese-kongress.de</a>.
[Talk]</p>
<!--Fuhrlander_2022ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/former_group/">Fuhrländer, Mona</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em><span class="bibtex-protected">Hermite</span>-type modifications of the derivative-free <span class="bibtex-protected">BOBYQA</span> algorithm.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Poster]</p>
<!--Fuhrlander_2022ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/former_group/">Fuhrländer, Mona</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em><span class="bibtex-protected">Hermite</span> least squares optimization for mixed gradient information.</em>
In: <em>14th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2022)</em>, Amsterdam.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Fuhrlander_2022ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/former_group/">Fuhrländer, Mona</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Yield optimization with mixed gradient information.</em>
In: <em><span class="bibtex-protected">SIAM</span> Conference on Uncertainty Quantification 2022</em>, Atlanta, USA.
URL: <a class="link" target="_top" href="https://www.siam.org/conferences/cm/conference/uq22">https://www.siam.org/conferences/cm/conference/uq22</a>.
[Talk]</p>
<!--Forster_2022ag-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; Schilders, Wil ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Index-aware learning of constrained mechanical systems.</em>
In: <em>9th <span class="bibtex-protected">GACM</span> Colloquium on Computational Mechanics</em>, Essen, Germany.
URL: <a class="link" target="_top" href="https://colloquia.gacm.de">https://colloquia.gacm.de</a>.
[Talk]</p>
<!--Forster_2022af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; Jansen, Lennart ; Schilders, Wil ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Structured learning of electrical circuits.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2022</em>, Riezlern, Austria.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Forster_2022ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; Jansen, Lennart ; Schilders, Wil ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Index-aware learning of circuits.</em>
In: <em>International Conference on Scientific Computation and Differential Equations (<span class="bibtex-protected">SciCADE</span> 2022)</em>, Reykjavík, Iceland.
URL: <a class="link" target="_top" href="https://scicade2021.hi.is">https://scicade2021.hi.is</a>.
[Talk]</p>
<!--Forster_2022ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; Jansen, Lennart ; Schilders, Wil ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Index-aware learning of <span class="bibtex-protected">MNA</span>.</em>
In: <em>14th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2022)</em>, Amsterdam.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Forster_2022ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; Gander, Martin J.</strong>
(2022):
<em>Para<span class="bibtex-protected">RKC</span>: A Parallel <span class="bibtex-protected">Runge</span>-<span class="bibtex-protected">Kutta</span>-<span class="bibtex-protected">Chebyshev</span> Method.</em>
In: <em><span class="bibtex-protected">SIAM</span> Conference on Parallel Processing for Scientific Computing 2022</em>, Virtual Conference.
URL: <a class="link" target="_top" href="https://www.siam.org/conferences/cm/conference/pp22">https://www.siam.org/conferences/cm/conference/pp22</a>.
[Talk]</p>
<!--Forster_2022aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Enders, Joachim ; Herbert, Maximilian ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Simona, Abele</a></strong>
(2022):
<em>Shape Optimization of a Photo-Electron Gun using Isogeometric Analysis.</em>
In: <em>23rd Conference on the Computation of Electromagnetic Fields (<span class="bibtex-protected">COMPUMAG</span> 2021)</em>, Cancun, Mexico. International Compumag Society.
URL: <a class="link" target="_top" href="http://www.compumag2021.com">http://www.compumag2021.com</a>.
[Poster]</p>
<!--Dular_2022aa-->
<p style="margin-bottom: 0.2em"><strong>Dular, Julien ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Harutyunyan, Mané</a> ; Geuzaine, Christophe ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Vanderheyden, Benoît</strong>
(2022):
<em>A mixed formulation for the modeling of systems with high-temperature superconductors and ferromagnets.</em>
In: <em>14th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2022)</em>, Amsterdam.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Talk]</p>
<h2>2021</h2>
<!--Ziegler_2021ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Gangl, Peter ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Georg, Niklas</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Isogeometric Shape Derivatives applied to Eigenvalue Tracking for Superconducting Cavities.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2021</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Ziegler_2021ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Georg, Niklas</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Eigenvalue Tracking based on Shape Morphing and Isogeometric Analysis for Automatic Mode Classification of Accelerator Cavities.</em>
In: <em>21st European Conference on Mathematics for Industry (<span class="bibtex-protected">ECMI</span> 2021)</em>, Wuppertal. European Consortium for Mathematics in Industry.
[Talk]</p>
<!--Ziegler_2021aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Georg, Niklas</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Eigenvalue Tracking for Automatic Mode Classification of Accelerator Cavities based on Shape Morphing.</em>
In: <em><span class="bibtex-protected">GAMM</span> Activity Group <span class="bibtex-protected">CSE</span> Workshop 2021</em>, Siegen.
URL: <a class="link" target="_top" href="https://www.mb.uni-siegen.de/nm/workshops/gamm-cse-2021">https://www.mb.uni-siegen.de/nm/workshops/gamm-cse-2021</a>.
[Talk]</p>
<!--Schops_2021aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Bortot, Lorenzo</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; Mentink, Matthias</strong>
(2021):
<em>Multiphysical Modeling and Simulation of <span class="bibtex-protected">CERN</span>'s quench protection system.</em>
In: <em>14th World Congress in Computational Mechanics and <span class="bibtex-protected">ECCOMAS</span> Congress</em>, Paris.
URL: <a class="link" target="_top" href="https://virtual.wccm-eccomas2020.org">https://virtual.wccm-eccomas2020.org</a>.
[Talk]</p>
<!--Schnaubelt_2021ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Bortot, Lorenzo</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Wozniak, Mariusz</strong>
(2021):
<em>Numerical Analysis of Magneto-Thermal Transients in High-Temperature Superconducting Tapes and Coils.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2021</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Schnaubelt_2021ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Bortot, Lorenzo</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Magneto-Thermal Finite Element Models of Superconducting Magnets, Coils and Tapes in <span class="bibtex-protected">GetDP</span>.</em>
In: <em><span class="bibtex-protected">GetDP</span> Workshop 2021</em>, Virtual Event.
URL: <a class="link" target="_top" href="https://indico.cern.ch/event/1015906/">https://indico.cern.ch/event/1015906/</a>.
[Talk]</p>
<!--Schnaubelt_2021ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Marsic, Nicolas ; De Gersem, Herbert</strong>
(2021):
<em>Performance Comparison of Perfectly Matched Layers Combined with <span class="bibtex-protected">2.5D</span> Finite Element Formulations for Solving Open Axisymmetric Cavity Problems.</em>
In: <em>12th International Symposium on Electric and Magnetic Fields (<span class="bibtex-protected">EMF</span> 2021)</em>, Virtual Conference.
[Talk]</p>
<!--Parekh_2021ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/parekh.en.jsp">Parekh, Vivek</a> ; Flore, Dominik ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Multi-objective Topology Optimization of Electrical Machines Using Variational Autoencoder.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2021</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Pade_2021aa-->
<p style="margin-bottom: 0.2em"><strong>Pade, Jonas ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Tischendorf, Caren</strong>
(2021):
<em>Waveform relaxation for low frequency coupled field/circuit <span class="bibtex-protected">DAEs</span>: Topological convergence criteria.</em>
In: <em>21st European Conference on Mathematics for Industry (<span class="bibtex-protected">ECMI</span> 2021)</em>, Wuppertal. European Consortium for Mathematics in Industry.
[Talk]</p>
<!--Merkel_2021ac-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Kapidani, Bernard ; Vázquez, Rafael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Tree-Cotree Gauging and Isogeometric Mortaring for the Simulation of Electric Machines.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2021</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Merkel_2021aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; Gangl, Peter ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Shape Optimization of Rotating Electric Machines Using Isogeometric Analysis and Mortaring.</em>
In: <em>14th World Congress in Computational Mechanics and <span class="bibtex-protected">ECCOMAS</span> Congress</em>, Paris.
URL: <a class="link" target="_top" href="https://virtual.wccm-eccomas2020.org">https://virtual.wccm-eccomas2020.org</a>.
[Talk]</p>
<!--Kulchytska-Ruchka_2021af-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Parareal for higher index differential algebraic equations.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2021</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Hahne_2021aa-->
<p style="margin-bottom: 0.2em"><strong>Hahne, Jens ; Friedhoff, Stephanie ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; Polenz, Björn ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Using Time-parallel Simulations in the Design Optimization of Induction Machines.</em>
In: <em>21st European Conference on Mathematics for Industry (<span class="bibtex-protected">ECMI</span> 2021)</em>, Wuppertal. European Consortium for Mathematics in Industry.
[Talk]</p>
<!--Georg_2021aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Georg, Niklas</a> ; Bect, Julien ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Römer, Ulrich</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em><span class="bibtex-protected">Gaussian</span> Process Regression for Complex-valued Frequency Response Functions.</em>
In: <em>6th <span class="bibtex-protected">ECCOMAS</span> Young Investigator Conference (<span class="bibtex-protected">YIC</span> 2021)</em>, València, Spain.
[Talk]</p>
<!--Fuhrlander_2021ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/former_group/">Fuhrländer, Mona</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Yield estimation and optimization based on <span class="bibtex-protected">Gaussian</span> process regression with application in electrical engineering.</em>
In: <em><span class="bibtex-protected">SIAM</span> Conference on Computational Science and Engineering (<span class="bibtex-protected">CSE</span>) 2021</em>, Texas, USA.
URL: <a class="link" target="_top" href="https://www.siam.org/conferences/cm/conference/cse21">https://www.siam.org/conferences/cm/conference/cse21</a>.
[Talk]</p>
<!--Fuhrlander_2021ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/former_group/">Fuhrländer, Mona</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>A combination of gradient based and derivative free optimization solvers.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2021</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Fuhrlander_2021ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/former_group/">Fuhrländer, Mona</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2021):
<em>Efficient yield optimization with limited gradient information.</em>
In: <em>21st European Conference on Mathematics for Industry (<span class="bibtex-protected">ECMI</span> 2021)</em>, Wuppertal. European Consortium for Mathematics in Industry.
[Talk]</p>
<!--Forster_2021ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/forster.en.jsp">Förster, Peter</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; Gander, Martin J.</strong>
(2021):
<em><span class="bibtex-protected">ParaRKC</span>: A Parallel <span class="bibtex-protected">Runge</span>-<span class="bibtex-protected">Kutta</span>-<span class="bibtex-protected">Chebyshev</span> Method.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2021</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Cortes-Garcia_2021ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/backmeyer.en.jsp">Backmeyer, Merle</a></strong>
(2021):
<em><span class="bibtex-protected">Darwin</span> Formulation of <span class="bibtex-protected">Maxwell</span>'s Equations.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2021</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<h2>2020</h2>
<!--Ziegler_2020aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/ziegler.en.jsp">Ziegler, Anna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Georg, Niklas</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Automatic Mode Recognition for Superconducting Cavities using Shape Morphing and Eigenvalue Tracking.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2020</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Wolf_2020ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Wolf, Felix</a></strong>
(2020):
<em>Bembel: An Overview.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2020</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Schnaubelt_2020ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Marsic, Nicolas ; De Gersem, Herbert</strong>
(2020):
<em>A Comparison Between Different Formulations for Solving Axisymmetric Time-Harmonic Electromagnetic Wave Problems.</em>
In: <em>19th Biennial <span class="bibtex-protected">IEEE</span> Conference on Electromagnetic Field Computation (<span class="bibtex-protected">CEFC</span> 2020)</em>, Pisa, Italy.
URL: <a class="link" target="_top" href="http://www.cefc2020.org">http://www.cefc2020.org</a>.
[Talk]</p>
<!--Schnaubelt_2020aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Marsic, Nicolas ; De Gersem, Herbert</strong>
(2020):
<em>Comparison Between Different Formulations for Solving Axisymmetric Time-Harmonic Electromagnetic Wave Problems.</em>
In: <em>13th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2020)</em>, Eindhoven.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Pels_2020aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Pels, Andreas</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Parallel-in-Time Simulation of Power Converters Using Multirate <span class="bibtex-protected">PDE</span>s.</em>
In: <em>13th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2020)</em>, Eindhoven.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Talk]</p>
<!--Parekh_2020aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/parekh.en.jsp">Parekh, Vivek</a> ; Flore, Dominik ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Deep Learning-based Prediction of Key Performance Indicators for Electrical Machine.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2020</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Northe_2020aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Northe, Benjamin</a></strong>
(2020):
<em>Singular and nearly singular <span class="bibtex-protected">Galerkin</span> integration for Boundary Element Methods.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2020</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Merkel_2020aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/merkel.en.jsp">Merkel, Melina</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Isogeometric Mortaring for the Simulation of Electric Machines.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2020</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Kulchytska-Ruchka_2020ad-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Pels, Andreas</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Parallel-in-Time Simulation of Power Converters Using Multirate <span class="bibtex-protected">PDE</span>s.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2020</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Kulchytska-Ruchka_2020ab-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Towards a Parallel-in-Time Calculation of Time-Periodic Solutions with Unknown Period.</em>
In: <em>13th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2020)</em>, Eindhoven.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Poster]</p>
<!--Kulchytska-Ruchka_2020aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Parallel-in-Time Solution of Time-Periodic Problems with Unknown Period.</em>
In: <em><span class="bibtex-protected">IX</span> Workshop on Parallel in Time Methods <span class="bibtex-protected">PinT</span> 2020</em>, Houghton, Michigan, USA.
URL: <a class="link" target="_top" href="https://parallel-in-time.org/events/9th-pint-workshop/">https://parallel-in-time.org/events/9th-pint-workshop/</a>.
[Talk]</p>
<!--Harutyunyan_2020ab-->
<p style="margin-bottom: 0.2em"><strong>Hautyunyan, Mané ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Stability analysis of the mixed <span class="bibtex-protected">A</span>-<span class="bibtex-protected">H</span> formulation.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2020</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.
[Talk]</p>
<!--Harutyunyan_2020aa-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Harutyunyan, Mané</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2020):
<em>Coupled formulations for the modeling of magnetostrictive materials.</em>
In: <em>13th Conference on Scientific Computing in Electrical Engineering (<span class="bibtex-protected">SCEE</span> 2020)</em>, Eindhoven.
URL: <a class="link" target="_top" href="https://www.scee-conferences.org/">https://www.scee-conferences.org/</a>.
[Talk]</p>
<!--Georg_2020ae-->
<p style="margin-bottom: 0.2em"><strong><a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Georg, Niklas</a> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Römer, Ulrich</a> ; Schuhmann, Rolf</strong>
(2020):
<em>Decoupled Uncertainty Propagation for Quasi-Periodic Optical Structures.</em>
In: <em>Workshop on Advances in Electromagnetic Research – <span class="bibtex-protected">KWT</span> 2020</em>, Virtual Conference.
URL: <a class="link" target="_top" href="http://maxwell-in-motion.org">http://maxwell-in-motion.org</a>.