From ecbce45d59dce0bd36478eeea55224c5a61005eb Mon Sep 17 00:00:00 2001 From: RemDelaporteMathurin Date: Sun, 8 Dec 2024 15:01:30 -0500 Subject: [PATCH] better comments --- examples/all_bin_scenario.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/all_bin_scenario.py b/examples/all_bin_scenario.py index fa23724..4925c35 100644 --- a/examples/all_bin_scenario.py +++ b/examples/all_bin_scenario.py @@ -48,9 +48,7 @@ global_data = {} processed_data = [] - # running only a subset of the bins for demonstration purposes - - ############# RUN FW BIN SIMUS ############# + # first wall bins for fw_bin in FW_bins.bins[:3]: global_data[fw_bin] = {} fw_bin_data = {"bin_index": fw_bin.index, "sub_bins": []} @@ -71,7 +69,7 @@ processed_data.append(fw_bin_data) - ############# RUN DIV BIN SIMUS ############# + # divertor bins for div_bin in Div_bins.bins[15:18]: my_model, quantities = my_hisp_model.run_bin(div_bin)