From d187afa90a87b6f1dbd18293f87bf49a9f947fbe Mon Sep 17 00:00:00 2001 From: Wei-Ting Hung <107704243+angehung5@users.noreply.github.com> Date: Tue, 6 Feb 2024 14:53:08 -0500 Subject: [PATCH] Update ch, canfrac, cf_thresh, ch_thresh --- python/examples.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/examples.ipynb b/python/examples.ipynb index 4b271c67..ad351a88 100644 --- a/python/examples.ipynb +++ b/python/examples.ipynb @@ -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",