V3FIT
|
Diagnostic dot files specify geometric and auxiliary information about each diagnostic. Parsing of a diagnostic dot file begins by searching for a valid keyword. All lines before a valid keyword is reached are ignored allowing for comments and other information to be inserted in the file. Once a keyword is reached, the parsing becomes strict. The diagnostic description format is dependant on the specific keyword. All diagnostic dot files must end with an end_of_file
keyword.
This document contains information about the interferometry/polarimetry chord specifications. Chords are specified in a structured text file. This file is read in by the v3fit_input::ipch_dot_filename variable of the name list input file. Chords are specified as two verticies in either meters or radians. For polarimetry, wavelengths are specified in meters.
ip_chord_XYZ ip_chord_XYZ_int | An interferometer chord specified in Cartesian coordinates. |
ip_chord_RPhiDegZ ip_chord_RPhiDegZ_int | An interferometer chord specified in Cylindrical coordinates. |
ip_chord_XYZ_pol_rad | An polarimetry chord specified in Cartesian coordinates outputting the signal in radians. |
ip_chord_RPhiDegZ_pol_rad | An polarimetry chord specified in Cylindrical coordinates outputting the signal in radians. |
ip_chord_XYZ_pol_deg | An polarimetry chord specified in Cartesian coordinates outputting the signal in degress. |
ip_chord_RPhiDegZ_pol_deg | An polarimetry chord specified in Cylindrical coordinates outputting the signal in degress. |
All interferometry chords are specified in the following manner.
key_word
name(STRING len:data_parameters::data_short_name_length)
x1(REAL) y1(REAL) z1(REAL)
x2(REAL) y2(REAL) z2(REAL)
All Polarimetry chords are specified in the following manner with the wave length .
key_word
name(STRING len:data_parameters::data_short_name_length)
x1(REAL) y1(REAL) z1(REAL)
x2(REAL) y2(REAL) z2(REAL)
wavelength(REAL)
Reference material for the coding to parse these files can be found in the signal_dot and ipch_dot modules.