Skip to content

Commit

Permalink
Update validation setup (some still not working)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ceyron committed Mar 18, 2024
1 parent 8708f0c commit 847933a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions validation/qualitative_rollouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
(-6.5, 6.5),
),
(
ex.stepper.KuramotoSivashinskyConservative(2, 30.0, 60, 0.1),
ex.stepper.KuramotoSivashinskyConservative(2, 60.0, 60, 0.1),
"ks_conservative",
ex.ic.RandomMultiChannelICGenerator(
2 * [ex.ic.RandomTruncatedFourierSeries(2, cutoff=3)]
Expand All @@ -308,7 +308,7 @@
),
(
ex.stepper.KuramotoSivashinskyConservative(
2, 30.0, 60, 0.01, single_channel=True
2, 60.0, 60, 0.01, single_channel=True
),
"ks_conservative_single_channel",
ex.ic.RandomTruncatedFourierSeries(2, cutoff=3),
Expand All @@ -325,7 +325,7 @@
(-6.5, 6.5),
),
(
ex.stepper.NikolaevskiyConservative(2, 30.0, 60, 0.1),
ex.stepper.NikolaevskiyConservative(2, 60.0, 60, 0.1),
"niko_conservative",
ex.ic.RandomMultiChannelICGenerator(
2 * [ex.ic.RandomTruncatedFourierSeries(2, cutoff=3)]
Expand All @@ -335,7 +335,7 @@
(-2.5, 2.5),
),
(
ex.stepper.NikolaevskiyConservative(2, 30.0, 60, 0.01, single_channel=True),
ex.stepper.NikolaevskiyConservative(2, 60.0, 60, 0.01, single_channel=True),
"niko_conservative_single_channel",
ex.ic.RandomTruncatedFourierSeries(2, cutoff=3),
500,
Expand Down Expand Up @@ -378,7 +378,7 @@
),
# Reaction
(
ex.reaction.CahnHilliard(2, 128, 300, 0.01, hyper_diffusivity=1.2),
ex.reaction.CahnHilliard(2, 128, 300, 0.001, hyper_diffusivity=1.2),
"cahn_hilliard",
ex.ic.RandomTruncatedFourierSeries(2, cutoff=10),
0,
Expand Down

0 comments on commit 847933a

Please sign in to comment.