forked from llnl/Curvallis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-complete-list.ini
More file actions
108 lines (91 loc) · 2.4 KB
/
config-complete-list.ini
File metadata and controls
108 lines (91 loc) · 2.4 KB
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
# curve_editor settings:
# All options are currently commented out. Remove the '#' to uncomment that option.
[general]
# background_file: background.dat
# curve_output_file_name: filename.dat
# eos_function: Ec
[inputs]
# in_eos_file_base: 2dData.dat
# input_file: 1dData.dat
# parabola_in
# predefined_in
[outputs]
# print_E2P
# print_P2B
# print_P2Bprime
# print_theta2gamma
# out_eos_file_base: None
# output_file_name: moved_points_out.dat
# pressure_file_name: E2P.dat
# bulk_mod_file_name: P2B.dat
# bulk_mod_prime_file_name: P2Bprime.dat
# gamma_file_name: Theta2Gamma.dat
[regions]
# do_derivative
# do_integral
# points_per_decade: 220
# region_bound: [10, 20, 100]
# region_data_points: 10
# overlap: 5
[Shifts, Limits, and Point Exclusion]
# decimate: 20
# step: 3
# t_step: 3
# x_include: [1, 30]
# x_scale: [2, 0, 100]
# x_shift: [50, 0, 100]
# y_include: [0, 300]
# y_scale: [2, 0, 100]
# y_shift: [50, 0, 100]
# t_include: [0, 20000]
# v_axis
[view]
#x_max: 100
#x_min: 10
#y_max: 200
#y_min: 0
[fitter]
# fit_type: [none, poly3, vinet]
# refine_fit: [none, none, poly5]
# scale_derivative_by: 1000
# scale_second_derivative_by: 1000
# scale_integral_by: .001
# xref: 0.0
# y_axis: E
# yref: 0.0
# rho0_guess: 3.4
# delta_p_guess: 3.6
# k0_guess: 3.6
# k0_prime_guess: 4.0
# k0_prime_prime_guess: 1.1
# lam_guess: 3.4
# e0_guess: 30.6
[automatic smoothing]
# numpoints: 5
# repeat: 5
# matchpt: 1.0
# interp: cubic
# angle: 50
###############################################################################
# This is a configuration file for curve_editor.py. This file is parsed with
# configargparse. Some format details:
# in any column starts a comment
; in any column also starts a comment (.ini style)
--- in the FIRST column starts a comment (.yaml style)
# These all set 'name' to value. 'name' is the command-line option, without the
# leading '--'. The key is case sensitive: "Name" is not "name":
# name value
# name = value # (.ini style) (white space is ignored, so name = value same as name=value)
# name: value # (yaml style)
# --name value # (argparse style)
# These all set name to True. '=', ':', and '--' work similarly:
# --name
# name
# name True
# name true
# To specify an argument with multiple values:
# NOT!
# To specify an argument with a type of 'list':
# fruit = [apple, orange, lemon]
# indexes = [1, 12, 35 , 40]
[section] # .ini-style section names are treated as comments