Skip to content

Commit

Permalink
Update ch, canfrac, cf_thresh, ch_thresh
Browse files Browse the repository at this point in the history
  • Loading branch information
angehung5 authored Feb 6, 2024
1 parent 30eea0b commit d187afa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/examples.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -200,19 +200,19 @@
"%%time\n",
"\n",
"threshes = [\n",
" # lai, frt, fch\n",
" # lai, canfrac, ch\n",
" (0.1, 0.1, 0.5), # defaults\n",
" (0.5, 0.5, 0.5),\n",
" (0.1, 0.5, 3),\n",
" (0.1, 0.5, 10),\n",
"]\n",
"\n",
"lai_threshes, frt_threshes, fch_threshes = [list(x) for x in zip(*threshes)]\n",
"lai_threshes, cf_threshes, ch_threshes = [list(x) for x in zip(*threshes)]\n",
"\n",
"cases = config_cases(\n",
" lai_thresh=lai_threshes,\n",
" frt_thresh=frt_threshes,\n",
" fch_thresh=fch_threshes,\n",
" cf_thresh=cf_threshes,\n",
" ch_thresh=ch_threshes,\n",
")\n",
"print(cases)\n",
"\n",
Expand Down

0 comments on commit d187afa

Please sign in to comment.