-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinlist_pgstar
686 lines (509 loc) · 21.7 KB
/
inlist_pgstar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
&pgstar
!pause = .true.
pgstar_interval = 1
pgstar_show_age_in_years = .true.
pgstar_show_age_in_seconds = .false.
pgstar_sleep = 0.0
! some global grid plot settings at end
pgstar_show_model_number = .false.
pgstar_show_age = .false.
!------------------------------------------------------------------------------------
Grid1_win_flag = .true.
Grid1_win_width = 12
Grid1_win_aspect_ratio = 0.666
! file output
Grid1_file_flag = .true.
Grid1_file_dir = 'png'
Grid1_file_prefix = 'png_'
Grid1_file_interval = 5 ! output when mod(model_number,Grid1_file_interval)==0
Grid1_file_width = -1 ! (inches) negative means use same value as for window
Grid1_file_aspect_ratio = -1 ! negative means use same value as for window
! reset the defaults
Grid1_plot_name(:) = ''
Grid1_plot_row(:) = 1 ! number from 1 at top
Grid1_plot_rowspan(:) = 1 ! plot spans this number of rows
Grid1_plot_col(:) = 1 ! number from 1 at left
Grid1_plot_colspan(:) = 1 ! plot spans this number of columns
Grid1_plot_pad_left(:) = 0.0 ! fraction of full window width for padding on left
Grid1_plot_pad_right(:) = 0.0 ! fraction of full window width for padding on right
Grid1_plot_pad_top(:) = 0.0 ! fraction of full window height for padding at top
Grid1_plot_pad_bot(:) = 0.0 ! fraction of full window height for padding at bottom
Grid1_txt_scale_factor(:) = 0.7 ! multiply txt_scale for subplot by this
Grid1_title = ''
Grid1_num_cols = 3 ! divide plotting region into this many equal width cols
Grid1_num_rows = 5 ! divide plotting region into this many equal height rows
Grid1_num_plots = 6 ! <= 10
Grid1_plot_name(1) = 'Text_Summary1'
Grid1_plot_row(1) = 1 ! number from 1 at top
Grid1_plot_rowspan(1) = 1 ! plot spans this number of rows
Grid1_plot_col(1) = 1 ! number from 1 at left
Grid1_plot_colspan(1) = 3 ! plot spans this number of columns
Grid1_plot_pad_left(1) = -0.03 ! fraction of full window width for padding on left
Grid1_plot_pad_right(1) = 0.0 ! fraction of full window width for padding on right
Grid1_plot_pad_top(1) = -0.06 ! fraction of full window height for padding at top
Grid1_plot_pad_bot(1) = 0.07 ! fraction of full window height for padding at bottom
Grid1_txt_scale_factor(1) = 1 ! 0.8 ! multiply txt_scale for subplot by this
Grid1_plot_name(3) = 'TRho'
Grid1_plot_row(3) = 2 ! number from 1 at top
Grid1_plot_rowspan(3) = 1 ! plot spans this number of rows
Grid1_plot_col(3) = 1 ! number from 1 at left
Grid1_plot_colspan(3) = 1 ! plot spans this number of columns
Grid1_plot_pad_left(3) = 0.00 ! fraction of full window width for padding on left
Grid1_plot_pad_right(3) = 0.08 ! fraction of full window width for padding on right
Grid1_plot_pad_top(3) = -0.04 ! fraction of full window height for padding at top
Grid1_plot_pad_bot(3) = 0.01 ! fraction of full window height for padding at bottom
Grid1_txt_scale_factor(3) = 0.7 ! multiply txt_scale for subplot by this
Grid1_plot_name(5) = 'Profile_Panels1'
Grid1_plot_row(5) = 3 ! number from 1 at top
Grid1_plot_rowspan(5) = 3 ! plot spans this number of rows
Grid1_plot_col(5) = 1 ! number from 1 at left
Grid1_plot_colspan(5) = 1 ! plot spans this number of columns
Grid1_plot_pad_left(5) = 0.00 ! fraction of full window width for padding on left
Grid1_plot_pad_right(5) = 0.10 ! fraction of full window width for padding on right
Grid1_plot_pad_top(5) = 0.05 ! fraction of full window height for padding at top
Grid1_plot_pad_bot(5) = 0 ! fraction of full window height for padding at bottom
Grid1_txt_scale_factor(5) = 0.6 ! multiply txt_scale for subplot by this
Grid1_plot_name(2) = 'TRho_Profile'
Grid1_plot_row(2) = 2 ! number from 1 at top
Grid1_plot_rowspan(2) = 1 ! plot spans this number of rows
Grid1_plot_col(2) = 2 ! number from 1 at left
Grid1_plot_colspan(2) = 1 ! plot spans this number of columns
Grid1_plot_pad_left(2) = -0.01 ! fraction of full window width for padding on left
Grid1_plot_pad_right(2) = 0.06 ! fraction of full window width for padding on right
Grid1_plot_pad_top(2) = -0.04 ! fraction of full window height for padding at top
Grid1_plot_pad_bot(2) = 0.01 ! fraction of full window height for padding at bottom
Grid1_txt_scale_factor(2) = 0.7 ! multiply txt_scale for subplot by this
Grid1_plot_name(4) = 'History_Panels1'
Grid1_plot_row(4) = 3 ! number from 1 at top
Grid1_plot_rowspan(4) = 3 ! plot spans this number of rows
Grid1_plot_col(4) = 2 ! number from 1 at left
Grid1_plot_colspan(4) = 1 ! plot spans this number of columns
Grid1_plot_pad_left(4) = 0.00 ! fraction of full window width for padding on left
Grid1_plot_pad_right(4) = 0.06 ! fraction of full window width for padding on right
Grid1_plot_pad_top(4) = 0.05 ! fraction of full window height for padding at top
Grid1_plot_pad_bot(4) = 0.0 ! fraction of full window height for padding at bottom
Grid1_txt_scale_factor(4) = 0.6 ! multiply txt_scale for subplot by this
Grid1_plot_name(6) = 'Profile_Panels3'
Grid1_plot_row(6) = 2 ! number from 1 at top
Grid1_plot_rowspan(6) = 4 ! plot spans this number of rows
Grid1_plot_col(6) = 3 ! Number from 1 at left
Grid1_plot_colspan(6) = 1 ! plot spans this number of columns
Grid1_plot_pad_left(6) = 0.04 ! fraction of full window width for padding on left
Grid1_plot_pad_right(6) = 0.06 ! fraction of full window width for padding on right
Grid1_plot_pad_top(6) = -0.04 ! fraction of full window height for padding at top
Grid1_plot_pad_bot(6) = 0 ! fraction of full window height for padding at bottom
Grid1_txt_scale_factor(6) = 0.6 ! multiply txt_scale for subplot by this
!------------------------------------------------------------------------------------
Profile_Panels3_win_flag = .true.
Profile_Panels3_title = ''
Profile_Panels3_num_panels = 4
Profile_Panels3_yaxis_name(1) = 'Abundance'
Profile_Panels3_yaxis_name(2) = 'Power'
Profile_Panels3_yaxis_name(3) = 'Mixing'
Mixing_legend_txt_scale_factor = 0.9
Profile_Panels3_txt_scale = 0.7
Profile_Panels3_yaxis_name(4) = 'logT'
Profile_Panels3_other_yaxis_name(4) = 'burn_num_iters'
Profile_Panels3_other_ymin(4) = -101d0
Profile_Panels3_other_ymax(4) = -101d0
Profile_Panels3_yaxis_name(5) = ''
Profile_Panels3_other_yaxis_name(5) = ''
Profile_Panels3_other_ymin(5) = -101d0
Profile_Panels3_other_ymax(5) = -101d0
! x-axis limits and properties
Profile_Panels3_xaxis_name = 'mass'
Profile_Panels3_xmin = 0.0
Profile_Panels3_xmax = 1.5 ! -101d0 ! 2.2
Profile_Panels3_xaxis_reversed = .false.
!Profile_Panels3_xaxis_name = 'zone'
!Profile_Panels3_xmin = 800
!Profile_Panels3_xmax = 1100
!Profile_Panels3_xaxis_reversed = .true.
!Profile_Panels3_show_grid = .true.
Profile_Panels3_show_mix_regions_on_xaxis = .true.
!------------------------------------------------------------------------------------
!Profile_Panels1_win_flag = .true.
!Profile_Panels1_file_flag = .true.
Profile_Panels1_file_dir = 'png'
Profile_Panels1_file_prefix = 'profile_panels1_'
Profile_Panels1_file_interval = 1
Profile_Panels1_file_width = -1
Profile_Panels1_file_aspect_ratio = -1
Profile_Panels1_title = ''
Profile_Panels1_txt_scale = 0.7
Profile_Panels1_num_panels = 5
Profile_Panels1_yaxis_name(1) = 'logT'
Profile_Panels1_other_yaxis_name(1) = 'logRho'
! Profile_Panels1_yaxis_name(2) = ''
! Profile_Panels1_ymin(2) = 0
! Profile_Panels1_ymax(2) = 2.2
! Profile_Panels1_other_yaxis_name(2) = ''
! Profile_Panels1_other_ymin(2) = 0
! Profile_Panels1_other_ymax(2) = 1.1
Profile_Panels1_yaxis_name(3) = 'gradT'
Profile_Panels1_ymin(3) = 0.18
Profile_Panels1_ymax(3) = 0.34
Profile_Panels1_other_yaxis_name(3) = 'grada'
Profile_Panels1_other_ymin(3) = 0.18
Profile_Panels1_other_ymax(3) = 0.34
Profile_Panels1_yaxis_name(4) = 'log_opacity'
Profile_Panels1_other_yaxis_name(4) = 'gradr'
Profile_Panels1_yaxis_name(5) = 'entropy'
Profile_Panels1_other_yaxis_name(5) = 'pgas_div_p'
! x-axis limits and properties
Profile_Panels1_xaxis_name = 'logtau'
Profile_Panels1_xmin = -101d0
Profile_Panels1_xmax = 6.1
Profile_Panels1_xaxis_reversed = .true.
!Profile_Panels1_xaxis_name = 'zone'
!Profile_Panels1_xmin = 15
!Profile_Panels1_xmax = 270
!Profile_Panels1_xaxis_reversed = .true.
!Profile_Panels1_show_grid = .true.
Profile_Panels1_show_mix_regions_on_xaxis = .true.
!------------------------------------------------------------------------------------
!TRho_Profile_win_flag = .true.
TRho_Profile_win_width = 8
TRho_Profile_win_aspect_ratio = 0.75 ! aspect_ratio = height/width
! file output
!TRho_Profile_file_flag = .true.
TRho_Profile_file_dir = 'TRho'
TRho_Profile_file_prefix = 'trho_'
TRho_Profile_file_interval = 10 ! output when `mod(model_number,TRho_Profile_file_interval)==0`
TRho_Profile_file_width = -1 ! (inches) negative means use same value as for window
TRho_Profile_file_aspect_ratio = -1 ! negative means use same value as for window
TRho_Profile_xleft = 0.15
TRho_Profile_xright = 0.85
TRho_Profile_ybot = 0.15
TRho_Profile_ytop = 0.85
TRho_Profile_txt_scale = 0.7
TRho_Profile_title = ' '
TRho_switch_to_Column_Depth = .false.
TRho_switch_to_mass = .false.
show_TRho_Profile_legend = .false.
TRho_Profile_legend_coord = 0.07
TRho_Profile_legend_fjust = 0.0
TRho_Profile_legend_disp1 = -2.0
TRho_Profile_legend_del_disp = -1.3
TRho_Profile_legend_txt_scale = 1.1
show_TRho_Profile_text_info = .false.
TRho_Profile_text_info_xfac = 0.77 ! controls x location
TRho_Profile_text_info_dxfac = 0.02 ! controls x spacing to value from text
TRho_Profile_text_info_yfac = 0.6 ! controls y location of 1st line
TRho_Profile_text_info_dyfac = -0.04 ! controls line spacing
show_TRho_Profile_mass_locs = .false.
show_TRho_accretion_mesh_borders = .false.
show_TRho_Profile_kap_regions = .false.
show_TRho_Profile_eos_regions = .false.
show_TRho_Profile_degeneracy_line = .true.
show_TRho_Profile_Pgas_Prad_line = .true.
show_TRho_Profile_burn_lines = .true.
show_TRho_Profile_burn_labels = .true.
! axis limits
TRho_Profile_xmin = -12.0
TRho_Profile_xmax = 10.0
TRho_Profile_ymin = 3.0
TRho_Profile_ymax = 10.0
! these are shown if show_TRho_Profile_mass_locs = .true.
! set all the entries
profile_mass_point_q = -1
profile_mass_point_color_index = 1
profile_mass_point_symbol = -6
profile_mass_point_symbol_scale = 1.7
profile_mass_point_str = ''
profile_mass_point_str_clr = 1
profile_mass_point_str_scale = 1.0
! set defaults
num_profile_mass_points = 3 ! max is defined in star_def (max_num_profile_mass_points)
profile_mass_point_q(1) = 0.5
profile_mass_point_color_index(1) = 1
profile_mass_point_symbol(1) = -6
profile_mass_point_str(1) = ' 0.5 M\d\(0844)\u'
profile_mass_point_str_clr(1) = 1
profile_mass_point_q(2) = 0.95
profile_mass_point_color_index(2) = 1
profile_mass_point_symbol(2) = -6
profile_mass_point_str(2) = ' 0.95 M\d\(0844)\u'
profile_mass_point_str_clr(3) = 1
profile_mass_point_q(3) = 0.999
profile_mass_point_color_index(3) = 1
profile_mass_point_symbol(3) = -6
profile_mass_point_str(3) = ' 0.999 M\d\(0844)\u'
profile_mass_point_str_clr(3) = 1
!------------------------------------------------------------------------------------
! Text_Summary windows
Text_Summary1_win_flag = .false.
Text_Summary1_win_width = 10
Text_Summary1_win_aspect_ratio = 0.15
Text_Summary1_xleft = 0.01
Text_Summary1_xright = 0.99
Text_Summary1_ybot = 0.0
Text_Summary1_ytop = 1.0
Text_Summary1_txt_scale = 0.95
Text_Summary1_title = ''
Text_Summary1_num_rows = 6 ! <= 20
Text_Summary1_num_cols = 5 ! <= 20
Text_Summary1_name(:,:) = ''
Text_Summary1_name(1,1) = 'model_number'
Text_Summary1_name(1,2) = 'Teff'
Text_Summary1_name(1,3) = 'Mass'
Text_Summary1_name(1,4) = 'H_cntr'
Text_Summary1_name(1,5) = 'H_rich'
Text_Summary1_name(2,1) = 'log_dt'
Text_Summary1_name(2,2) = 'log_R'
Text_Summary1_name(2,3) = 'lg_Mdot'
Text_Summary1_name(2,4) = 'He_cntr'
Text_Summary1_name(2,5) = 'He_core'
Text_Summary1_name(3,1) = 'star_age'
Text_Summary1_name(3,2) = 'log_L'
Text_Summary1_name(3,3) = 'eta_cntr'
Text_Summary1_name(3,4) = 'C_cntr'
Text_Summary1_name(3,5) = 'CO_core'
Text_Summary1_name(4,1) = 'log_max_T'
Text_Summary1_name(4,2) = 'log_LH'
Text_Summary1_name(4,3) = 'lg_Lnuc'
Text_Summary1_name(4,4) = 'O_cntr'
Text_Summary1_name(4,5) = 'Fe_core'
Text_Summary1_name(5,1) = 'log_cntr_T'
Text_Summary1_name(5,2) = 'log_LHe'
Text_Summary1_name(5,3) = 'lg_Lneu'
Text_Summary1_name(5,4) = 'Ne_cntr'
Text_Summary1_name(5,5) = 'zones'
Text_Summary1_name(6,1) = 'log_cntr_Rho'
Text_Summary1_name(6,2) = 'log_LZ'
Text_Summary1_name(6,3) = 'lg_Lphoto'
Text_Summary1_name(6,4) = 'Si_cntr'
Text_Summary1_name(6,5) = 'num_retries'
!------------------------------------------------------------------------------------
! Abundance profile plot
Abundance_win_flag = .true.
! window properties
Abundance_win_width = 10
Abundance_win_aspect_ratio = 0.75
Abundance_xleft = 0.15
Abundance_xright = 0.85
Abundance_ybot = 0.15
Abundance_ytop = 0.85
Abundance_txt_scale = 1.1
Abundance_title = ''
! isotopes to plot
Abundance_num_isos_to_show = 20
Abundance_which_isos_to_show(1) = 'h1'
Abundance_which_isos_to_show(2) = 'he3'
Abundance_which_isos_to_show(3) = 'he4'
Abundance_which_isos_to_show(4) = 'c12'
Abundance_which_isos_to_show(5) = 'n14'
Abundance_which_isos_to_show(6) = 'o16'
Abundance_which_isos_to_show(7) = 'ne20'
Abundance_which_isos_to_show(8) = 'mg24'
Abundance_which_isos_to_show(9) = 'si28'
Abundance_which_isos_to_show(10) = 's32'
Abundance_which_isos_to_show(11) = 'ar36'
Abundance_which_isos_to_show(12) = 'ca40'
Abundance_which_isos_to_show(13) = 'ti44'
Abundance_which_isos_to_show(14) = 'cr48'
Abundance_which_isos_to_show(15) = 'cr56'
Abundance_which_isos_to_show(16) = 'fe52'
Abundance_which_isos_to_show(17) = 'fe54'
Abundance_which_isos_to_show(18) = 'fe56'
Abundance_which_isos_to_show(19) = 'ni56'
Abundance_which_isos_to_show(20) = 'neut'
!Abundance_which_isos_to_show(22) = 'ne22'
! number and size of isotope labels along curves
num_abundance_line_labels = 4
Abundance_line_txt_scale_factor = 1.1
! number and size of isotopes on legend
Abundance_legend_max_cnt = 10
Abundance_legend_txt_scale_factor = 1.3
! yaxis limits
Abundance_log_mass_frac_min = -3.5
Abundance_log_mass_frac_max = 0.3
! file output
Abundance_file_flag = .true.
Abundance_file_dir = 'Abundance'
Abundance_file_prefix = 'abund_'
Abundance_file_width = -1 ! (inches) negative means use same value as for window
Abundance_file_aspect_ratio = -1 ! negative means use same value as for window
!------------------------------------------------------------------------------------
! power plot
Power_win_flag = .false.
Power_win_width = 10
Power_win_aspect_ratio = 0.75
Power_title = ''
Power_xleft = 0.15
Power_xright = 0.85
Power_ybot = 0.15
Power_ytop = 0.85
Power_txt_scale = 1.1
Power_title = ' '
Power_legend_max_cnt = 10
Power_legend_txt_scale_factor = 1.3 ! relative to other text
! power yaxis limits -- to override system default selections
Power_ymin = -5.0 ! -101d0 ! only used if /= -101d0
Power_ymax = 25.0 ! -101d0 ! only used if /= -101d0
! file output
Power_file_flag = .false.
Power_file_dir = 'png'
Power_file_prefix = 'power_'
Power_file_interval = 5 ! output when mod(model_number,Power_file_interval)==0
Power_file_width = -1 ! (inches) negative means use same value as for window
Power_file_aspect_ratio = -1 ! negative means use same value as for window
!------------------------------------------------------------------------------------
! mixing plot
Mixing_xmin = 0.0
Mixing_xmax = 1.6 ! -101d0
Mixing_legend_txt_scale_factor = 1.4 ! relative to other text
Mixing_show_rotation_details = .false.
!Mixing_win_flag = .true.
!Mixing_file_flag = .true.
Mixing_file_dir = 'png'
Mixing_file_prefix = 'mixing_'
Mixing_file_interval = 1 ! output when `mod(model_number,Mixing_file_interval)==0`
Mixing_file_width = -1 ! (inches) negative means use same value as for window
Mixing_file_aspect_ratio = -1 ! negative means use same value as for window
!-----------------------------------------------------------------------
! TRho window
! history of central temperature vs. density
TRho_txt_scale = 0.7
TRho_title = ''
TRho_logT_min = -101d0
TRho_logT_max = -101d0
TRho_logRho_min = -101d0
TRho_logRho_max = -101d0
show_TRho_degeneracy_line = .true.
!-----------------------------------------------------------------------
!# HR window
! history of `lg_L` vs. `lg_Teff`
HR_win_flag = .false.
HR_win_width = 6
HR_win_aspect_ratio = 0.75 ! aspect_ratio = height/width
HR_xleft = 0.15
HR_xright = 0.85
HR_ybot = 0.15
HR_ytop = 0.85
HR_txt_scale = 0.7 !1.0
HR_title = ''
! axis limits -- to override system default selections
HR_logT_min = -101d0 ! only used if /= -101d0
HR_logT_max = -101d0 ! only used if /= -101d0
HR_logL_min = -101d0 ! only used if /= -101d0
HR_logL_max = -101d0 ! only used if /= -101d0
HR_logL_margin = 0.1
HR_logT_margin = 0.1
HR_dlogT_min = -1
HR_dlogL_min = -1
HR_step_min = -1 ! only plot models with model number >= this
HR_step_max = -1 ! only plot models with model number <= this
show_HR_classical_instability_strip = .true.
show_HR_Mira_instability_region = .false.
show_HR_WD_instabilities = .false.
show_HR_target_box = .false.
HR_target_n_sigma = -3 ! -n means show sig 1..n
HR_target_logL = 0
HR_target_logL_sigma = 0
HR_target_logT = 0
HR_target_logT_sigma = 0
show_HR_annotation1 = .false.
show_HR_annotation2 = .false.
show_HR_annotation3 = .false.
HR_fname = '' ! file name for extra HR data
! Enables calling a subroutine to add extra information to a plot
! see `$MESA_DIR/star/other/pgstar_decorator.f90`
HR_use_decorator = .false.
! file output
HR_file_flag = .false.
HR_file_dir = 'png'
HR_file_prefix = 'hr_'
HR_file_interval = 5 ! output when `mod(model_number,HR_file_interval)==0`
HR_file_width = -1 ! (inches) negative means use same value as for window
HR_file_aspect_ratio = -1 ! negative means use same value as for window
!-----------------------------------------------------------------------
History_Panels1_title = ''
History_Panels1_xaxis_name = 'model_number'
History_Panels1_max_width = -1
!History_Panels1_xaxis_name = 'star_age'
!History_Panels1_max_width = 10
History_Panels1_txt_scale = 0.75
History_Panels1_xmin = -101d0
History_Panels1_xmax = -101d0
History_Panels1_dxmin = -1
History_Panels1_xaxis_reversed = .false.
History_Panels1_xaxis_log = .false.
History_Panels1_xmargin = 0.0
! ::
History_Panels1_num_panels = 4
! ::
History_Panels1_yaxis_name(1) = 'log_L'
History_Panels1_yaxis_reversed(1) = .false.
History_Panels1_ymin(1) = -101d0
History_Panels1_ymax(1) = -101d0
History_Panels1_dymin(1) = 0.1
! ::
History_Panels1_other_yaxis_name(1) = 'log_Teff'
History_Panels1_other_yaxis_reversed(1) = .false.
History_Panels1_other_ymin(1) = -101d0
History_Panels1_other_ymax(1) = -101d0
History_Panels1_other_dymin(1) = 0.1
! ::
History_Panels1_yaxis_name(2) = 'log_R'
History_Panels1_yaxis_reversed(2) = .false.
History_Panels1_ymin(2) = -101d0
History_Panels1_ymax(2) = -101d0
History_Panels1_dymin(2) = 0.1
! ::
History_Panels1_other_yaxis_name(2) = 'v_surf_km_s'
History_Panels1_other_yaxis_reversed(2) = .false.
History_Panels1_other_ymin(2) = -101d0
History_Panels1_other_ymax(2) = -101d0
History_Panels1_other_dymin(2) = 7d-5
! ::
History_Panels1_yaxis_name(3) = 'log_cntr_Rho'
History_Panels1_yaxis_reversed(3) = .false.
History_Panels1_ymin(3) = -101d0
History_Panels1_ymax(3) = -101d0
History_Panels1_dymin(3) = -1
! ::
History_Panels1_other_yaxis_name(3) = 'log_max_T'
History_Panels1_other_yaxis_reversed(3) = .false.
History_Panels1_other_ymin(3) = -101d0
History_Panels1_other_ymax(3) = -101d0
History_Panels1_other_dymin(3) = -1
! ::
History_Panels1_yaxis_name(4) = 'num_retries'
History_Panels1_yaxis_reversed(4) = .false.
History_Panels1_ymin(4) = -101d0
History_Panels1_ymax(4) = -101d0
History_Panels1_dymin(4) = -1
! ::
History_Panels1_other_yaxis_name(4) = 'log_dt'
History_Panels1_other_yaxis_reversed(4) = .false.
History_Panels1_other_ymin(4) = -101d0
History_Panels1_other_ymax(4) = -101d0
History_Panels1_other_dymin(4) = -1
!-----------------------------------------------------------------------
! some global grid plot settings
pgstar_title_scale = 1.3
pgstar_title_disp = 1.1
pgstar_title_coord = 0.5
pgstar_title_fjust = 0.5
pgstar_age_scale = 0.8
pgstar_age_disp = 3.0
pgstar_age_coord = 0.0
pgstar_age_fjust = 0.0
pgstar_xaxis_label_scale = 1.3
pgstar_left_yaxis_label_scale = 1.3
pgstar_xaxis_label_disp = 2.2
pgstar_left_yaxis_label_disp = 3.1
pgstar_right_yaxis_label_disp = 4.1
pgstar_model_scale = 0.8
pgstar_model_disp = 3.0
pgstar_model_coord = 1.0
pgstar_model_fjust = 1.0
! white_on_black flags -- true means white foreground color on black background
file_white_on_black_flag = .true.
file_device = 'png' ! options 'png' and 'vcps' for png and postscript respectively
file_extension = 'png' ! common names are 'png' and 'ps'
!file_white_on_black_flag = .false.
!file_device = 'vcps' ! options 'png' and 'vcps' for png and postscript respectively
!file_extension = 'ps' ! common names are 'png' and 'ps'
/ ! end of pgstar namelist