-
Notifications
You must be signed in to change notification settings - Fork 0
/
schops.html
4562 lines (4562 loc) · 487 KB
/
schops.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>Schöps, Sebastian</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>
<!--Schnaubelt_2025aa-->
<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> ; Verweij, Arjan ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2025):
<em>Parallel-in-Time Integration of Transient Phenomena in No-Insulation Superconducting Coils Using <span class="bibtex-protected">Parareal</span>.</em>
In: <em>Scientific Computing in Electrical Engineering <span class="bibtex-protected">SCEE</span> 2024</em>, Mathematics in Industry. Springer.
accepted.
[In Proceedings]</p>
<!--Hahn_2025aa-->
<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>
(2025):
<em>Mortar thin shell approximation for analysis of superconducting accelerator magnets.</em>
In: <em>Scientific Computing in Electrical Engineering <span class="bibtex-protected">SCEE</span> 2024</em>, Mathematics in Industry. Springer.
accepted.
[In Proceedings]</p>
<!--De-Gersem_2025aa-->
<p style="margin-bottom: 0.2em"><strong>De Gersem, Herbert ; Barbulescu, Ruxandra ; <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> <strong>(editors)</strong>
(2025):
<em>Scientific Computing in Electrical Engineering <span class="bibtex-protected">SCEE</span> 2024</em>, Mathematics in Industry, Springer.
inpreparation.
[Proceedings]</p>
<h2>2024</h2>
<!--Ziegler_2024ae-->
<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>
(2024):
<em>A Mixed Tree-Cotree Gauge for the Reduced Basis Approximation of <span class="bibtex-protected">Maxwell</span>'s Eigenvalue Problem.</em>
Cornell University, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2406.11276">2406.11276</a>.
[Preprint].</p>
<!--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>
<!--Ziegler_2024aa-->
<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>
(2024):
<em>Reduced Basis Approximation for <span class="bibtex-protected">Maxwell</span>'s Eigenvalue Problem and Parameter-Dependent Domains.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Magnetics, ISSN: 0018-9464, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TMAG.2024.3358540">10.1109/TMAG.2024.3358540</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2308.02259">2308.02259</a>.
[Article]</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>
<!--Wiesheu_2024ab-->
<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> ; Komann, Theodor ; <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> ; Ulbrich, Stefan ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2024):
<em>Spline-Based Rotor and Stator Optimization of a Permanent Magnet Synchronous Motor.</em>
In: <em>26th International Conference on Electrical Machines <span class="bibtex-protected">ICEM</span> 2024</em>.
ISBN: 979-8-3503-7060-7, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/ICEM60801.2024.10700065">10.1109/ICEM60801.2024.10700065</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2311.06046">2311.06046</a>.
[In Proceedings]</p>
<!--Wiesheu_2024aa-->
<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> ; Komann, Theodor ; <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> ; Ulbrich, Stefan ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Cortes Garcia, Idoia</a></strong>
(2024):
<em>Combined Parameter and Shape Optimization of Electric Machines with Isogeometric Analysis.</em>
In: Optimization and Engineering, ISSN: 1389-4420, DOI: <a class="link" target="_top" href="https://doi.org/10.1007/s11081-024-09925-0">10.1007/s11081-024-09925-0</a>.
[Article]</p>
<!--Torchio_2024aa-->
<p style="margin-bottom: 0.2em"><strong>Torchio, Riccardo ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Lucchini, Francesco</strong>. <strong>Lombardi, Guido</strong> <strong>(editor)</strong>
(2024):
<em>Block Structure Preserving Model Order Reduction for <span class="bibtex-protected">A</span>-<span class="bibtex-protected">EFIE</span> Integral Equation Method.</em>
In: <em><span class="bibtex-protected">IEEE</span> International Symposium on Antennas and Propagation and <span class="bibtex-protected">INC</span>/<span class="bibtex-protected">USNC</span>‐<span class="bibtex-protected">URSI</span> Radio Science Meeting (<span class="bibtex-protected">AP</span>-<span class="bibtex-protected">S/INC</span>-<span class="bibtex-protected">USNC</span>-<span class="bibtex-protected">URSI</span> 2024)</em>, 977–978.
ISBN: 979-8-3503-6990-8, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/AP-S/INC-USNC-URSI52054.2024.10686274">10.1109/AP-S/INC-USNC-URSI52054.2024.10686274</a>.
[In Proceedings]</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>
<!--Schnaubelt_2024aa-->
<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> ; Atalay, Sina ; 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>
(2024):
<em>Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Applied Superconductivity, 34, (3), pp. 1–6, ISSN: 1051-8223, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TASC.2023.3340648">10.1109/TASC.2023.3340648</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2310.03138">2310.03138</a>.
[Article]</p>
<!--Paakkunainen_2024ag-->
<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> Coils in Large Scale Applications.</em>
Cornell University, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2410.05121">2410.05121</a>.
[Preprint].</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>
<!--Paakkunainen_2024aa-->
<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 ; Garcia, Idoia Cortes ; 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>A Stabilized Circuit-Consistent Foil Conductor Model.</em>
In: <span class="bibtex-protected">IEEE</span> Access, 12, pp. 1408–1417, ISSN: 2169-3536, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/ACCESS.2023.3346677">10.1109/ACCESS.2023.3346677</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2306.13477">2306.13477</a>.
[Article]</p>
<!--Nolte_2024aa-->
<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>
(2024):
<em>A Low-Frequency-Stable Higher-Order Isogeometric Discretization of the Augmented Electric Field Integral Equation.</em>
Cornell University, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2401.10735v2">2401.10735v2</a>.
[Preprint].</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_2024ae-->
<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>Tree-Cotree-Based Tearing and Interconnecting for <span class="bibtex-protected">3D</span> Magnetostatics: A Dual-Primal Approach.</em>
Cornell University, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2407.21707">2407.21707</a>, submitted.
[Preprint].</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>
<!--Komann_2024aa-->
<p style="margin-bottom: 0.2em"><strong>Komann, Theodor ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/wiesheu.en.jsp">Wiesheu, Michael</a> ; Ulbrich, Stefan ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Robust Design Optimization of Electric Machines with Isogeometric Analysis.</em>
In: Mathematics, ISSN: 2227-7390, DOI: <a class="link" target="_top" href="https://doi.org/10.3390/math12091299">10.3390/math12091299</a>.
[Article]</p>
<!--Kapidani_2024aa-->
<p style="margin-bottom: 0.2em"><strong>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> ; Vázquez, Rafael</strong>
(2024):
<em>Arbitrary order spline representation of cohomology generators for isogeometric analysis of eddy current problems.</em>
In: Advances in Computational Mathematics, ISSN: 1019-7168, DOI: <a class="link" target="_top" href="https://doi.org/10.1007/s10444-024-10181-0">10.1007/s10444-024-10181-0</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2310.14313">2310.14313</a>.
[Article]</p>
<!--Herter_2024aa-->
<p style="margin-bottom: 0.2em"><strong>Herter, Christine ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Wollner, Winnifried</strong>
(2024):
<em>Numerical Eigenvalue Optimization by Shape-Variations for <span class="bibtex-protected">Maxwell</span>'s Eigenvalue Problem.</em>
Cornell University, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2407.11703">2407.11703</a>.
[Preprint].</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>
<!--Fleig_2024ab-->
<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>
(2024):
<em>Identification of B(H) curves using the Karhunen Loève Expansion.</em>
In: <span class="bibtex-protected">IEEE</span> Access, ISSN: 2169-3536, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/ACCESS.2024.3393348">10.1109/ACCESS.2024.3393348</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2306.12872">2306.12872</a>, accepted.
[Article]</p>
<!--Dolz_2024aa-->
<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> ; Ebert, David ; <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/group/ziegler.en.jsp">Ziegler, Anna</a></strong>
(2024):
<em>Shape uncertainty quantification of <span class="bibtex-protected">Maxwell</span> eigenvalues and -modes with application to <span class="bibtex-protected">TESLA</span> cavities.</em>
In: Computer Methods in Applied Mechanics and Engineering, 428, pp. 117108, ISSN: 0045-7825, DOI: <a class="link" target="_top" href="https://doi.org/10.1016/j.cma.2024.117108">10.1016/j.cma.2024.117108</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2401.11890">2401.11890</a>.
[Article]</p>
<!--Cortes-Garcia_2024aa-->
<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/forster.en.jsp">Förster, Peter</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: International Journal of Circuit Theory and Applications, ISSN: 0098-9886, DOI: <a class="link" target="_top" href="https://doi.org/10.1002/cta.4024">10.1002/cta.4024</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2309.00958">2309.00958</a>.
[Article]</p>
<!--Bect_2024aa-->
<p style="margin-bottom: 0.2em"><strong>Bect, Julien ; <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> ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2024):
<em>Rational kernel-based interpolation for complex-valued frequency response functions.</em>
In: <span class="bibtex-protected">SIAM</span> Journal on Scientific Computing, ISSN: 1064-8275, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2307.13484">2307.13484</a>, accepted.
[Article]</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>
<!--Balouchev_2024aa-->
<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>, 771–774. IEEE.
ISBN: 979-8-3503-6097-4, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/ICEAA61917.2024.10701653">10.1109/ICEAA61917.2024.10701653</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2406.19025">2406.19025</a>.
[In Proceedings]</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>
<!--Backmeyer_2024ab-->
<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>Solving Electromagnetic Scattering Problems by Isogeometric Analysis with Deep Operator Learning.</em>
In: <em>2024 Kleinheubach Conference</em>. IEEE.
ISBN: 978-3-948571-12-2, DOI: <a class="link" target="_top" href="https://doi.org/10.23919/IEEECONF64570.2024.10739053">10.23919/IEEECONF64570.2024.10739053</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2409.20280">2409.20280</a>.
[In Proceedings]</p>
<!--Atalay_2024aa-->
<p style="margin-bottom: 0.2em"><strong>Atalay, Sina ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schnaubelt.en.jsp">Schnaubelt, Erik</a> ; Wozniak, Mariusz ; Dular, Julien ; Zachou, Georgia ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Verweij, Arjan</strong>
(2024):
<em>An open-source <span class="bibtex-protected">3D</span> <span class="bibtex-protected">FE</span> quench simulation tool for no-insulation <span class="bibtex-protected">HTS</span> pancake coils.</em>
In: Superconductor Science and Technology, 37, (6), pp. 065005, ISSN: 0953-2048, DOI: <a class="link" target="_top" href="https://doi.org/10.1088/1361-6668/ad3f83">10.1088/1361-6668/ad3f83</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2311.09177v2">2311.09177v2</a>.
[Article]</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_2024ab-->
<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>Gradient-Based Eigenvalue Optimization for Electromagnetic Cavities with Built-in Mode Matching.</em>
In: <span class="bibtex-protected">IET</span> Science, Measurement & Technology, ISSN: 1751-8822, DOI: <a class="link" target="_top" href="https://doi.org/10.1049/smt2.12190">10.1049/smt2.12190</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2310.15751">2310.15751</a>.
[Article]</p>
<!--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>
<!--Ziegler_2023ab-->
<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>
(2023):
<em>On the computation of analytic sensitivities of eigenpairs in isogeometric analysis.</em>
In: Computer Methods in Applied Mechanics and Engineering, 409, pp. 115961, ISSN: 0045-7825, DOI: <a class="link" target="_top" href="https://doi.org/10.1016/j.cma.2023.115961">10.1016/j.cma.2023.115961</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2212.10347">2212.10347</a>.
[Article]</p>
<!--Ziegler_2023aa-->
<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> ; Ackermann, Wolfgang ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2023):
<em>Mode Recognition by Shape Morphing for <span class="bibtex-protected">Maxwell</span>'s Eigenvalue Problem.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Antennas and Propagation, 71, (5), pp. 4315–4325, ISSN: 0018-926X, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TAP.2023.3249907">10.1109/TAP.2023.3249907</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2203.00499">2203.00499</a>.
[Article]</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>
<!--Wiesheu_2023aa-->
<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>How to Build the Optimal Magnet Assembly for Magnetocaloric Cooling: Structural Optimization with Isogeometric Analysis.</em>
In: International Journal of Refrigeration, 152, pp. 62–73, ISSN: 0140-7007, DOI: <a class="link" target="_top" href="https://doi.org/10.1016/j.ijrefrig.2023.04.014">10.1016/j.ijrefrig.2023.04.014</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2212.06580">2212.06580</a>.
[Article]</p>
<!--Torchio_2023aa-->
<p style="margin-bottom: 0.2em"><strong>Torchio, Riccardo ; <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> ; Ruehli, Albert E.</strong>
(2023):
<em>A Spline-based Partial Element Equivalent Circuit Method for Electrostatics.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Dielectrics and Electrical Insulation, ISSN: 1070-9878, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TDEI.2022.3224890">10.1109/TDEI.2022.3224890</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2207.13697">2207.13697</a>.
[Article]</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>
<!--Schnaubelt_2023ab-->
<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> ; Verweij, Arjan</strong>
(2023):
<em>Electromagnetic Simulation of No-Insulation Coils Using H−φ Thin Shell Approximation.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Applied Superconductivity, 33, (5), pp. 1–6, ISSN: 1051-8223, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TASC.2023.3258905">10.1109/TASC.2023.3258905</a>.
[Article]</p>
<!--Schnaubelt_2023aa-->
<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>Thermal thin shell approximation towards finite element quench simulation.</em>
In: Superconductor Science and Technology, 36, (4), pp. 044004, ISSN: 0953-2048, DOI: <a class="link" target="_top" href="https://doi.org/10.1088/1361-6668/acbeea">10.1088/1361-6668/acbeea</a>.
[Article]</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>
<!--Parekh_2023ab-->
<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>
(2023):
<em>Deep learning based Meta-modeling for Multi-objective Technology Optimization of Electrical Machines.</em>
In: <span class="bibtex-protected">IEEE</span> Access, ISSN: 2169-3536, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/ACCESS.2023.3307499">10.1109/ACCESS.2023.3307499</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2306.09087">2306.09087</a>, inprint.
[Article]</p>
<!--Parekh_2023aa-->
<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>
(2023):
<em>Performance Analysis of Electrical Machines Using a Hybrid Data- and Physics-Driven Model.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Energy Conversion, ISSN: 0885-8969, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TEC.2022.3209103">10.1109/TEC.2022.3209103</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2201.09603">2201.09603</a>.
[Article]</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>
<!--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>
<!--Hahne_2023aa-->
<p style="margin-bottom: 0.2em"><strong>Hahne, Jens ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/former_group/">Kulchytska-Ruchka, Iryna</a> ; Polenz, Björn ; Friedhoff, Stephanie ; Ulbrich, 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>Parallel-in-time optimization of induction motors.</em>
In: Journal of Mathematics in Industry, ISSN: 2190-5983, DOI: <a class="link" target="_top" href="https://doi.org/10.1186/s13362-023-00134-5">10.1186/s13362-023-00134-5</a>, accepted.
[Article]</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>
<!--Fuhrlander_2023ab-->
<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><span class="bibtex-protected">Hermite</span>-type modifications of <span class="bibtex-protected">BOBYQA</span> for optimization with some partial derivatives.</em>
In: Optimization and Engineering, ISSN: 1389-4420, DOI: <a class="link" target="_top" href="https://doi.org/10.1007/s11081-023-09795-y">10.1007/s11081-023-09795-y</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2204.05022">2204.05022</a>.
[Article]</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_2023ab-->
<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><span class="bibtex-protected">Bayesian</span> Experimental Design for <span class="bibtex-protected">LED</span>s using <span class="bibtex-protected">Gaussian</span> Processes.</em>
In: <em>2023 29th International Workshop on Thermal Investigations of <span class="bibtex-protected">IC</span>s and Systems (<span class="bibtex-protected">THERMINIC</span>)</em>. IEEE.
DOI: <a class="link" target="_top" href="https://doi.org/10.1109/therminic60375.2023.10325903">10.1109/therminic60375.2023.10325903</a>.
[In Proceedings]</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_2024aa-->
<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>Combination of Measurement Data and Domain Knowledge for Simulation of <span class="bibtex-protected">Halbach</span> Arrays with <span class="bibtex-protected">Bayesian</span> Inference.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Magnetics, ISSN: 0018-9464, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TMAG.2023.3301976">10.1109/TMAG.2023.3301976</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2306.12844">2306.12844</a>.
[Article]</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>
<!--Balian_2023aa-->
<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> ; Ostrowski, Jörg ; 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>Low-Frequency Stabilization of Dielectric Simulation Problems with Conductors and Insulators.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Dielectrics and Electrical Insulation, ISSN: 1070-9878, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TDEI.2023.3277414">10.1109/TDEI.2023.3277414</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2302.00313">2302.00313</a>.
[Article]</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>
<!--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_2022ab-->
<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>Variational Autoencoder based Metamodeling for Multi-Objective Topology Optimization of Electrical Machines.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Magnetics, ISSN: 0018-9464, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TMAG.2022.3163972">10.1109/TMAG.2022.3163972</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2201.08877">2201.08877</a>.
[Article]</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>
<!--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>
<!--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_2022ab-->
<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 ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Vázquez, Rafael</strong>
(2022):
<em>Torque Computation with the Isogeometric Mortar Method for the Simulation of Electric Machines.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Magnetics, ISSN: 0018-9464, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TMAG.2022.3186247">10.1109/TMAG.2022.3186247</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2202.05771">2202.05771</a>.
[Article]</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>
<!--Kulchytska-Ruchka_2022aa-->
<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> ; Clemens, Markus</strong>
(2022):
Finite Element Methods in Time Domain with Applications to Low-Frequency Problems.
In <em>Advanced time domain modelling for electrical engineering</em>, pages 73–105.
The Institution of Engineering and Technology (IET), 2022.
[In Collection]</p>
<!--Kapidani_2022aa-->
<p style="margin-bottom: 0.2em"><strong>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> ; Vázquez, Rafael</strong>
(2022):
<em>Tree-Cotree Decomposition of Isogeometric Mortared Spaces in <span class="bibtex-protected">H</span>(curl) on Multi-Patch Domains.</em>
In: Computer Methods in Applied Mechanics and Engineering, 395, pp. 114949, ISSN: 0045-7825, DOI: <a class="link" target="_top" href="https://doi.org/10.1016/j.cma.2022.114949">10.1016/j.cma.2022.114949</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2110.15860">2110.15860</a>.
[Article]</p>
<!--Kahne_2022aa-->
<p style="margin-bottom: 0.2em"><strong>Kähne, Bernhard ; Clemens, Markus ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Magnetic field simulations using explicit time integration with higher order schemes.</em>
In: <span class="bibtex-protected">COMPEL</span>: The International Journal for Computation and Mathematics in Electrical and Electronic Engineering, ISSN: 0332-1649, DOI: <a class="link" target="_top" href="https://doi.org/10.1108/COMPEL-03-2021-0090">10.1108/COMPEL-03-2021-0090</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2011.03075">2011.03075</a>.
[Article]</p>
<!--Huber_2023aa-->
<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 using <span class="bibtex-protected">Gaussian</span> Processes to Learn Faulty Designs.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Industry Applications, 59, (2), pp. 1340–1350, ISSN: 0093-9994, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TIA.2022.3211250">10.1109/TIA.2022.3211250</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2204.04986">2204.04986</a>.
[Article]</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>
<!--Herter_2023aa-->
<p style="margin-bottom: 0.2em"><strong>Herter, Christine ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Wollner, Winnifried</strong>
(2022):
<em>Eigenvalue Optimization with respect to Shape-Variations in Electromagnetic Cavities.</em>
In: <em>Proceedings in Applied Mathematics and Mechanics</em>, volume 22, e202200122. Wiley.
DOI: <a class="link" target="_top" href="https://doi.org/10.1002/pamm.202200122">10.1002/pamm.202200122</a>, forthcoming.
[In Proceedings]</p>
<!--Henkel_2023aa-->
<p style="margin-bottom: 0.2em"><strong>Henkel, Marvin-Lucas ; Kasolis, Fotios ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a> ; Clemens, Markus</strong>
(2022):
<em>A Comparative Study on Electromagnetic Quasistatic Time-Domain Field Calculations.</em>
In: International Journal of Numerical Modelling: Electronic Networks, Devices and Fields, 36, (3), pp. 1–9, ISSN: 0894-3370, DOI: <a class="link" target="_top" href="https://doi.org/10.1002/jnm.3049">10.1002/jnm.3049</a>.
[Article]</p>
<!--Henkel_2022aa-->
<p style="margin-bottom: 0.2em"><strong>Henkel, Marvin-Lucas ; Kasolis, Fotios ; Clemens, Markus ; Günther, Michael ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
<em>Implicit Gauging of Electromagneto-Quasistatic Field Formulations.</em>
In: <span class="bibtex-protected">IEEE</span> Transactions on Magnetics, ISSN: 0018-9464, DOI: <a class="link" target="_top" href="https://doi.org/10.1109/TMAG.2022.3187869">10.1109/TMAG.2022.3187869</a>.
[Article]</p>
<!--Gjonaj_2022aa-->
<p style="margin-bottom: 0.2em"><strong>Gjonaj, Erion ; Ouedraogo, Yun ; <a class="link" target="_top" href="https://www.cem.tu-darmstadt.de/cem/group/schops.en.jsp">Schöps, Sebastian</a></strong>
(2022):
Droplet Dynamics Under Extreme Ambient Conditions.
In <em>Modelling of Droplet Dynamics in Strong Electric Fields</em>, volume 124 of Fluid Mechanics and Its Applications, pages 107–125.
Springer International Publishing, 2022.
[In Collection]</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>
<!--Fuhrlander_2022aa-->
<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>Efficient yield optimization with limited gradient information.</em>
In: <em>Progress in Industrial Mathematics at <span class="bibtex-protected">ECMI</span> 2021</em>, volume 39 of Mathematics in Industry, 203–209. Springer.
ISBN: 978-3-031-11817-3, DOI: <a class="link" target="_top" href="https://doi.org/10.1007/978-3-031-11818-0_27">10.1007/978-3-031-11818-0_27</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2105.07799">2105.07799</a>.
[In Proceedings]</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_2022ab-->
<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>Freeform shape optimization of a compact <span class="bibtex-protected">DC</span> photo-electron gun using isogeometric analysis.</em>
In: Physical Review Accelerators and Beams, ISSN: 2469-9888, DOI: <a class="link" target="_top" href="https://doi.org/10.1103/PhysRevAccelBeams.25.034601">10.1103/PhysRevAccelBeams.25.034601</a>, ARXIV: <a class="link" target="_top" href="https://arxiv.org/abs/2012.04372">2012.04372</a>.
[Article]</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):