We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 512eabd commit fe2cbc5Copy full SHA for fe2cbc5
cr_bayesian_optim/fractal_dim.py
@@ -110,6 +110,16 @@ def load_or_compute_last_iter(options):
110
return cells[last_iter], out_path
111
112
113
+def produce_options():
114
+ options = crb.Options(
115
+ show_progressbar=True, storage_location="out/fractal_dim_multi"
116
+ )
117
+ options.time.t_max = 2000
118
+ options.domain.domain_size = 2000
119
+ options.time.dt = 0.3
120
+ return options
121
+
122
123
def calculate_fractal_dim_over_time(cells: crb.CellOutput, options: crb.Options):
124
iterations = sorted(cells.keys())
125
dims = []
0 commit comments