Skip to content

Commit b645ea9

Browse files
committed
Fix things that stop the default input file running
1 parent a148d5c commit b645ea9

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

STELLA_CODE/read_namelists_from_input_file/default_input_file.in

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
/
9898

9999
&physics_inputs
100-
rhostar = - 1.0
100+
rhostar = 0.0
101101
/
102102

103103
!===============================================================================
@@ -265,7 +265,7 @@
265265
&diagnostics_fluxes
266266
flux_norm = .true.
267267
write_fluxes_vs_time = .true.
268-
write_radial_fluxes = radial_variation
268+
write_radial_fluxes = .true.
269269
write_fluxes_kxkyz = .false.
270270
write_fluxes_kxky = .false.
271271
/
@@ -332,7 +332,7 @@
332332
&restart_options
333333
tstart = 0.0
334334
scale = 1.0
335-
restart_file = trim(run_name)//'.nc'
335+
! restart_file = trim(run_name)//'.nc'
336336
restart_dir = './'
337337
save_many = .true.
338338
/
@@ -342,8 +342,8 @@
342342
!===============================================================================
343343

344344
&time_trace_options
345+
tend = 10
345346
nstep = -1
346-
tend = -1.0
347347
autostop = .true.
348348
avail_cpu_time = 10000000000.0
349349
/
@@ -480,7 +480,7 @@
480480
zf_option = 'default'
481481
lr_debug_option = 'default'
482482
krook_option = 'default'
483-
krook_size = 0.0
483+
krook_size = 0
484484
rk_step = .false.
485485
nu_krook_mb = 0.0
486486
mb_debug_step = -1
@@ -536,7 +536,6 @@
536536
print_extra_info_to_terminal = .true.
537537
debug_all = .false.
538538
stella_debug = .false.
539-
ffs_solve_debug = .false.
540539
fields_all_debug = .false.
541540
fields_debug = .false.
542541
fields_fluxtube_debug = .false.

STELLA_CODE/read_namelists_from_input_file/namelist_physics_parameters.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ subroutine set_default_parameters_physics_inputs
426426

427427
implicit none
428428

429-
rhostar = -1.0
429+
rhostar = 0.0
430430

431431
end subroutine set_default_parameters_physics_inputs
432432

0 commit comments

Comments
 (0)