Skip to content

Commit af04e7f

Browse files
author
Thomas Baumann
committed
Lol
#!!!!!! WARNING: FLAKEHEAVEN FAILED !!!!!!: #:
1 parent 92e166c commit af04e7f

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed

pySDC/projects/GPU/analysis_scripts/RBC3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
# CFL.append(P.get_CFL_limit(u))
107107

108108
k, s = P.get_frequency_spectrum(u)
109-
spectrum.append(s[0, 0])
109+
spectrum.append(s[0, xp.argmax(_rms_profiles['T'])])
110110
spectrum_all.append(s)
111111
# plt.loglog(k[s[0,0]>1e-15], s[0,0][s[0,0]>1e-15])
112112
# # plt.ylim(1e-10, 1e1)

pySDC/projects/GPU/configs/RBC3D_configs.py

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,16 @@ class RBC3DG4Ra1e6(RBC3DverificationGamma4):
551551
res = 48
552552

553553

554+
class RBC3DG4R4Ra1e6(RBC3DverificationGamma4):
555+
# dt=4e-2 crashed at t=1
556+
res_ratio = 4
557+
Tend = 80
558+
converged = 15
559+
dt = 4e-2
560+
ic_config = RBC3DG4Ra1e5
561+
res = 48
562+
563+
554564
class RBC3DG4RKRa1e6(RBC3DverificationRKGamma4):
555565
# at res48 with dt4e-2 crash at t=15
556566
converged = 30
@@ -576,23 +586,50 @@ class RBC3DG4Ra1e7(RBC3DverificationGamma4):
576586
dt = 9e-3 # limit
577587
ic_config = RBC3DG4Ra1e6
578588
res = 96
579-
converged = 15
589+
# converged = 15
590+
591+
592+
class RBC3DG4R4Ra1e7(RBC3DverificationGamma4):
593+
res_ratio = 4
594+
Tend = 40
595+
dt = 9e-3
596+
ic_config = RBC3DG4Ra1e6
597+
res = 96
598+
converged = 11
580599

581600

582601
class RBC3DG4RKRa1e7(RBC3DverificationRKGamma4):
583602
# at res=96: with dt=8e-3 blows up at t=67.5
584603
Tend = 100
585604
dt = 2e-2 # limit
586605
ic_config = RBC3DG4Ra1e6
587-
res = 32
606+
res = 96
588607

589608

590609
class RBC3DG4Ra1e8(RBC3DverificationGamma4):
610+
# 8e-3 crashes at t=2
591611
Tend = 100
592-
dt = 9e-3
612+
dt = 6e-3
613+
ic_config = RBC3DG4Ra1e7
614+
res = 96
615+
converged = 20
616+
617+
618+
class RBC3DG4RKRa1e8(RBC3DverificationRKGamma4):
619+
# 7e-3 crashes at t=1, 6e-3 at t=2
620+
Tend = 100
621+
dt = 5e-3 # limit
593622
ic_config = RBC3DG4Ra1e7
594623
res = 96
595-
# converged=15
624+
converged = 20
625+
626+
627+
class RBC3DG4R4Ra1e8(RBC3DverificationGamma4):
628+
Tend = 60
629+
dt = 6e-3
630+
ic_config = RBC3DG4R4Ra1e7
631+
res = 96
632+
# converged=20
596633

597634

598635
# class RBC3DG4Ra1e8(RBC3DverificationGamma4):

0 commit comments

Comments
 (0)