-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgridsDefinitions.yaml
More file actions
95 lines (95 loc) · 3.46 KB
/
gridsDefinitions.yaml
File metadata and controls
95 lines (95 loc) · 3.46 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
# Add next grid this way!!!
#-------------------------------- ADD NEXT ONE BY ANALOGY
basicGrid: # give your own, distinct name for each grid
folderName: "bigGrid" # folder grid name
#define grid:
# Paramterers included in grid description:
teff: True
logg: True
vmic: True
me: True
# define searching for grid files
fluxFilesFilter: "*norm" # regexp for obtaining list of grid files with glob()
# Decoding parameters from file names:
# program reads all numbers (also in float format) in filename of flux files
# specify which number corresponds to which parameter (count from 0):
# if paramter is not included is not important
fluxNameToParameters:
teff: 1
logg: 2
vmic: 3
me: 0
multiplicationFactors:
teff: 1
logg: 0.01
vmic: 1
me: 1
# Define reading from grid file
waveFile: "refWave.dat" # File with reference wavelength, placed in folderName, if None uses waves columns
skipRows: 0 # No of rows to skip in files with fluxes
waveColumn: 0 # column with wavelenghts, count from 0
fluxColumn: 0 # column with flux, count from 0
comments: "#" # comments sign - default #
#-------------------------------- ADD NEXT ONE BY ANALOGY
lowTempGrid: # give your own, distinct name for each grid
folderName: "lowTempGrid" # folder grid name
#define grid:
# Paramterers included in grid description:
teff: True
logg: True
vmic: False
me: False
# define searching for grid files
fluxFilesFilter: "flux*" # regexp for obtaining list of grid files with glob()
# Decoding parameters from file names:
# program reads all numbers (also in float format) in filename of flux files
# specify which number corresponds to which parameter (count from 0):
# if paramter is not included is not important
fluxNameToParameters:
teff: 0
logg: 1
vmic: 2
me: 3
multiplicationFactors:
teff: 1
logg: 0.1
vmic: 1
me: 1
# Define reading from grid file
waveFile: "waveRef.dat" # File with reference wavelength, placed in folderName, if None uses waves columns
skipRows: 0 # No of rows to skip in files with fluxes
waveColumn: 0 # column with wavelenghts, count from 0
fluxColumn: 0 # column with flux, count from 0
comments: "#" # comments sign - default #
#===============================================================================
#-------------------------------- ADD NEXT ONE BY ANALOGY
# basicGrid: # give your own, distinct name for each grid
# folderName: folderName # folder grid name
# #define grid:
# # Paramterers included in grid description:
# teff: True
# logg: True
# vmic: True
# me: True
# # define searching for grid files
# fluxFilesFilter: "*gridFileTypicalEnd" # regexp for obtaining list of grid files with glob()
# # Decoding parameters from file names:
# # program reads all numbers (also in float format) in filename of flux files
# # specify which number corresponds to which parameter (count from 0):
# # if paramter is not included is not important
# fluxNameToParameters:
# teff: 0
# logg: 1
# vmic: 2
# me: 3
# multiplicationFactors:
# teff: 1
# logg: 0.1
# vmic: 1
# me: 1
# # Define reading from grid file
# waveFile: refWave.dat # File with reference wavelength, placed in folderName, if None uses waves columns
# skipRows: 0 # No of rows to skip in files with fluxes
# waveColumn: 0 # column with wavelenghts, count from 0
# fluxColumn: 0 # column with flux, count from 0
# comments: "#" # comments sign - default #