From 05ef6aede88b5227a2af6ca12dc1990eea6ad95c Mon Sep 17 00:00:00 2001 From: Robert Izzard <r.izzard@surrey.ac.uk> Date: Thu, 7 Nov 2019 14:50:55 +0000 Subject: [PATCH] update comments --- src/setup/cmd_line_args.h | 6 +++--- tbse | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/setup/cmd_line_args.h b/src/setup/cmd_line_args.h index aa4fefd67..366fa3b02 100644 --- a/src/setup/cmd_line_args.h +++ b/src/setup/cmd_line_args.h @@ -3006,7 +3006,7 @@ struct cmd_line_arg_t { \ ARG_SECTION_BINARY, \ "nova_timestep_accelerator_num", \ - "The nova timestep is accelerated if the nova number exceeds nova_timestep_accelerator_num. If zero or negative, acceleration is off. See also nova_timestep_accelerator_index and nova_timestep_accelerator_max.\n", \ + "The nova timestep is accelerated if the nova number exceeds nova_timestep_accelerator_num. If zero or negative, acceleration is off. See also nova_timestep_accelerator_index and nova_timestep_accelerator_max. Only used if individual_novae is on.\n", \ ARG_FLOAT, \ WTTS_USE_DEFAULT, \ &(stardata->preferences->nova_timestep_accelerator_num), \ @@ -3016,7 +3016,7 @@ struct cmd_line_arg_t { \ ARG_SECTION_BINARY, \ "nova_timestep_accelerator_index", \ - "The index at which the nova timestep is accelerated. A larger value gives longer timesteps. See also nova_timestep_accelerator_num and nova_timestep_accelerator_max.\n", \ + "The index at which the nova timestep is accelerated. A larger value gives longer timesteps. See also nova_timestep_accelerator_num and nova_timestep_accelerator_max. Only used if individual_novae is on.\n", \ ARG_FLOAT, \ WTTS_USE_DEFAULT, \ &(stardata->preferences->nova_timestep_accelerator_index), \ @@ -3026,7 +3026,7 @@ struct cmd_line_arg_t { \ ARG_SECTION_BINARY, \ "nova_timestep_accelerator_max", \ - "The nova timestep is accelerated by a factor that is capped at nova_timestep_accelerator_max. This parameter is ignored if it is zero or negative. See also nova_timestep_accelerator_num and nova_timestep_accelerator_index.\n", \ + "The nova timestep is accelerated by a factor that is capped at nova_timestep_accelerator_max. This parameter is ignored if it is zero or negative. See also nova_timestep_accelerator_num and nova_timestep_accelerator_index. Only used if individual_novae is on.\n", \ ARG_FLOAT, \ WTTS_USE_DEFAULT, \ &(stardata->preferences->nova_timestep_accelerator_max), \ diff --git a/tbse b/tbse index 351de6b6b..63000af9f 100755 --- a/tbse +++ b/tbse @@ -1182,7 +1182,8 @@ TIMESTEP_SOLVER_FACTOR=1.0 TIMESTEP_MODULATOR=1.0 ############################################################ -# Nova timestep acceleration. +# Nova timestep acceleration, used when individual_novae +# is True. # # The idea here # -- GitLab