%=SNX 2.10 GSI 05:035:53203 GSI 04:097:07314 04:098:07499 R 00023 2 E S * * Created on: 2005.02.04-14:46:43 local time * Created at: Geographical Survey Institute * Created by: Shinobu Kurihara ( skuri@jadeite.gsi.go.jp ) * Generated by: routine WRITE_SINEX, revision date 2003.08.18 * * ----------------------------------------------------------------------------- * +FILE/REFERENCE DESCRIPTION GSI OUTPUT Single session VLBI solution CONTACT skuri@jadeite.gsi.go.jp SOFTWARE VLBI analysis system Calc/Solve, revision date 2005.02.03 HARDWARE HP9000/800 HP-UX B.11.11 INPUT VLBI experiment jd0404, database $04APR06XF version 003 -FILE/REFERENCE * * ----------------------------------------------------------------------------- * +FILE/COMMENT >>> FORMAT DESCRIPTION <<< >>> ################## <<< Sinex output implementation in the VLBI Analysis software system Calc/Solve Leonid Petrov 2003.04.22 Abstract This document describes the way how Calc/Solve writes down a listing of a VLBI solution in Sinex format. Questions and comments about this guide should be sent to: Leonid Petrov ( pet@leo.gsfc.nasa.gov ) Table of contents: 1 ................ Overview 2 ................ Deviations from the SINEX 1.00 standard 2.1 ........... New block SOLUTION/CONSTRAINT_EQUATION_INFO 2.2 ........... New block SOLUTION/CONSTRAINT_EQUATION_MATRIX 2.3 ........... New block SOLUTION/CONSTRAINT_EQUATION_VECTOR 2.4 ........... New block SOLUTION/CONSTRAINT_WEIGHT_MATRIX 2.5 ........... New block SOLUTION/DECOMPOSED_NORMAL_MATRIX BLOCK 2.6 ........... New block SOLUTION/DECOMPOSED_NORMAL_VECTOR BLOCK 2.7 ........... New block NUTATION/DATA 2.8 ........... New block PRECESSION/DATA 2.9 ........... New block SOURCE/ID 3 ................ Implementation in Solve 3.1 ........... Syntax of INCLUDE_PARAM and EXCLUDE_PARAM lists 3.2 ........... Examples of INCLUDE_PARAM and EXCLUDE_PARAM lists 3.3 ........... Treatment of station with discontinuous motion 3.4 ........... Restrictions ________________________________________________________________________________ 1 Overview ========== SINEX stands for "Solution INdependent EXchange format". This format was developed by Blewitt et al. (1994) http://www.dgfi.badw-muenchen.de/gps/sinex.html and http://alpha.fesg.tu-muenchen.de/iers/sinex/sinex_v2_appendix1.pdf for facilitating the task of combining several GPS solutions. Original design of Sinex format was made for solving this specific task. However, later this format evolved towards to a common machine-readable form of solution listings for other space geodesy techniques, VLBI and SLR, and attempts were made for overcoming flaws of the original design. This process of evolution is not yet completed, therefore, different software systems implement a little bit different flavors of Sinex format. Listings in Sinex format produced by Solve contain information about stations, sources, estimates of the parameters, their covariance matrix, constraint equation, right-hand side of constraint equations and weight matrix of constraint equations. In addition to these results, a portion of the decomposed normal matrix and normal vector can be included in the listing as well. A user has control which blocks should be included in the listing. The current implementation of the Sinex format does not allow to include in the listing any parameter which was solved for. Only some type of parameters, like station position, EOP, etc can be included. However, a user has total control which parameters among the parameters of the supported type are to be included or not included in the listing. 2 Deviations from the SINEX 1.00 standard ========================================= Solve currently writes listing in Sinex 2.10 format. Deviations from the Sinex 1.00 standard are as follows: 1) Eight new blocks were added: SOLUTION/CONSTRAINT_EQUATION_INFO SOLUTION/CONSTRAINT_EQUATION_MATRIX SOLUTION/CONSTRAINT_EQUATION_VECTOR SOLUTION/CONSTRAINT_WEIGHT_MATRIX The purpose of these four blocks is to overcome the flaw of original design of Sinex format and provide complete information about all constraints used in the solution. SOLUTION/DECOMPOSED_NORMAL_MATRIX SOLUTION/DECOMPOSED_NORMAL_VECTOR The purpose of these blocks is to provide information about transformed normal equations before applying constraints. NB: one of the three items: covariance matrix, constraint equations and decomposed normal equations is redundant: having two of them one can derive the third one. NUTATION/DATA PRECESSION/DATA The purpose of this section is to provide information about used nutation/precession model and to define parameter "estimates of nutation angles". 2) SOLUTION/STATISTICS block has new items: WEIGHTED SQUARE SUM OF O-C sum { y(T) * w * y } WRMS OF POSTFIT RESIDUALS sum { (A*e - y)(T) * w * (A*e - y) )/Sp ( w ) where y -- the difference between the observed time delay and theoretical; A -- matrix of equations of conditions; e -- vector of the parameter adjustments; w -- weight matrix; Sp -- stands for the mathematical operation of computing trace of a matrix: the sum of diagnoal elements. Summing is done over all observations used in parameter estimation. Comment: field WEIGHTED SQUARE SUM OF O-C is not computed in global mode. Meaning of other parameters: NUMBER OF OBSERVATIONS totaml number of used observables NUMBER OF UNKNOWNS total number of unknowns, including those, which are not shown in the Sinex listing SQUARE SUM OF RESIDUALS (VTPV) sum { (A*e - y)(T) * w * (A*e - y) ) VARIANCE FACTOR sum { (A*e - y)(T) * w * (A*e - y) )}/ ( N - M - Sp( Cov(A) * B(T) * z * B ) ) where Cov(A) -- covariance matrix of the entire solution (NB: Sinex listing may have only a portion of the solution) B -- matrix of equations of constraints; z -- weight matrix of contraints; N -- total number of equations of conditions (observables); M -- total number of unknowns. 3) The blocks which keep element of matrices do not have fields "Second Matrix Element" and "Third Matrix Element". The purpose of this change is to facilitate the process of creation of the listing and to reduce significantly the probability of errors. 4) SOLUTION/MATRIX_APRIORI is not provided. The reason is that Solve does not operate the notion of apriori covariance matrix. And it also uses singular constraints which cannot be reduced to the form of apriori covariance matrix. Since full information about constraints is provided in other blocks, SOLUTION/MATRIX_APRIORI is considered as an obsolete block. 2.1 New block SOLUTION/CONSTRAINT_EQUATION_INFO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ___________________________________________________________________ |S_O_L_U_T_I_O_N__C_O_N_S_T_R_A_I_T__I_N_F_O__B_L_O_C_K_____________| | | | | |__Field_________|______Description__________________|___Format_____| | | | | | Constraint | Row index for the constraint | 1X,I5 | | Equation Row | equation matrix. It must match | | | Index | the index of the constraint | | | | equation. | | |________________|___________________________________|______________| | | | | | Constraint | Identifier of the constraint | 1X,A8 | | Equation | | | | Identifier | | | |________________|___________________________________|______________| | | | | | Constraint | Index of vector constraint. | 1X,I5 | | Equation | 1 for scalar constraint. | | | Sub-index | | | | | | | |________________|___________________________________|______________| | | | | | Constraint | Description of the constraint | 1X,A40 | | Equation | | | | Description | | | |________________|___________________________________|______________| This block provides description of constraint equations. Matrix of constraint equations has dimension N_cns * N_par, where N_cns -- the number of constraint equations, N_par -- number of estimated parameters. The first field of the CONSTRAINT_EQUATION_INFO keeps the index of the constraint, the second field keeps constraint identifier. Currently, the following constraint identifiers are supported: NNT_POS -- net rotation on station position. This vector constraint defines three equations: 1: sum { Delta_X } = const 2: sum { Delta_Y } = const 3: sum { Delta_Y } = const where Delta_X, Delta_Y, Delta_Z are X, Y and Z component of the adjustment to station position. NNR_POS -- net rotation on station position. This vector constraint defines three equations: 1: sum { Phi_X } = const 2: sum { Phi_Y } = const 3: sum { Phi_Y } = const where Phi_X, Phi_Y and Phi_Z are the components of the vector of a small rotation defined as Phi = ( r x Delta r )/ |r|^2 * R_e here r -- vector of station coordinate; Delta r -- vector of adjustments to station position R_e -- Earth's equatorial radius. Units: dimensionless NNT_VEL -- net rotation on station velocity. This vector constraint defines three equations: 1: sum { Delta_X } = const 2: sum { Delta_Y } = const 3: sum { Delta_Y } = const where Delta_X, Delta_Y, Delta_Z are X, Y and Z component of the adjustment to station position. NNR_VEL -- net rotation on station velocity This vector constraint defines three equations: 1: sum { Phi_X } = const 2: sum { Phi_Y } = const 3: sum { Phi_Y } = const where Phi_X, Phi_Y and Phi_Z are the components of the vector of a small rotation defined as Phi = ( r x Delta v )/ |r|^2 * R_e here r -- vector of station coordinates; Delta r -- vector of adjustments to station velocity; R_e -- Earth's equatorial radius. Units: 1/yr NNR_SRC -- net rotation on source coordinates 1: sum { Phi_X } = const 2: sum { Phi_Y } = const 3: sum { Phi_Y } = const where Phi_X, Phi_Y and Phi_Z are the components of the vector of a small rotation EOP_XPL -- constraint on X pole coordinate EOP_YPL -- constraint on Y pole coordinate EOP_UT1 -- constraint on UT1 angle EOR_XPL -- constraint on X pole rate EOR_YPL -- constraint on Y pole rate EOR_UT1 -- constraint on UT1 rate VEL_U -- constraint on Up topocentric coordintate of station velocity VEL_E -- constraint on East topocentric coordintate of station velocity VEL_N -- constraint on North topocentric coordintate of station velocity VEL_X -- constraint on X coordinate of station velocity VEL_Y -- constraint on Y coordinate of station velocity VEL_Z -- constraint on Z coordinate of station velocity STA_U -- constraint on Up topocentric coordintate of station position STA_E -- constraint on East topocentric coordintate of station position STA_N -- constraint on North topocentric coordintate of station position STA_X -- constraint on X coordinate of station position STA_Y -- constraint on Y coordinate of station position STA_Z -- constraint on Z coordinate of station position BLC_VAL -- constraint on baselie clocks DCL_ORG -- constraint on declination of the set of certain sources GRD_OFF -- constraint on atmopshere path delay gradient offset NUT_OFF -- constraint on offset of nutation in longitude and nutation in obliquity OAT_RAT -- constraint on rate of changes of atmopshere path delay OCL_RAT -- constraint on clock drift RAS_ORG -- constraint on right ascension of the set of certain sources SRC_COO -- constraint on source right ascension and declination STA_ORG -- constraint on position of certain stations STA_TIE -- constraint on differences in position of several sites VEL_DIR -- constraint on horizontal projection of the differences in velocities of two stations VEL_ORG -- constraint on velocitiess of csertain stations VEL_SET -- constraint on linear combination of velocity components VEL_TIE -- constraint on differences in velocities of several sites VEL_VER -- constraint on vertial component of station velocity Constraints on segmented paramters STA_PWC -- constraint on site velosity in the the casewhen site position is modeled by linear spline GRD_RAT -- constraint on atmopshere path delay gradient rate ATM_RAT -- constraint on atmosphere path delay rate between segments CLO_RAT -- constraint on clock rate between segments UT1_RAT -- constraint on UT1 rate in the case of linear spline EOP parameterization XPL_RAT -- constraint on X pole coordinate in the case of linear spline EOP parameterization YPL_RAT -- constraint on Y pole coordinate in the case of linear spline EOP parameterization Constraint equation subindex is 1 for scalar constraint, like EOP_XPL and runs over components of vector constraints, like NNT_POS (1,2,3 in this example). 2.2 New block SOLUTION/CONSTRAINT_EQUATION_MATRIX ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This block keep matrix of constraint equations. Equations are organized by rows. Zero elements are omitted. _____________________________________________________________________ |__S_O_L_U_T_I_O_N__C_O_N_S_T_R_A_I_T__E_Q_U_A_T_I_O_N__B_L_O_C_K_____| | | | | |__Field___________|______Description__________________|___Format_____| | | | | | Constraint | Row index for the constraint | 1X,I5 | | equation row | equation matrix. It must match | | | Index | the index of the constraint | | | | equation. | | |__________________|___________________________________|______________| | | | | | Constraint | Column index for the Constraint | 1X,I5 | | equation | Equation. It must match the | | | column index | parameter index in the | | | | SOLUTION/ESTIMATE block for the | | | | same parameter. | | |__________________|___________________________________|______________| | | | | | Constraint | Matrix element at the location | 1X,E21.14 | | matrix element | (row index, column index). | | |__________________|___________________________________|______________| 2.3 New block SOLUTION/CONSTRAINT_EQUATION_VECTOR ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This block keeps the right-hand side of constraint equations. ___________________________________________________________________ |__S_O_L_U_T_I_O_N__C_O_N_S_T_R_A_I_T__V_A_L_U_E__B_L_O_C_K_________| | | | | |__Field_________|______Description__________________|___Format_____| | | | | | Constraint | Row index for the constraint | 1X,I5 | | Equation Row | equation vector. It must match | | | | the index of the constraint | | | | equation. | | |________________|___________________________________|______________| | | | | | Right hand | Value of right hand part of the | | side value | constraint equation. | 1X,E21.15 | |________________|___________________________________|______________| | | | | | Sigma | Reciprocal weight which is | | | | ascribed to this constraint | 1X,E21.15 | | | equation. | | |________________|___________________________________|______________| | | | 48 | |______________| 2.4 New block SOLUTION/CONSTRAINT_WEIGHT_MATRIX ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This block contains the elements of the weight matrix of constraint equations. Zero elements are omitted. ______________________________________________________________________ |_____________C_O_N_S_T_R_A_I_N_T___W_E_I_G_H_T___M_A_T_R_I_X__________| | | |__Field__________________Description_______________________Format_____| | | | | | Row index of the | Row index for the weight | 1X,I5 | | weight matrix | constraint matrix. It matches | | | of constraint | the index of the constraint | | | equations | equation. | | |___________________|___________________________________|______________| | | | | | Column index of | Column index for the weight | 1X,I5 | | the weight matrix | constraint matrix. It matches the | | | of constraint | index of the constraint equation | | | equations | | | |___________________|___________________________________|______________| | | | | | Weight matrix of | Matrix element at the location | 1X,E21.14 | | constraint | (row index, column index). | | | equations element | | | |___________________|___________________________________|______________| 2.5 New block SOLUTION/DECOMPOSED_NORMAL_MATRIX BLOCK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This block contains decomposed normal equations for the subset of parameters described in the SOLUTION/ESTIMATE block. In the case if the SOLUTION/ESTIMATE block described all parameters adjusted in the solution, decomposed normal matrix is equivalent to the full normal matrix. In the case if the SOLUTION/ESTIMATE block describes only a subset of parameters, then the decomposed normal matrix D_ii is defined as D_ii = N_ii - N_ei(T) * (C_ee + N_ee){-1} * N_ei where N_ii -- the block of normal matrix which corresponds to the equations included in the SOLUTION/ESTIMATE list; N_ee -- the block of normal matrix which corresponds to omitted parameters; N_ei -- the block of normal matrix which corresponds to the product of equations of conditions of the omitted parameters and parameters included in the SOLUTION/ESTIMATE list. C_ee -- the block of normal matrix of constraints which corresponds to omitted parameters; Solve computes D_ii as D_ii = (V_ii){-1} - C_ii where V_ii -- covariance matrix of the parameters mentioned in SOLUTION/ESTIMATE list; C_ii -- the block of normal matrix of constraints which corresponds to the parameters in SOLUTION/ESTIMATE list. It is assumed that C_ei = 0 C_ei -- the block of normal matrix of constraints which corresonds to the product of equations of constraints of the omitted parameters and parameters from the SOLUTION/ESTIMATE list. ___________________________________________________________________ |__S_O_L_U_T_I_O_N__D_E_C_O_M_P_O_S_E_D__N_O_R_M_A_L__M_A_T_R_I_X___| | | | | |__Field_________|______Description__________________|___Format_____| | | | | | Decomposed | Row index for the normal matrix. | 1X,I5 | | normal matrix | It must match the parameter index | | | row index | in the SOLUTION/ESTIMATE block | | | | for the same parameter. | | |________________|___________________________________|______________| | | | | | Decomposed | Column index for the normal matrix| 1X,I5 | | normal matrix | It must match the parameter index | | | column index | in the SOLUTION/ESTIMATE block | | | | for the same parameter. | | |________________|___________________________________|______________| | | | | | Decomposed | Matrix element at the location | 1X,E21.14 | | normal matrix | (row index, column index). | | | element | | | |________________|___________________________________|______________| 2.6 New block SOLUTION/DECOMPOSED_NORMAL_VECTOR BLOCK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This block contains decomposed right hand parts of normal equations for the subset of parameters described in the SOLUTION/ESTIMATE block. In the case if the SOLUTION/ESTIMATE block describes all parameters adjusted in the solution, the decomposed normal vector is equivalent to the full normal vector. In the case if the SOLUTION/ESTIMATE block describes only a subset of parameters, then the decomposed normal vector d_i is defined as d_i = n_i - N_ei(T) * (C_ee + N_ee){-1} * n_e where n_i -- the block of normal vector which corresponds to the equations listed in the SOLUTION/ESTIMATE; n_e -- the block of the normal vector which corresponds to the omitted parameters; N_ee -- the block of normal matrix which corresponds to omitted parameters; N_ei -- the block of normal matrix which corresponds to the product of equations of conditions of the omitted parameters and parameters from the SOLUTION/ESTIMATE list. C_ee -- the block of normal matrix of constraints which corresponds to omitted parameters; Solve computes d_i as d_i = D_i * e_i where e_i -- vector of the estimates of the parameters from the SOLUTION/ESTIMATE list. ___________________________________________________________________ |__S_O_L_U_T_I_O_N__D_E_C_O_M_P_O_S_E_D__N_O_R_M_A_L__V_E_C_T_O_R___| | | | | |__Field_________|______Description__________________|___Format_____| | | | | | Estimated | Index of the estimated parameter. | 1X,I5 | | Parameter | | | | Index | | | | | | | |________________|___________________________________|______________| | | | | | Element of | Element of the decomposed normal | 1X,E21.14 | | decomposed | ( Row Number , Column Number ). | | | normal vector | ( Row Number , Column Number ). | | |________________|___________________________________|______________| | | | 28 | |______________| 2.7 New block NUTATION/DATA ~~~~~~~~~~~~~~~~~~~~~~~~~~~ This block describes which apriori nutation model is used and what is the reference model to which the nutation angles are referred. ___________________________________________________________________ |_________________N_U_T_A_T_I_O_N___D_A_T_A___L_I_N_E_______________| | | | | |__Field_________|______Description__________________|___Format_____| | | | | | [Nutat. Code] | Code for nutation reference | 1X,A8 | | | NONE | | | | REN2000 | | | | IAU1980 | | | | IERS1996 | | | | IAU2000a | | | | IAU2000b | | |________________|___________________________________|______________| | | | | | [Nut. Usage] | Usage flag: APR or REF | 1X,A3 | | | APR means that the previous | | | | field kept the nutation model | | | | used for apriori. | | | | REF means that the previous | | | | field kept the nutation model | | | | used as a reference. | | | | NONE means that the total | | | | nutation angles are presented | | |________________|___________________________________|______________| | | | | | Comments | | 1X,A66 | |________________|___________________________________|______________| | | | 80 | |______________| 2.8 New block PRECESSION/DATA ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This block describes the apriori precession constant which was used. ___________________________________________________________________ |_________________N_U_T_A_T_I_O_N___D_A_T_A___L_I_N_E_______________| | | | | |__Field_________|______Description__________________|___Format_____| | | | | | [Prec. Code] | Code for nutation reference | 1X,A8 | | | NONE | | | | IAU1980 | | | | IAU2000 | | |________________|___________________________________|______________| | | | | | Comments | | 1X,A70 | |________________|___________________________________|______________| | | | 80 | |______________| 2.9 New block SOURCE/ID ~~~~~~~~~~~~~~~~~~~~~~~ ___________________________________________________________________ |_____________R_A_D_I_O___S_O_U_R_C_E___D_A_T_A___L_I_N_E___________| | | | | |__Field_________|______Description__________________|___Format_____| | | | | | Source Code | Call sign for a source | 1X,A4 | |________________|___________________________________|______________| | | | | | IERS name | IERS name of the radio source | 1X,A8 | |________________|___________________________________|______________| | | | | | ICRF name | ICRF name of the radion source | 1X,A16 | |________________|___________________________________|______________| | | | | | IAU name | IAU J2000.0 name of the radio | 1X,A10 | | | source | | |________________|___________________________________|______________| | | | | | IVS name | IVS name of the radio source | 1X,A8 | |________________|___________________________________|______________| | | | | | Comments | Comments or other names of the | 1X,A29 | | | radio source | | |________________|___________________________________|______________| | | | 80 | |______________| 3 Implementation in Solve ========================= Solve normally produces the listing in its own so-called "spool-format". In addition to the spool listing, Solve has a limited ability to generate listings in Sinex format. It can write the listing in Sinex format when it runs in batch mode. Description of the keyword Sinex in the control language can be found in http://gemini.gsfc.nasa.gov/solve_root/help/solve_guide_03.html#section3.13 When a user requests to apply specific constraints, Solve does not modify normal matrix immediately. Procedures of imposing constraints collect all constraint equation coefficients, weights, right hand part equations as well as constraint description in an intermediate data structure. After collecting all information about constraints Solve "applies" constraints by modifying normal matrix and normal matrix. If a Sinex output option is specified, then Solve passes this intermediate data structure to the routine which writes listing down and, thus, this subroutine has access to full information about the constraints. Solve allows a user to specify which items among ESTIMATES, COVARIANCES, CONSTRAINTS, DECOMPOSED_NORMAL_EQUATIONS or all of them are to be included in the listing together with mandatory blocks. Solve allows a user to specify which parameters are to be included in the output. Currently, Solve does not allow to include any parameter in the listing, but only one from the pre-defined list of supported parameter. 3.1 Syntax of INCLUDE_PARAM and EXCLUDE_PARAM lists ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ INCLUDE_PARAM and EXCLIDE_PARAM files contain the parameter lists. List consists of one or more lines with Solve intrinsic 20-characters long parameter names. The lines which starts from # are considered as comments. Wild-card symbols * and ? can be included. Solve check the name of each estimated parameter against INCLUDE_PARAM list. If the name matches with at least one line (except comment) then the name is flagged as "included". After that Solve check each parameter against EXCLUDE_PARM list. If it matches with at least one line (except comment) then it is flagged as "excluded". All parameters which are flagged as "included" and are not flagged as "excluded" will be included in the Sinex output. The list of intrinsic parameter names: Parameters which can be put in the listing in Sinex format: ssssssss X COMPONENT X-coordinate of station position at reference epoch ssssssss Y COMPONENT Y-coordinate of station position at reference epoch ssssssss Z COMPONENT Z-coordinate of station position at reference epoch ssssssss X VELOCITY X-coordinate of station velocity ssssssss Y VELOCITY Y-coordinate of station velocity ssssssss Z VELOCITY Z-coordinate of station velocity ssssssss Xyymmdd-COO X-coordinate of station position at epoch yymmdd ssssssss Yyymmdd-COO Y-coordinate of station position at epoch yymmdd ssssssss Zyymmdd-COO Z-coordinate of station position at epoch yymmdd ssssssss Xyymmdd-POS X-coordinate of station position at epoch yymmdd ssssssss Yyymmdd-POS Y-coordinate of station position at epoch yymmdd ssssssss Zyymmdd-POS Z-coordinate of station position at epoch yymmdd ssssssss AXIS OFFSET axis offset of hte ssssssss station X WOBBLE 0yymmddhhmm X-coordinate of pole position at epoch yymmddhhmm X WOBBLE 1yymmddhhmm Time derivative of X pole coordinate at yymmddhhmm Y WOBBLE 0yymmddhhmm Y-coordinate of pole position at epoch yymmddhhmm Y WOBBLE 1yymmddhhmm Time derivative of Y pole coordinate at yymmddhhmm UT1-TAI 0yymmddhhmm UT1 angle at epoch yymmddhhmm UT1-TAI 1yymmddhhmm First time derivative of UT1 angle at epoch yymmddhhmm LONGITUDE NUTATION Nutation in longitude OBLIQUITY NUTATION Nutation in obliquity qqqqqqqq RIGHT ASCEN Right ascension at J2000.0 epoch qqqqqqqq DECLINATION Declination at J2000.0 epoch qqqqqqqq RIGHT ASC V Proper motion in right ascension qqqqqqqq DEC VELO Proper motion in declination Other parameters which the current version of Solve cannot put in the listing in Sinex format: ssssssssA0yymmddhhmm Atmosphere path delay at epoch yymmddhhmm ssssssssa0yymmddhhmm Atmosphere path delay at epoch yymmddhhmm ssssssssC0yymmddhhmm Global clock offset at epoch yymmddhhmm ssssssssC1yymmddhhmm Global clock rate at epoch yymmddhhmm ssssssssC2yymmddhhmm Global clock rate drift at epoch yymmddhhmm ssssssss--ssssssss C baseline dependent clocks ssssssssNGyymmddhhmm Atmosphere gradient in north direction ssssssssEGyymmddhhmm Atmosphere gradient in east direction X WOBBLE 2yymmddhhmm Second time derivative of X pole coordinate at yymmddhhmm Y WOBBLE 2yymmddhhmm Second time derivative of Y pole coordinate at yymmddhhmm UT1-TAI 2yymmddhhmm Second time derivative of UT1 angle at epoch yymmddhhmm Gamma Relativistic PPN parameter gamma where "ssssssss" stands for the IVS station name "qqqqqqqq" stands for the IVS source name "yyddmmhhss" stands for time epoch like 980729113459 -- July 29, 1998 11 hours 34 minutes 59 seconds. 3.2 Examples of INCLUDE_PARAM and EXCLUDE_PARAM lists ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1. daily_inc.bsc # # -- Include parameters which will be put in Sinex listing # # The following parameters are to be included in the Sinex listing: # # 1) Station coordinates # 2) pole coordinates # 3) UT1 # 4) rate of change of pole coordinates # 5) rate of change of UT1 # 6) daily nutation angles # ?????????X COMPONENT ?????????Y COMPONENT ?????????Z COMPONENT ?????????X??????-COO ?????????Y??????-COO ?????????Z??????-COO ?????????X??????-POS ?????????Y??????-POS ?????????Z??????-POS X WOBBLE 0* X WOBBLE 1* Y WOBBLE 0* Y WOBBLE 1* UT1-TAI 0* UT1-TAI 1* LONGITUDE NUTATION OBLIQUITY NUTATION 2. daily_exc.bsc # # -- Exclude parameters which will be put in Sinex listing # # Nothing to exclude # 3. daily_esc_notigo.bsc # # -- Exclude parameters which will be put in Sinex listing # # All parameters related to station TIGOCONC are excluded # # (NB: no common constraint equations with other stations can be # imposed if computation of the decomposed normal matrix is required ) # TIGOCONC* 3.3 Treatment of station with discontinuous motion ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ It is an empirical fact that some stations has a quasi-instant motion due to seismic events and rails changes. It is an analyst who determines the appropriate model for handing such stations. In the case if an analyst trusts to results of the measurements of such a motion by an independent technique, f.e. results of local survey before and after rails repairing, then position of the station is modeled by one parameter, and the motion of the station is described by the set of eccentricity values at the epochs before and after the motion. If an analyst does not trust to independent measurements, or such measurements are unavailable, f.e. in the case of seismic motion, then coordinates of such station are described by a model X = a1*B0(t0,t1) + a2*B0(t1,t2) + ... + b*(t-tref) where B0 -- a basis spline of the 0-th order on the range t0, t1 ( it is 1 at the range [t0, t1], and 0 otherwise ) tref -- reference epoch; t0 -- epoch of the first observations; t1, t2 ... -- epoch of discontinuities. Parameters a1, a2 ... have the same parameter name STAX, STAY, STAZ but they are distinguished by sub-index 1,2... in the field SBIN (former name SOLN). This field is used in sections SITE/EPOCHS, SITE/APRIORI, SITE/ESTIMATES. If the station did not have discontinuity in the motion than SBIN always has the value 1. 3.4 Restrictions ~~~~~~~~~~~~~~~~ The current implementation (2002.10.04) cannot write the listing in Sinex format in several cases: 1) Constraint NO_NET_TRANSLATION is not supported. Use NO_NET_TRANSLATION_POSITION instead of that. 2) Suppressions VELOCITIES NO STATIONS NO SOURCES NO PROPER_MOTIONS NO 3) Solve cannot put in the listing site position modeled by linear spline. 4) Currently, Solve can include in Sinex listing global parameters if it runs in global mode and local parametes if it runs in independent mode. It cannot include local parameters if it runs in global mode. This restriction may be lifted in the future. 5) Solve cannot include in the listing in Sinex format second and higher order UT1 and polar motion time derivatives. 6) Solve cannot include user parameters in the listing in Sinex format, but can include user constraints. 7) No common constraints between included and not included parameters can be imposed if computation of decomposed normal matrix is required. Solve will issue a warning if a constraint equation has non-zero elements for the parameters from both groups of included and not included parameters in the case if computation of a decomposed normal matrix is required, and will issue an error message and stop if the decomposed normal matrix is to be included in the sinex listing. -FILE/COMMENT * * ----------------------------------------------------------------------------- * +INPUT/ACKNOWLEDGEMENTS GSI Geographical Survey Institute, Geodetic Department, VLBI group -INPUT/ACKNOWLEDGEMENTS * * ----------------------------------------------------------------------------- * +SITE/ID *Code PT Domes____ T Station description___ Approx_lon_ Approx_lat_ App_h__ 7348 A 21742S002 R AIRA Aira, Kagoshi 40 35 59.5 31 49 25.7 323.1 7347 A 21732S004 R CHICHI10 10-m at Chich 52 11 42.0 27 04 02.0 108.3 7361 A 21747S002 R GIFU11 11-m at Gifu 46 44 13.4 35 28 03.3 60.9 7345 A 21730S007 R TSUKUB32 32-m at Tsuku 50 05 19.5 36 06 11.3 85.6 7362 A 21702S012 R VERAMZSW 20-m NAOJ VER 51 07 57.2 39 08 00.7 117.3 -SITE/ID * * ----------------------------------------------------------------------------- * +SOURCE/ID *Code IERS nam ICRF designator IAU name IVS name 0001 0003-066 J000613.8-062335 J0006-0623 0003-066 0002 0014+813 J001708.4+813508 J0017+8135 0014+813 0003 0059+581 J010245.7+582411 J0102+5824 0059+581 0004 0104-408 J010645.1-403419 J0106-4034 0104-408 0005 0133+476 J013658.5+475129 J0136+4751 0133+476 0006 0201+113 J020346.6+113445 J0203+1134 0201+113 0007 0202+149 J020450.4+151411 J0204+1514 0202+149 0008 0208-512 J021046.2-510101 J0210-5101 0208-512 0009 0235+164 J023838.9+163659 J0238+1636 0235+164 0010 0316+413 J031948.1+413042 J0319+4130 3C84 0011 0336-019 J033930.9-014635 J0339-0146 CTA26 0012 0355+508 J035929.7+505750 J0359+5057 NRAO150 0013 0405-385 J040659.0-382628 J0406-3826 0405-385 0014 0434-188 J043701.4-184448 J0437-1844 0434-188 0015 0454-234 J045703.1-232452 J0457-2324 0454-234 0016 0528+134 J053056.4+133155 J0530+1331 0528+134 0017 0537-441 J053850.3-440508 J0538-4405 0537-441 0018 0552+398 J055530.8+394849 J0555+3948 0552+398 0019 0602+673 J060752.6+672055 J0607+6720 0602+673 0020 0607-157 J060940.9-154240 J0609-1542 0607-157 0021 0642+449 J064632.0+445116 J0646+4451 0642+449 0022 0718+792 J072611.7+791131 J0726+7911 0718+793 0023 0727-115 J073019.1-114112 J0730-1141 0727-115 0024 0749+540 J075301.3+535259 J0753+5352 0749+540 0025 0808+019 J081126.7+014652 J0811+0146 0808+019 0026 0823+033 J082550.3+030924 J0825+0309 0823+033 0027 0851+202 J085448.8+200630 J0854+2006 OJ287 0028 0923+392 J092703.0+390220 J0927+3902 4C39.25 0029 0953+254 J095649.8+251516 J0956+2515 OK290 0030 0955+476 J095819.6+472507 J0958+4725 0955+476 0031 1034-293 J103716.0-293402 J1037-2934 1034-293 0032 1044+719 J104827.6+714335 J1048+7143 1044+719 0033 1053+815 J105811.5+811432 J1058+8114 1053+815 0034 1124-186 J112704.3-185717 J1127-1857 1124-186 0035 1128+385 J113053.2+381518 J1130+3815 1128+385 0036 1144-379 J114701.3-381211 J1147-3812 1144-379 0037 1226+023 J122906.6+020308 J1229+0203 3C273B 0038 1228+126 J123049.4+122328 J1230+1223 3C274 0039 1300+580 J130252.4+574837 J1302+5748 1300+580 0040 1302-102 J130533.0-103319 J1305-1033 1302-102 0041 1308+326 J131028.6+322043 J1310+3220 1308+326 0042 1334-127 J133739.7-125724 J1337-1257 1334-127 0043 1357+769 J135755.3+764321 J1357+7643 1357+769 0044 1404+286 J140700.3+282714 J1407+2827 OQ208 0045 1451-375 J145427.4-374733 J1454-3747 1451-375 0046 1519-273 J152237.6-273010 J1522-2730 1519-273 0047 1606+106 J160846.2+102907 J1608+1029 1606+106 0048 1611+343 J161341.0+341247 J1613+3412 1611+343 0049 1622-253 J162546.8-252738 J1625-2527 1622-253 0050 1641+399 J164258.8+394836 J1642+3948 3C345 0051 1726+455 J172727.6+453039 J1727+4530 1726+455 0052 1739+522 J174036.9+521143 J1740+5211 1739+522 0053 1741-038 J174358.8-035004 J1743-0350 1741-038 0054 1749+096 J175132.8+093900 J1751+0939 1749+096 0055 1803+784 J180045.6+782804 J1800+7828 1803+784 0056 1920-211 J192332.1-210433 J1923-2104 1920-211 0057 1921-293 J192451.0-291430 J1924-2914 1921-293 0058 1923+210 J192559.6+210626 J1925+2106 1923+210 0059 1954-388 J195759.8-384506 J1957-3845 1954-388 0060 2121+053 J212344.5+053522 J2123+0535 2121+053 0061 2128-123 J213135.2-120704 J2131-1207 2128-123 0062 2134+004 J213638.5+004154 J2136+0041 2134+00 0063 2136+141 J213901.3+142335 J2139+1423 2136+141 0064 2145+067 J214805.4+065738 J2148+0657 2145+067 0065 2201+315 J220314.9+314538 J2203+3145 2201+315 0066 2223-052 J222547.2-045701 J2225-0457 3C446 0067 2243-123 J224618.2-120651 J2246-1206 2243-123 0068 2251+158 J225357.7+160853 J2253+1608 3C454.3 0069 2255-282 J225805.9-275821 J2258-2758 2255-282 -SOURCE/ID * * ----------------------------------------------------------------------------- * +SITE/RECEIVER *Code PT SBIN T Data_Start__ Data_End____ Receiver Type_______ S/N__ Firmware_ID 7348 A 1 R 04:097:07314 04:098:07499 ----VLBI Station---- --NM- -----NA---- 7347 A 1 R 04:097:07314 04:098:07499 ----VLBI Station---- --NM- -----NA---- 7361 A 1 R 04:097:08414 04:098:07189 ----VLBI Station---- --NM- -----NA---- 7345 A 1 R 04:097:07314 04:098:07499 ----VLBI Station---- --NM- -----NA---- 7362 A 1 R 04:097:07314 04:098:07499 ----VLBI Station---- --NM- -----NA---- -SITE/RECEIVER * * ----------------------------------------------------------------------------- * +SITE/ANTENNA *Code PT SBIN T Data_Start__ Data_End____ Receiver Type_______ S/N__ 7348 A 1 R 04:097:07314 04:098:07499 ----VLBI Station---- --NM- 7347 A 1 R 04:097:07314 04:098:07499 ----VLBI Station---- --NM- 7361 A 1 R 04:097:08414 04:098:07189 ----VLBI Station---- --NM- 7345 A 1 R 04:097:07314 04:098:07499 ----VLBI Station---- --NM- 7362 A 1 R 04:097:07314 04:098:07499 ----VLBI Station---- --NM- -SITE/ANTENNA * * ----------------------------------------------------------------------------- * +SITE/ECCENTRICITY *Code PT SBIN T Data_Start__ Data_End____ typ Apr --> Benchmark (m)_______ 7348 A 1 R 04:097:07314 04:098:07499 XYZ 0.0000 0.0000 0.0000 7347 A 1 R 04:097:07314 04:098:07499 XYZ 0.0000 0.0000 0.0000 7361 A 1 R 04:097:08414 04:098:07189 XYZ 0.0000 0.0000 0.0000 7345 A 1 R 04:097:07314 04:098:07499 XYZ 0.0000 0.0000 0.0000 7362 A 1 R 04:097:07314 04:098:07499 XYZ 0.0000 0.0000 0.0000 -SITE/ECCENTRICITY * * ----------------------------------------------------------------------------- * +SOLUTION/EPOCHS *Code PT SBIN T Data_start__ Data_end____ Mean_epoch__ 7348 A 1 R 04:097:07314 04:098:07499 04:097:50131 7347 A 1 R 04:097:07314 04:098:07499 04:097:50339 7361 A 1 R 04:097:08414 04:098:07189 04:097:38834 7345 A 1 R 04:097:07314 04:098:07499 04:097:48714 7362 A 1 R 04:097:07314 04:098:07499 04:097:49926 -SOLUTION/EPOCH * * ----------------------------------------------------------------------------- * +NUTATION/DATA IERS1996 APR IERS1996 apriori nutation expansion was used NONE REF Total nutation angles are reported in estimation block -NUTATION/DATA * * ----------------------------------------------------------------------------- * +PRECESSION/DATA IERS1996 apriori precession constant and obliquity rates were used -PRECESSION/DATA * * ----------------------------------------------------------------------------- * +SOLUTION/STATISTICS * Units for WRMS: sec NUMBER OF OBSERVATIONS 1484 NUMBER OF UNKNOWNS 509 WEIGHTED SQUARE SUM OF O-C 1.06328461512587D+13 SQUARE SUM OF RESIDUALS (VTPV) 1.81707590054888D+03 VARIANCE FACTOR 1.48939320246600D+00 WRMS OF POSTFIT RESIDUALS 4.46617067354218D-11 -SOLUTION/STATISTICS * * ----------------------------------------------------------------------------- * +SOLUTION/APRIORI *Index Type__ CODE PT SBIN Ref_epoch___ Unit S Apriori_value________ Constraint_ 1 STAX 7348 A 1 04:097:50131 m 2 -3.53021939698879D+06 0.00000D+00 2 STAY 7348 A 1 04:097:50131 m 2 4.11879747907318D+06 0.00000D+00 3 STAZ 7348 A 1 04:097:50131 m 2 3.34401561515228D+06 0.00000D+00 4 STAX 7347 A 1 04:097:50339 m 2 -4.49061827376642D+06 0.00000D+00 5 STAY 7347 A 1 04:097:50339 m 2 3.48390842023888D+06 0.00000D+00 6 STAZ 7347 A 1 04:097:50339 m 2 2.88489921350794D+06 0.00000D+00 7 STAX 7361 A 1 04:097:38834 m 2 -3.78712332977110D+06 0.00000D+00 8 STAY 7361 A 1 04:097:38834 m 2 3.56418163059807D+06 0.00000D+00 9 STAZ 7361 A 1 04:097:38834 m 2 3.68027473190027D+06 0.00000D+00 10 STAX 7345 A 1 04:097:48714 m 2 -3.95740878771504D+06 0.00000D+00 11 STAY 7345 A 1 04:097:48714 m 2 3.31022944301651D+06 0.00000D+00 12 STAZ 7345 A 1 04:097:48714 m 2 3.73749475181594D+06 0.00000D+00 13 STAX 7362 A 1 04:097:49926 m 2 -3.85724178273746D+06 0.00000D+00 14 STAY 7362 A 1 04:097:49926 m 2 3.10878480559763D+06 0.00000D+00 15 STAZ 7362 A 1 04:097:49926 m 2 4.00390049239116D+06 0.00000D+00 16 XPO ---- - 1 04:097:50460 mas 2 -1.40546388920934D+02 0.00000D+00 17 XPOR ---- - 1 04:097:50460 masD 2 4.00000000091338D-01 0.00000D+00 18 YPO ---- - 1 04:097:50460 mas 2 3.35252000076876D+02 0.00000D+00 19 YPOR ---- - 1 04:097:50460 masD 2 2.88000000065758D+00 0.00000D+00 20 UT1 ---- - 1 04:097:50460 ms 2 -3.24408087770835D+04 0.00000D+00 21 LOD ---- - 1 04:097:50460 ms 2 1.47496179419084D+00 -.00000D+00 22 NUT_LN ---- - 1 04:097:48339 mas 2 -1.23507887358364D+04 0.00000D+00 23 NUT_OB ---- - 1 04:097:48339 mas 2 7.29556862189689D+03 0.00000D+00 -SOLUTION/APRIORI * * ----------------------------------------------------------------------------- * +SOLUTION/ESTIMATE *Index TYPE__ CODE PT SBIN Ref_epoch___ Unit S Total_value__________ Formal_erro 1 STAX 7348 A 1 04:097:50131 m 2 -3.53021939908862D+06 1.83218D-03 2 STAY 7348 A 1 04:097:50131 m 2 4.11879743903229D+06 2.06872D-03 3 STAZ 7348 A 1 04:097:50131 m 2 3.34401560230906D+06 1.77368D-03 4 STAX 7347 A 1 04:097:50339 m 2 -4.49061831960610D+06 1.24825D-03 5 STAY 7347 A 1 04:097:50339 m 2 3.48390841516758D+06 9.50336D-04 6 STAZ 7347 A 1 04:097:50339 m 2 2.88489916269504D+06 1.25973D-03 7 STAX 7361 A 1 04:097:38834 m 2 -3.78712333091867D+06 4.13911D-03 8 STAY 7361 A 1 04:097:38834 m 2 3.56418166401542D+06 3.76274D-03 9 STAZ 7361 A 1 04:097:38834 m 2 3.68027487350547D+06 4.02106D-03 10 STAX 7345 A 1 04:097:48714 m 2 -3.95740874533177D+06 2.52918D-03 11 STAY 7345 A 1 04:097:48714 m 2 3.31022943993184D+06 2.15410D-03 12 STAZ 7345 A 1 04:097:48714 m 2 3.73749469304598D+06 2.22165D-03 13 STAX 7362 A 1 04:097:49926 m 2 -3.85724177579288D+06 2.87224D-03 14 STAY 7362 A 1 04:097:49926 m 2 3.10878482049876D+06 2.56277D-03 15 STAZ 7362 A 1 04:097:49926 m 2 4.00390047335853D+06 3.08374D-03 16 XPO ---- - 1 04:097:50460 mas 2 -1.40621389283525D+02 8.03017D-02 17 XPOR ---- - 1 04:097:50460 masD 2 3.48276663792588D+00 3.46085D+00 18 YPO ---- - 1 04:097:50460 mas 2 3.35472688160778D+02 8.00407D-02 19 YPOR ---- - 1 04:097:50460 masD 2 5.42047656134341D+00 3.31984D+00 20 UT1 ---- - 1 04:097:50460 ms 2 -3.24407830572085D+04 6.51516D-03 21 LOD ---- - 1 04:097:50460 ms 2 1.42489166743039D+00 2.65696D-01 22 NUT_LN ---- - 1 04:097:48339 mas 2 -1.23515668157695D+04 1.27673D+00 23 NUT_OB ---- - 1 04:097:48339 mas 2 7.29523102646811D+03 3.16416D-01 -SOLUTION/ESTIMATE * * ----------------------------------------------------------------------------- * +SOLUTION/MATRIX_ESTIMATE L COVA * Ind1 Ind2 Covariance(ind1,ind2) 1 1 3.35689072445796D-06 2 1 -2.08701084590513D-06 2 2 4.27961320816440D-06 3 1 -2.08008569351672D-06 3 2 1.87323255625710D-06 3 3 3.14594599364482D-06 4 1 -1.18946364071984D-07 4 2 -7.23622085777790D-07 4 3 -5.16712164533057D-07 4 4 1.55812181867898D-06 5 1 -5.95595492140799D-07 5 2 1.76331167758243D-07 5 3 -1.65686051370944D-08 5 4 -2.30103055147436D-07 5 5 9.03138085332379D-07 6 1 -4.79216936465505D-07 6 2 1.67893528194641D-07 6 3 4.17057456022967D-07 6 4 4.55624327470343D-07 6 5 2.52613265894925D-08 6 6 1.58692095099200D-06 7 1 -6.26340648493548D-06 7 2 6.27868093918222D-06 7 3 5.18489958392304D-06 7 4 -1.27141076340003D-06 7 5 5.72853780517234D-07 7 6 7.78133995693419D-07 7 7 1.71321951952565D-05 8 1 5.23416527233356D-06 8 2 -5.96698203270482D-06 8 3 -4.64410734035875D-06 8 4 7.54583344062795D-07 8 5 -9.18820175152636D-07 8 6 -7.93445301209308D-07 8 7 -1.33905369025663D-05 8 8 1.41582477540663D-05 9 1 5.34420822123877D-06 9 2 -5.70407382639722D-06 9 3 -5.84825221550183D-06 9 4 6.13123309601414D-07 9 5 -7.73711495036008D-07 9 6 -1.40647500288476D-06 9 7 -1.37691564199954D-05 9 8 1.24664899082964D-05 9 9 1.61689075991160D-05 10 1 -3.03723917647595D-07 10 2 4.61099245015273D-07 10 3 1.38751672173817D-07 10 4 -1.14491900120034D-06 10 5 8.22618831130938D-07 10 6 6.13661986834734D-07 10 7 -9.89538441768712D-07 10 8 7.34065095504907D-07 10 9 6.30706689615487D-07 10 10 6.39673633593799D-06 11 1 3.15178949770499D-08 11 2 -5.26945967165370D-07 11 3 -2.07145845325012D-07 11 4 1.03303319468628D-06 11 5 -6.70049097761899D-07 11 6 -4.26562876853479D-07 11 7 6.31024091275753D-07 11 8 -7.76818289857297D-07 11 9 -5.49673897832711D-07 11 10 -4.55923408880192D-06 11 11 4.64016295642878D-06 12 1 1.91164347661853D-07 12 2 -4.34561767025180D-07 12 3 -2.31444204441275D-07 12 4 1.08028224309458D-06 12 5 -7.25523014344934D-07 12 6 -3.93480048349588D-07 12 7 5.73822690137566D-07 12 8 -5.22672222402446D-07 12 9 -7.23457524193438D-07 12 10 -4.53575533979053D-06 12 11 3.72337469551710D-06 12 12 4.93574256963282D-06 13 1 3.31219035012037D-06 13 2 -3.90903037660553D-06 13 3 -2.71127837312402D-06 13 4 1.00638808642390D-06 13 5 -5.91946584152592D-07 13 6 -1.38807223726702D-06 13 7 -8.61549313457204D-06 13 8 6.67400535129170D-06 13 9 7.18836550309724D-06 13 10 -3.95303537717231D-06 13 11 2.85904620042770D-06 13 12 2.68598693659148D-06 13 13 8.24976279879667D-06 14 1 -2.60803602309995D-06 14 2 2.06622850897971D-06 14 3 3.01768325765774D-06 14 4 -8.27337616389720D-07 14 5 5.05108136572962D-07 14 6 1.02296381331888D-06 14 7 5.90179355585217D-06 14 8 -6.49056469520266D-06 14 9 -5.43346733933134D-06 14 10 2.54260450749693D-06 14 11 -2.66699497972397D-06 14 12 -2.04195340093965D-06 14 13 -5.00868856412769D-06 14 14 6.56778445958541D-06 15 1 -2.97232064336761D-06 15 2 4.09372569458678D-06 15 3 2.51299928028222D-06 15 4 -1.60857249916211D-06 15 5 1.47216201213016D-06 15 6 -2.20235660396167D-07 15 7 7.22773008744078D-06 15 8 -6.50233257789705D-06 15 9 -8.18620892820002D-06 15 10 3.15539828340636D-06 15 11 -2.54248431350918D-06 15 12 -3.58903153745634D-06 15 13 -5.80073194334477D-06 15 14 3.45550920985024D-06 15 15 9.50948041996669D-06 16 1 -5.06649704501832D-07 16 2 2.34063883437651D-06 16 3 -1.89773153923351D-06 16 4 -1.53116464728016D-06 16 5 -2.89615562634221D-06 16 6 3.72937119899526D-06 16 7 2.00646364422880D-06 16 8 1.52538651377140D-06 16 9 1.44147755204766D-06 16 10 8.73200822040486D-06 16 11 -2.15911401229339D-07 16 12 -1.57675802527465D-06 16 13 -8.72863934101910D-06 16 14 -7.62088060140257D-07 16 15 -1.71936590877365D-06 16 16 6.44836262046954D-03 17 1 2.40785586067591D-04 17 2 -1.59599006739137D-05 17 3 -2.37859046360326D-04 17 4 -2.61011943153819D-04 17 5 9.77166086881057D-05 17 6 -2.92152628191488D-04 17 7 -5.01627773840046D-04 17 8 5.10310642241955D-04 17 9 5.90990953283480D-04 17 10 4.82806481901958D-04 17 11 -4.14869412779917D-04 17 12 -2.96541021126409D-04 17 13 3.92923778477791D-05 17 14 -1.76709547246092D-04 17 15 2.35347230987992D-04 17 16 1.29941350086298D-03 17 17 1.19775149892598D+01 18 1 -2.20626866532949D-06 18 2 -6.17619267099365D-07 18 3 1.55776456946023D-06 18 4 6.98869239603987D-07 18 5 6.86739141729540D-06 18 6 -1.91777551481669D-06 18 7 -1.02976945940012D-06 18 8 -2.90633312962258D-06 18 9 -2.78674088966739D-06 18 10 3.18076887038407D-07 18 11 -8.79179169357141D-06 18 12 -7.19768031705459D-06 18 13 2.21121852267025D-06 18 14 5.47014776790801D-06 18 15 1.03139659449389D-05 18 16 2.21288392040996D-04 18 17 -1.66838289686026D-03 18 18 6.40651106739570D-03 19 1 -1.92447068215953D-05 19 2 1.17656726761553D-04 19 3 -8.52989619777158D-05 19 4 3.38214577146377D-05 19 5 1.36635773269602D-05 19 6 6.66087744652495D-05 19 7 -6.98729241021064D-05 19 8 -2.27809053755586D-04 19 9 -5.16624421229376D-06 19 10 2.18685380493394D-04 19 11 2.23190234443753D-05 19 12 6.06544943360285D-05 19 13 -1.63775920047615D-04 19 14 7.33426285927990D-05 19 15 -3.64039465566902D-05 19 16 -2.20746509008355D-03 19 17 3.68221175162605D+00 19 18 2.86234622894394D-03 19 19 1.10213273096314D+01 20 1 1.11258004084595D-07 20 2 -1.23528326213432D-07 20 3 -1.02058281105541D-08 20 4 1.60147941191904D-07 20 5 3.79474176252535D-07 20 6 -1.58437386036924D-07 20 7 -2.95743998752583D-07 20 8 -1.13639180202729D-07 20 9 -3.70144984492257D-08 20 10 -5.95254797878310D-07 20 11 -2.21830744487321D-07 20 12 -9.57025058807844D-08 20 13 6.16034707948044D-07 20 14 7.68753694779337D-08 20 15 3.00043604168161D-07 20 16 1.89139540521001D-05 20 17 -1.11375755587965D-04 20 18 -2.24112071671854D-05 20 19 1.91542332737201D-04 20 20 4.24473562797154D-05 21 1 -2.60748748502770D-05 21 2 1.70154354561156D-05 21 3 9.65065773463257D-06 21 4 1.60319398467765D-05 21 5 6.68862969650871D-06 21 6 2.12081450010907D-05 21 7 3.27294707483364D-05 21 8 -6.24239768364992D-05 21 9 -4.62661340538287D-05 21 10 9.34674632902425D-06 21 11 7.63535024994926D-06 21 12 9.45395335568993D-06 21 13 -3.20662196640025D-05 21 14 3.10293002633790D-05 21 15 5.97181743204577D-06 21 16 -6.10199504057280D-05 21 17 -4.20094661256938D-01 21 18 8.68090869389287D-05 21 19 5.11513478364900D-01 21 20 3.79428305480750D-06 21 21 7.05942636869963D-02 22 1 1.08133250198538D-04 22 2 -2.63368230510122D-05 22 3 -5.42270271284681D-05 22 4 3.32880711447597D-05 22 5 -1.29898024407401D-04 22 6 2.71524309109770D-05 22 7 -9.20965973575855D-05 22 8 3.94874141320328D-05 22 9 1.79816696418020D-04 22 10 -2.18838591671383D-04 22 11 2.46307361858402D-04 22 12 1.17935366835030D-04 22 13 1.69625519101032D-04 22 14 -1.29831662994694D-04 22 15 -2.70282630567152D-04 22 16 -2.33700716002362D-03 22 17 -7.89816424356660D-01 22 18 2.99893065807141D-03 22 19 1.04932721842389D+00 22 20 2.39392837260961D-04 22 21 7.46225910834912D-03 22 22 1.63003719762202D+00 23 1 -1.65408874846488D-05 23 2 -6.18941250890518D-06 23 3 2.30726440461463D-07 23 4 6.97077161822188D-06 23 5 7.98920338889470D-06 23 6 -2.63253703716708D-08 23 7 8.04769578095277D-06 23 8 -2.28846003418340D-05 23 9 -6.68551649657641D-06 23 10 1.27859776000074D-06 23 11 1.66725323414797D-05 23 12 5.01828284667284D-06 23 13 1.89089601111007D-07 23 14 4.40661879359404D-06 23 15 1.40762597346840D-06 23 16 -6.36812301061729D-05 23 17 1.49064687007353D-01 23 18 1.92605517807510D-05 23 19 4.41821244557054D-02 23 20 1.81201424783273D-06 23 21 -4.78678426808647D-03 23 22 -1.61310785790917D-02 23 23 1.00118986817000D-01 -SOLUTION/MATRIX_ESTIMATE L COVA * * ----------------------------------------------------------------------------- * +SOLUTION/CONSTRAINT_INFO *Index Cns_abr Subind Unit Description_of_constraint 1 CLO_RATE 1 d/l Clock rate between segments 2 CLO_RATE 2 d/l Clock rate between segments 3 CLO_RATE 3 d/l Clock rate between segments 4 CLO_RATE 4 d/l Clock rate between segments 5 CLO_RATE 5 d/l Clock rate between segments 6 CLO_RATE 6 d/l Clock rate between segments 7 CLO_RATE 7 d/l Clock rate between segments 8 CLO_RATE 8 d/l Clock rate between segments 9 CLO_RATE 9 d/l Clock rate between segments 10 CLO_RATE 10 d/l Clock rate between segments 11 CLO_RATE 11 d/l Clock rate between segments 12 CLO_RATE 12 d/l Clock rate between segments 13 CLO_RATE 13 d/l Clock rate between segments 14 CLO_RATE 14 d/l Clock rate between segments 15 CLO_RATE 15 d/l Clock rate between segments 16 CLO_RATE 16 d/l Clock rate between segments 17 CLO_RATE 17 d/l Clock rate between segments 18 CLO_RATE 18 d/l Clock rate between segments 19 CLO_RATE 19 d/l Clock rate between segments 20 CLO_RATE 20 d/l Clock rate between segments 21 CLO_RATE 21 d/l Clock rate between segments 22 CLO_RATE 22 d/l Clock rate between segments 23 CLO_RATE 23 d/l Clock rate between segments 24 CLO_RATE 24 d/l Clock rate between segments 25 ATM_RATE 1 d/l Atmosphere rate between segments 26 ATM_RATE 2 d/l Atmosphere rate between segments 27 ATM_RATE 3 d/l Atmosphere rate between segments 28 ATM_RATE 4 d/l Atmosphere rate between segments 29 ATM_RATE 5 d/l Atmosphere rate between segments 30 ATM_RATE 6 d/l Atmosphere rate between segments 31 ATM_RATE 7 d/l Atmosphere rate between segments 32 ATM_RATE 8 d/l Atmosphere rate between segments 33 ATM_RATE 9 d/l Atmosphere rate between segments 34 ATM_RATE 10 d/l Atmosphere rate between segments 35 ATM_RATE 11 d/l Atmosphere rate between segments 36 ATM_RATE 12 d/l Atmosphere rate between segments 37 ATM_RATE 13 d/l Atmosphere rate between segments 38 ATM_RATE 14 d/l Atmosphere rate between segments 39 ATM_RATE 15 d/l Atmosphere rate between segments 40 ATM_RATE 16 d/l Atmosphere rate between segments 41 ATM_RATE 17 d/l Atmosphere rate between segments 42 ATM_RATE 18 d/l Atmosphere rate between segments 43 ATM_RATE 19 d/l Atmosphere rate between segments 44 ATM_RATE 20 d/l Atmosphere rate between segments 45 ATM_RATE 21 d/l Atmosphere rate between segments 46 ATM_RATE 22 d/l Atmosphere rate between segments 47 ATM_RATE 23 d/l Atmosphere rate between segments 48 ATM_RATE 24 d/l Atmosphere rate between segments 49 ATM_RATE 25 d/l Atmosphere rate between segments 50 ATM_RATE 26 d/l Atmosphere rate between segments 51 ATM_RATE 27 d/l Atmosphere rate between segments 52 ATM_RATE 28 d/l Atmosphere rate between segments 53 ATM_RATE 29 d/l Atmosphere rate between segments 54 ATM_RATE 30 d/l Atmosphere rate between segments 55 ATM_RATE 31 d/l Atmosphere rate between segments 56 ATM_RATE 32 d/l Atmosphere rate between segments 57 ATM_RATE 33 d/l Atmosphere rate between segments 58 ATM_RATE 34 d/l Atmosphere rate between segments 59 ATM_RATE 35 d/l Atmosphere rate between segments 60 ATM_RATE 36 d/l Atmosphere rate between segments 61 ATM_RATE 37 d/l Atmosphere rate between segments 62 ATM_RATE 38 d/l Atmosphere rate between segments 63 ATM_RATE 39 d/l Atmosphere rate between segments 64 ATM_RATE 40 d/l Atmosphere rate between segments 65 ATM_RATE 41 d/l Atmosphere rate between segments 66 ATM_RATE 42 d/l Atmosphere rate between segments 67 ATM_RATE 43 d/l Atmosphere rate between segments 68 ATM_RATE 44 d/l Atmosphere rate between segments 69 ATM_RATE 45 d/l Atmosphere rate between segments 70 ATM_RATE 46 d/l Atmosphere rate between segments 71 ATM_RATE 47 d/l Atmosphere rate between segments 72 ATM_RATE 48 d/l Atmosphere rate between segments 73 ATM_RATE 49 d/l Atmosphere rate between segments 74 ATM_RATE 50 d/l Atmosphere rate between segments 75 ATM_RATE 51 d/l Atmosphere rate between segments 76 ATM_RATE 52 d/l Atmosphere rate between segments 77 ATM_RATE 53 d/l Atmosphere rate between segments 78 ATM_RATE 54 d/l Atmosphere rate between segments 79 ATM_RATE 55 d/l Atmosphere rate between segments 80 ATM_RATE 56 d/l Atmosphere rate between segments 81 ATM_RATE 57 d/l Atmosphere rate between segments 82 ATM_RATE 58 d/l Atmosphere rate between segments 83 ATM_RATE 59 d/l Atmosphere rate between segments 84 ATM_RATE 60 d/l Atmosphere rate between segments 85 ATM_RATE 61 d/l Atmosphere rate between segments 86 ATM_RATE 62 d/l Atmosphere rate between segments 87 ATM_RATE 63 d/l Atmosphere rate between segments 88 ATM_RATE 64 d/l Atmosphere rate between segments 89 ATM_RATE 65 d/l Atmosphere rate between segments 90 ATM_RATE 66 d/l Atmosphere rate between segments 91 ATM_RATE 67 d/l Atmosphere rate between segments 92 ATM_RATE 68 d/l Atmosphere rate between segments 93 ATM_RATE 69 d/l Atmosphere rate between segments 94 ATM_RATE 70 d/l Atmosphere rate between segments 95 ATM_RATE 71 d/l Atmosphere rate between segments 96 ATM_RATE 72 d/l Atmosphere rate between segments 97 CLO_RATE 25 d/l Clock rate between segments 98 CLO_RATE 26 d/l Clock rate between segments 99 CLO_RATE 27 d/l Clock rate between segments 100 CLO_RATE 28 d/l Clock rate between segments 101 CLO_RATE 29 d/l Clock rate between segments 102 CLO_RATE 30 d/l Clock rate between segments 103 CLO_RATE 31 d/l Clock rate between segments 104 CLO_RATE 32 d/l Clock rate between segments 105 CLO_RATE 33 d/l Clock rate between segments 106 CLO_RATE 34 d/l Clock rate between segments 107 CLO_RATE 35 d/l Clock rate between segments 108 CLO_RATE 36 d/l Clock rate between segments 109 CLO_RATE 37 d/l Clock rate between segments 110 CLO_RATE 38 d/l Clock rate between segments 111 CLO_RATE 39 d/l Clock rate between segments 112 CLO_RATE 40 d/l Clock rate between segments 113 CLO_RATE 41 d/l Clock rate between segments 114 CLO_RATE 42 d/l Clock rate between segments 115 CLO_RATE 43 d/l Clock rate between segments 116 CLO_RATE 44 d/l Clock rate between segments 117 CLO_RATE 45 d/l Clock rate between segments 118 CLO_RATE 46 d/l Clock rate between segments 119 CLO_RATE 47 d/l Clock rate between segments 120 CLO_RATE 48 d/l Clock rate between segments 121 ATM_RATE 73 d/l Atmosphere rate between segments 122 ATM_RATE 74 d/l Atmosphere rate between segments 123 ATM_RATE 75 d/l Atmosphere rate between segments 124 ATM_RATE 76 d/l Atmosphere rate between segments 125 ATM_RATE 77 d/l Atmosphere rate between segments 126 ATM_RATE 78 d/l Atmosphere rate between segments 127 ATM_RATE 79 d/l Atmosphere rate between segments 128 ATM_RATE 80 d/l Atmosphere rate between segments 129 ATM_RATE 81 d/l Atmosphere rate between segments 130 ATM_RATE 82 d/l Atmosphere rate between segments 131 ATM_RATE 83 d/l Atmosphere rate between segments 132 ATM_RATE 84 d/l Atmosphere rate between segments 133 ATM_RATE 85 d/l Atmosphere rate between segments 134 ATM_RATE 86 d/l Atmosphere rate between segments 135 ATM_RATE 87 d/l Atmosphere rate between segments 136 ATM_RATE 88 d/l Atmosphere rate between segments 137 ATM_RATE 89 d/l Atmosphere rate between segments 138 ATM_RATE 90 d/l Atmosphere rate between segments 139 ATM_RATE 91 d/l Atmosphere rate between segments 140 ATM_RATE 92 d/l Atmosphere rate between segments 141 ATM_RATE 93 d/l Atmosphere rate between segments 142 ATM_RATE 94 d/l Atmosphere rate between segments 143 ATM_RATE 95 d/l Atmosphere rate between segments 144 ATM_RATE 96 d/l Atmosphere rate between segments 145 ATM_RATE 97 d/l Atmosphere rate between segments 146 ATM_RATE 98 d/l Atmosphere rate between segments 147 ATM_RATE 99 d/l Atmosphere rate between segments 148 ATM_RATE 100 d/l Atmosphere rate between segments 149 ATM_RATE 101 d/l Atmosphere rate between segments 150 ATM_RATE 102 d/l Atmosphere rate between segments 151 ATM_RATE 103 d/l Atmosphere rate between segments 152 ATM_RATE 104 d/l Atmosphere rate between segments 153 ATM_RATE 105 d/l Atmosphere rate between segments 154 ATM_RATE 106 d/l Atmosphere rate between segments 155 ATM_RATE 107 d/l Atmosphere rate between segments 156 ATM_RATE 108 d/l Atmosphere rate between segments 157 ATM_RATE 109 d/l Atmosphere rate between segments 158 ATM_RATE 110 d/l Atmosphere rate between segments 159 ATM_RATE 111 d/l Atmosphere rate between segments 160 ATM_RATE 112 d/l Atmosphere rate between segments 161 ATM_RATE 113 d/l Atmosphere rate between segments 162 ATM_RATE 114 d/l Atmosphere rate between segments 163 ATM_RATE 115 d/l Atmosphere rate between segments 164 ATM_RATE 116 d/l Atmosphere rate between segments 165 ATM_RATE 117 d/l Atmosphere rate between segments 166 ATM_RATE 118 d/l Atmosphere rate between segments 167 ATM_RATE 119 d/l Atmosphere rate between segments 168 ATM_RATE 120 d/l Atmosphere rate between segments 169 ATM_RATE 121 d/l Atmosphere rate between segments 170 ATM_RATE 122 d/l Atmosphere rate between segments 171 ATM_RATE 123 d/l Atmosphere rate between segments 172 ATM_RATE 124 d/l Atmosphere rate between segments 173 ATM_RATE 125 d/l Atmosphere rate between segments 174 ATM_RATE 126 d/l Atmosphere rate between segments 175 ATM_RATE 127 d/l Atmosphere rate between segments 176 ATM_RATE 128 d/l Atmosphere rate between segments 177 ATM_RATE 129 d/l Atmosphere rate between segments 178 ATM_RATE 130 d/l Atmosphere rate between segments 179 ATM_RATE 131 d/l Atmosphere rate between segments 180 ATM_RATE 132 d/l Atmosphere rate between segments 181 ATM_RATE 133 d/l Atmosphere rate between segments 182 ATM_RATE 134 d/l Atmosphere rate between segments 183 ATM_RATE 135 d/l Atmosphere rate between segments 184 ATM_RATE 136 d/l Atmosphere rate between segments 185 ATM_RATE 137 d/l Atmosphere rate between segments 186 ATM_RATE 138 d/l Atmosphere rate between segments 187 ATM_RATE 139 d/l Atmosphere rate between segments 188 ATM_RATE 140 d/l Atmosphere rate between segments 189 ATM_RATE 141 d/l Atmosphere rate between segments 190 ATM_RATE 142 d/l Atmosphere rate between segments 191 ATM_RATE 143 d/l Atmosphere rate between segments 192 ATM_RATE 144 d/l Atmosphere rate between segments 193 CLO_RATE 49 d/l Clock rate between segments 194 CLO_RATE 50 d/l Clock rate between segments 195 CLO_RATE 51 d/l Clock rate between segments 196 CLO_RATE 52 d/l Clock rate between segments 197 CLO_RATE 53 d/l Clock rate between segments 198 CLO_RATE 54 d/l Clock rate between segments 199 CLO_RATE 55 d/l Clock rate between segments 200 CLO_RATE 56 d/l Clock rate between segments 201 CLO_RATE 57 d/l Clock rate between segments 202 CLO_RATE 58 d/l Clock rate between segments 203 CLO_RATE 59 d/l Clock rate between segments 204 CLO_RATE 60 d/l Clock rate between segments 205 CLO_RATE 61 d/l Clock rate between segments 206 CLO_RATE 62 d/l Clock rate between segments 207 CLO_RATE 63 d/l Clock rate between segments 208 CLO_RATE 64 d/l Clock rate between segments 209 CLO_RATE 65 d/l Clock rate between segments 210 CLO_RATE 66 d/l Clock rate between segments 211 CLO_RATE 67 d/l Clock rate between segments 212 CLO_RATE 68 d/l Clock rate between segments 213 CLO_RATE 69 d/l Clock rate between segments 214 CLO_RATE 70 d/l Clock rate between segments 215 CLO_RATE 71 d/l Clock rate between segments 216 CLO_RATE 72 d/l Clock rate between segments 217 ATM_RATE 145 d/l Atmosphere rate between segments 218 ATM_RATE 146 d/l Atmosphere rate between segments 219 ATM_RATE 147 d/l Atmosphere rate between segments 220 ATM_RATE 148 d/l Atmosphere rate between segments 221 ATM_RATE 149 d/l Atmosphere rate between segments 222 ATM_RATE 150 d/l Atmosphere rate between segments 223 ATM_RATE 151 d/l Atmosphere rate between segments 224 ATM_RATE 152 d/l Atmosphere rate between segments 225 ATM_RATE 153 d/l Atmosphere rate between segments 226 ATM_RATE 154 d/l Atmosphere rate between segments 227 ATM_RATE 155 d/l Atmosphere rate between segments 228 ATM_RATE 156 d/l Atmosphere rate between segments 229 ATM_RATE 157 d/l Atmosphere rate between segments 230 ATM_RATE 158 d/l Atmosphere rate between segments 231 ATM_RATE 159 d/l Atmosphere rate between segments 232 ATM_RATE 160 d/l Atmosphere rate between segments 233 ATM_RATE 161 d/l Atmosphere rate between segments 234 ATM_RATE 162 d/l Atmosphere rate between segments 235 ATM_RATE 163 d/l Atmosphere rate between segments 236 ATM_RATE 164 d/l Atmosphere rate between segments 237 ATM_RATE 165 d/l Atmosphere rate between segments 238 ATM_RATE 166 d/l Atmosphere rate between segments 239 ATM_RATE 167 d/l Atmosphere rate between segments 240 ATM_RATE 168 d/l Atmosphere rate between segments 241 ATM_RATE 169 d/l Atmosphere rate between segments 242 ATM_RATE 170 d/l Atmosphere rate between segments 243 ATM_RATE 171 d/l Atmosphere rate between segments 244 ATM_RATE 172 d/l Atmosphere rate between segments 245 ATM_RATE 173 d/l Atmosphere rate between segments 246 ATM_RATE 174 d/l Atmosphere rate between segments 247 ATM_RATE 175 d/l Atmosphere rate between segments 248 ATM_RATE 176 d/l Atmosphere rate between segments 249 ATM_RATE 177 d/l Atmosphere rate between segments 250 ATM_RATE 178 d/l Atmosphere rate between segments 251 ATM_RATE 179 d/l Atmosphere rate between segments 252 ATM_RATE 180 d/l Atmosphere rate between segments 253 ATM_RATE 181 d/l Atmosphere rate between segments 254 ATM_RATE 182 d/l Atmosphere rate between segments 255 ATM_RATE 183 d/l Atmosphere rate between segments 256 ATM_RATE 184 d/l Atmosphere rate between segments 257 ATM_RATE 185 d/l Atmosphere rate between segments 258 ATM_RATE 186 d/l Atmosphere rate between segments 259 ATM_RATE 187 d/l Atmosphere rate between segments 260 ATM_RATE 188 d/l Atmosphere rate between segments 261 ATM_RATE 189 d/l Atmosphere rate between segments 262 ATM_RATE 190 d/l Atmosphere rate between segments 263 ATM_RATE 191 d/l Atmosphere rate between segments 264 ATM_RATE 192 d/l Atmosphere rate between segments 265 ATM_RATE 193 d/l Atmosphere rate between segments 266 ATM_RATE 194 d/l Atmosphere rate between segments 267 ATM_RATE 195 d/l Atmosphere rate between segments 268 ATM_RATE 196 d/l Atmosphere rate between segments 269 ATM_RATE 197 d/l Atmosphere rate between segments 270 ATM_RATE 198 d/l Atmosphere rate between segments 271 ATM_RATE 199 d/l Atmosphere rate between segments 272 ATM_RATE 200 d/l Atmosphere rate between segments 273 ATM_RATE 201 d/l Atmosphere rate between segments 274 ATM_RATE 202 d/l Atmosphere rate between segments 275 ATM_RATE 203 d/l Atmosphere rate between segments 276 ATM_RATE 204 d/l Atmosphere rate between segments 277 ATM_RATE 205 d/l Atmosphere rate between segments 278 ATM_RATE 206 d/l Atmosphere rate between segments 279 ATM_RATE 207 d/l Atmosphere rate between segments 280 ATM_RATE 208 d/l Atmosphere rate between segments 281 ATM_RATE 209 d/l Atmosphere rate between segments 282 ATM_RATE 210 d/l Atmosphere rate between segments 283 ATM_RATE 211 d/l Atmosphere rate between segments 284 ATM_RATE 212 d/l Atmosphere rate between segments 285 ATM_RATE 213 d/l Atmosphere rate between segments 286 ATM_RATE 214 d/l Atmosphere rate between segments 287 ATM_RATE 215 d/l Atmosphere rate between segments 288 ATM_RATE 216 d/l Atmosphere rate between segments 289 ATM_RATE 217 d/l Atmosphere rate between segments 290 ATM_RATE 218 d/l Atmosphere rate between segments 291 ATM_RATE 219 d/l Atmosphere rate between segments 292 ATM_RATE 220 d/l Atmosphere rate between segments 293 ATM_RATE 221 d/l Atmosphere rate between segments 294 ATM_RATE 222 d/l Atmosphere rate between segments 295 ATM_RATE 223 d/l Atmosphere rate between segments 296 ATM_RATE 224 d/l Atmosphere rate between segments 297 ATM_RATE 225 d/l Atmosphere rate between segments 298 ATM_RATE 226 d/l Atmosphere rate between segments 299 ATM_RATE 227 d/l Atmosphere rate between segments 300 ATM_RATE 228 d/l Atmosphere rate between segments 301 ATM_RATE 229 d/l Atmosphere rate between segments 302 ATM_RATE 230 d/l Atmosphere rate between segments 303 ATM_RATE 231 d/l Atmosphere rate between segments 304 ATM_RATE 232 d/l Atmosphere rate between segments 305 ATM_RATE 233 d/l Atmosphere rate between segments 306 ATM_RATE 234 d/l Atmosphere rate between segments 307 ATM_RATE 235 d/l Atmosphere rate between segments 308 ATM_RATE 236 d/l Atmosphere rate between segments 309 ATM_RATE 237 d/l Atmosphere rate between segments 310 ATM_RATE 238 d/l Atmosphere rate between segments 311 ATM_RATE 239 d/l Atmosphere rate between segments 312 ATM_RATE 240 d/l Atmosphere rate between segments 313 ATM_RATE 241 d/l Atmosphere rate between segments 314 ATM_RATE 242 d/l Atmosphere rate between segments 315 ATM_RATE 243 d/l Atmosphere rate between segments 316 ATM_RATE 244 d/l Atmosphere rate between segments 317 ATM_RATE 245 d/l Atmosphere rate between segments 318 ATM_RATE 246 d/l Atmosphere rate between segments 319 ATM_RATE 247 d/l Atmosphere rate between segments 320 ATM_RATE 248 d/l Atmosphere rate between segments 321 ATM_RATE 249 d/l Atmosphere rate between segments 322 ATM_RATE 250 d/l Atmosphere rate between segments 323 ATM_RATE 251 d/l Atmosphere rate between segments 324 ATM_RATE 252 d/l Atmosphere rate between segments 325 ATM_RATE 253 d/l Atmosphere rate between segments 326 ATM_RATE 254 d/l Atmosphere rate between segments 327 ATM_RATE 255 d/l Atmosphere rate between segments 328 ATM_RATE 256 d/l Atmosphere rate between segments 329 ATM_RATE 257 d/l Atmosphere rate between segments 330 ATM_RATE 258 d/l Atmosphere rate between segments 331 ATM_RATE 259 d/l Atmosphere rate between segments 332 ATM_RATE 260 d/l Atmosphere rate between segments 333 ATM_RATE 261 d/l Atmosphere rate between segments 334 ATM_RATE 262 d/l Atmosphere rate between segments 335 ATM_RATE 263 d/l Atmosphere rate between segments 336 ATM_RATE 264 d/l Atmosphere rate between segments 337 ATM_RATE 265 d/l Atmosphere rate between segments 338 ATM_RATE 266 d/l Atmosphere rate between segments 339 ATM_RATE 267 d/l Atmosphere rate between segments 340 ATM_RATE 268 d/l Atmosphere rate between segments 341 ATM_RATE 269 d/l Atmosphere rate between segments 342 ATM_RATE 270 d/l Atmosphere rate between segments 343 ATM_RATE 271 d/l Atmosphere rate between segments 344 ATM_RATE 272 d/l Atmosphere rate between segments 345 ATM_RATE 273 d/l Atmosphere rate between segments 346 ATM_RATE 274 d/l Atmosphere rate between segments 347 ATM_RATE 275 d/l Atmosphere rate between segments 348 ATM_RATE 276 d/l Atmosphere rate between segments 349 ATM_RATE 277 d/l Atmosphere rate between segments 350 ATM_RATE 278 d/l Atmosphere rate between segments 351 ATM_RATE 279 d/l Atmosphere rate between segments 352 ATM_RATE 280 d/l Atmosphere rate between segments 353 ATM_RATE 281 d/l Atmosphere rate between segments 354 ATM_RATE 282 d/l Atmosphere rate between segments 355 ATM_RATE 283 d/l Atmosphere rate between segments 356 ATM_RATE 284 d/l Atmosphere rate between segments 357 ATM_RATE 285 d/l Atmosphere rate between segments 358 ATM_RATE 286 d/l Atmosphere rate between segments 359 ATM_RATE 287 d/l Atmosphere rate between segments 360 ATM_RATE 288 d/l Atmosphere rate between segments 361 CLO_RATE 73 d/l Clock rate between segments 362 CLO_RATE 74 d/l Clock rate between segments 363 CLO_RATE 75 d/l Clock rate between segments 364 CLO_RATE 76 d/l Clock rate between segments 365 CLO_RATE 77 d/l Clock rate between segments 366 CLO_RATE 78 d/l Clock rate between segments 367 CLO_RATE 79 d/l Clock rate between segments 368 CLO_RATE 80 d/l Clock rate between segments 369 CLO_RATE 81 d/l Clock rate between segments 370 CLO_RATE 82 d/l Clock rate between segments 371 CLO_RATE 83 d/l Clock rate between segments 372 CLO_RATE 84 d/l Clock rate between segments 373 CLO_RATE 85 d/l Clock rate between segments 374 CLO_RATE 86 d/l Clock rate between segments 375 CLO_RATE 87 d/l Clock rate between segments 376 CLO_RATE 88 d/l Clock rate between segments 377 CLO_RATE 89 d/l Clock rate between segments 378 CLO_RATE 90 d/l Clock rate between segments 379 CLO_RATE 91 d/l Clock rate between segments 380 CLO_RATE 92 d/l Clock rate between segments 381 CLO_RATE 93 d/l Clock rate between segments 382 CLO_RATE 94 d/l Clock rate between segments 383 CLO_RATE 95 d/l Clock rate between segments 384 CLO_RATE 96 d/l Clock rate between segments 385 ATM_RATE 289 d/l Atmosphere rate between segments 386 ATM_RATE 290 d/l Atmosphere rate between segments 387 ATM_RATE 291 d/l Atmosphere rate between segments 388 ATM_RATE 292 d/l Atmosphere rate between segments 389 ATM_RATE 293 d/l Atmosphere rate between segments 390 ATM_RATE 294 d/l Atmosphere rate between segments 391 ATM_RATE 295 d/l Atmosphere rate between segments 392 ATM_RATE 296 d/l Atmosphere rate between segments 393 ATM_RATE 297 d/l Atmosphere rate between segments 394 ATM_RATE 298 d/l Atmosphere rate between segments 395 ATM_RATE 299 d/l Atmosphere rate between segments 396 ATM_RATE 300 d/l Atmosphere rate between segments 397 ATM_RATE 301 d/l Atmosphere rate between segments 398 ATM_RATE 302 d/l Atmosphere rate between segments 399 ATM_RATE 303 d/l Atmosphere rate between segments 400 ATM_RATE 304 d/l Atmosphere rate between segments 401 ATM_RATE 305 d/l Atmosphere rate between segments 402 ATM_RATE 306 d/l Atmosphere rate between segments 403 ATM_RATE 307 d/l Atmosphere rate between segments 404 ATM_RATE 308 d/l Atmosphere rate between segments 405 ATM_RATE 309 d/l Atmosphere rate between segments 406 ATM_RATE 310 d/l Atmosphere rate between segments 407 ATM_RATE 311 d/l Atmosphere rate between segments 408 ATM_RATE 312 d/l Atmosphere rate between segments 409 ATM_RATE 313 d/l Atmosphere rate between segments 410 ATM_RATE 314 d/l Atmosphere rate between segments 411 ATM_RATE 315 d/l Atmosphere rate between segments 412 ATM_RATE 316 d/l Atmosphere rate between segments 413 ATM_RATE 317 d/l Atmosphere rate between segments 414 ATM_RATE 318 d/l Atmosphere rate between segments 415 ATM_RATE 319 d/l Atmosphere rate between segments 416 ATM_RATE 320 d/l Atmosphere rate between segments 417 ATM_RATE 321 d/l Atmosphere rate between segments 418 ATM_RATE 322 d/l Atmosphere rate between segments 419 ATM_RATE 323 d/l Atmosphere rate between segments 420 ATM_RATE 324 d/l Atmosphere rate between segments 421 ATM_RATE 325 d/l Atmosphere rate between segments 422 ATM_RATE 326 d/l Atmosphere rate between segments 423 ATM_RATE 327 d/l Atmosphere rate between segments 424 ATM_RATE 328 d/l Atmosphere rate between segments 425 ATM_RATE 329 d/l Atmosphere rate between segments 426 ATM_RATE 330 d/l Atmosphere rate between segments 427 ATM_RATE 331 d/l Atmosphere rate between segments 428 ATM_RATE 332 d/l Atmosphere rate between segments 429 ATM_RATE 333 d/l Atmosphere rate between segments 430 ATM_RATE 334 d/l Atmosphere rate between segments 431 ATM_RATE 335 d/l Atmosphere rate between segments 432 ATM_RATE 336 d/l Atmosphere rate between segments 433 ATM_RATE 337 d/l Atmosphere rate between segments 434 ATM_RATE 338 d/l Atmosphere rate between segments 435 ATM_RATE 339 d/l Atmosphere rate between segments 436 ATM_RATE 340 d/l Atmosphere rate between segments 437 ATM_RATE 341 d/l Atmosphere rate between segments 438 ATM_RATE 342 d/l Atmosphere rate between segments 439 ATM_RATE 343 d/l Atmosphere rate between segments 440 ATM_RATE 344 d/l Atmosphere rate between segments 441 ATM_RATE 345 d/l Atmosphere rate between segments 442 ATM_RATE 346 d/l Atmosphere rate between segments 443 ATM_RATE 347 d/l Atmosphere rate between segments 444 ATM_RATE 348 d/l Atmosphere rate between segments 445 ATM_RATE 349 d/l Atmosphere rate between segments 446 ATM_RATE 350 d/l Atmosphere rate between segments 447 ATM_RATE 351 d/l Atmosphere rate between segments 448 ATM_RATE 352 d/l Atmosphere rate between segments 449 ATM_RATE 353 d/l Atmosphere rate between segments 450 ATM_RATE 354 d/l Atmosphere rate between segments 451 ATM_RATE 355 d/l Atmosphere rate between segments 452 ATM_RATE 356 d/l Atmosphere rate between segments 453 ATM_RATE 357 d/l Atmosphere rate between segments 454 ATM_RATE 358 d/l Atmosphere rate between segments 455 ATM_RATE 359 d/l Atmosphere rate between segments 456 ATM_RATE 360 d/l Atmosphere rate between segments 457 BLC_VAL 1 sec Baseline clock 458 BLC_VAL 2 sec Baseline clock 459 BLC_VAL 3 sec Baseline clock 460 BLC_VAL 4 sec Baseline clock 461 BLC_VAL 5 sec Baseline clock 462 EOP_XPL 1 mas Constraint on X pole value 463 EOP_YPL 1 mas Constraint on Y pole value 464 EOP_UT1 1 ms Constraint on UT1 angle 465 GRAD_OFF 1 mm Atmosphere gradient offset 466 GRAD_RAT 1 mm/d Atmosphere gradient rate 467 GRAD_RAT 2 mm/d Atmosphere gradient rate 468 GRAD_RAT 3 mm/d Atmosphere gradient rate 469 GRAD_OFF 2 mm Atmosphere gradient offset 470 GRAD_RAT 4 mm/d Atmosphere gradient rate 471 GRAD_RAT 5 mm/d Atmosphere gradient rate 472 GRAD_RAT 6 mm/d Atmosphere gradient rate 473 NNT_POS 1 m No-net translation for positions 474 NNT_POS 2 m No-net translation for positions 475 NNT_POS 3 m No-net translation for positions 476 NNR_POS 1 m No-net rotation for positions 477 NNR_POS 2 m No-net rotation for positions 478 NNR_POS 3 m No-net rotation for positions -SOLUTION/CONSTRAINT_INFO * * ----------------------------------------------------------------------------- * +SOLUTION/CONSTRAINT_EQUATION_MATRIX * IND1 runs over constaint equations * IND2 runs over parameters to be constrainted * * Ind1 Ind2 Constraint_equation(ind1,ind2) 462 16 1.00000000000000D+00 463 18 1.00000000000000D+00 464 20 1.00000000000000D+00 473 1 1.00000000000000D+00 473 4 1.00000000000000D+00 473 7 1.00000000000000D+00 473 10 1.00000000000000D+00 473 13 1.00000000000000D+00 474 2 1.00000000000000D+00 474 5 1.00000000000000D+00 474 8 1.00000000000000D+00 474 11 1.00000000000000D+00 474 14 1.00000000000000D+00 475 3 1.00000000000000D+00 475 6 1.00000000000000D+00 475 9 1.00000000000000D+00 475 12 1.00000000000000D+00 475 15 1.00000000000000D+00 476 2 -5.25213291485960D-01 476 3 6.46900979027670D-01 476 5 -4.52919783559227D-01 476 6 5.46962228700839D-01 476 8 -5.78300707025098D-01 476 9 5.60058377618939D-01 476 11 -5.87328830560725D-01 476 12 5.20186181587102D-01 476 14 -6.29402415920073D-01 476 15 4.88692627472816D-01 477 1 5.25213291485960D-01 477 3 5.54458524858888D-01 477 4 4.52919783559227D-01 477 6 7.05012450821788D-01 477 7 5.78300707025098D-01 477 9 5.95090359443512D-01 477 10 5.87328830560725D-01 477 12 6.21887222663831D-01 477 13 6.29402415920073D-01 477 15 6.06348059068628D-01 478 1 -6.46900979027670D-01 478 2 -5.54458524858888D-01 478 4 -5.46962228700839D-01 478 5 -7.05012450821788D-01 478 7 -5.60058377618939D-01 478 8 -5.95090359443512D-01 478 10 -5.20186181587102D-01 478 11 -6.21887222663831D-01 478 13 -4.88692627472816D-01 478 14 -6.06348059068628D-01 -SOLUTION/CONSTRAINT_EQUATION_MATRIX * * ----------------------------------------------------------------------------- * +SOLUTION/CONSTRAINT_EQUATION_VECTOR *Index Right_hand_value____ Reciprocal_weight___ 1 0.00000000000000D+00 5.00000000000000D-14 2 0.00000000000000D+00 5.00000000000000D-14 3 0.00000000000000D+00 5.00000000000000D-14 4 0.00000000000000D+00 5.00000000000000D-14 5 0.00000000000000D+00 5.00000000000000D-14 6 0.00000000000000D+00 5.00000000000000D-14 7 0.00000000000000D+00 5.00000000000000D-14 8 0.00000000000000D+00 5.00000000000000D-14 9 0.00000000000000D+00 5.00000000000000D-14 10 0.00000000000000D+00 5.00000000000000D-14 11 0.00000000000000D+00 5.00000000000000D-14 12 0.00000000000000D+00 5.00000000000000D-14 13 0.00000000000000D+00 5.00000000000000D-14 14 0.00000000000000D+00 5.00000000000000D-14 15 0.00000000000000D+00 5.00000000000000D-14 16 0.00000000000000D+00 5.00000000000000D-14 17 0.00000000000000D+00 5.00000000000000D-14 18 0.00000000000000D+00 5.00000000000000D-14 19 0.00000000000000D+00 5.00000000000000D-14 20 0.00000000000000D+00 5.00000000000000D-14 21 0.00000000000000D+00 5.00000000000000D-14 22 0.00000000000000D+00 5.00000000000000D-14 23 0.00000000000000D+00 5.00000000000000D-14 24 0.00000000000000D+00 5.00000000000000D-14 25 0.00000000000000D+00 1.38888888888889D-14 26 0.00000000000000D+00 1.38888888888889D-14 27 0.00000000000000D+00 1.38888888888889D-14 28 0.00000000000000D+00 1.38888888888889D-14 29 0.00000000000000D+00 1.38888888888889D-14 30 0.00000000000000D+00 1.38888888888889D-14 31 0.00000000000000D+00 1.38888888888889D-14 32 0.00000000000000D+00 1.38888888888889D-14 33 0.00000000000000D+00 1.38888888888889D-14 34 0.00000000000000D+00 1.38888888888889D-14 35 0.00000000000000D+00 1.38888888888889D-14 36 0.00000000000000D+00 1.38888888888889D-14 37 0.00000000000000D+00 1.38888888888889D-14 38 0.00000000000000D+00 1.38888888888889D-14 39 0.00000000000000D+00 1.38888888888889D-14 40 0.00000000000000D+00 1.38888888888889D-14 41 0.00000000000000D+00 1.38888888888889D-14 42 0.00000000000000D+00 1.38888888888889D-14 43 0.00000000000000D+00 1.38888888888889D-14 44 0.00000000000000D+00 1.38888888888889D-14 45 0.00000000000000D+00 1.38888888888889D-14 46 0.00000000000000D+00 1.38888888888889D-14 47 0.00000000000000D+00 1.38888888888889D-14 48 0.00000000000000D+00 1.38888888888889D-14 49 0.00000000000000D+00 1.38888888888889D-14 50 0.00000000000000D+00 1.38888888888889D-14 51 0.00000000000000D+00 1.38888888888889D-14 52 0.00000000000000D+00 1.38888888888889D-14 53 0.00000000000000D+00 1.38888888888889D-14 54 0.00000000000000D+00 1.38888888888889D-14 55 0.00000000000000D+00 1.38888888888889D-14 56 0.00000000000000D+00 1.38888888888889D-14 57 0.00000000000000D+00 1.38888888888889D-14 58 0.00000000000000D+00 1.38888888888889D-14 59 0.00000000000000D+00 1.38888888888889D-14 60 0.00000000000000D+00 1.38888888888889D-14 61 0.00000000000000D+00 1.38888888888889D-14 62 0.00000000000000D+00 1.38888888888889D-14 63 0.00000000000000D+00 1.38888888888889D-14 64 0.00000000000000D+00 1.38888888888889D-14 65 0.00000000000000D+00 1.38888888888889D-14 66 0.00000000000000D+00 1.38888888888889D-14 67 0.00000000000000D+00 1.38888888888889D-14 68 0.00000000000000D+00 1.38888888888889D-14 69 0.00000000000000D+00 1.38888888888889D-14 70 0.00000000000000D+00 1.38888888888889D-14 71 0.00000000000000D+00 1.38888888888889D-14 72 0.00000000000000D+00 1.38888888888889D-14 73 0.00000000000000D+00 1.38888888888889D-14 74 0.00000000000000D+00 1.38888888888889D-14 75 0.00000000000000D+00 1.38888888888889D-14 76 0.00000000000000D+00 1.38888888888889D-14 77 0.00000000000000D+00 1.38888888888889D-14 78 0.00000000000000D+00 1.38888888888889D-14 79 0.00000000000000D+00 1.38888888888889D-14 80 0.00000000000000D+00 1.38888888888889D-14 81 0.00000000000000D+00 1.38888888888889D-14 82 0.00000000000000D+00 1.38888888888889D-14 83 0.00000000000000D+00 1.38888888888889D-14 84 0.00000000000000D+00 1.38888888888889D-14 85 0.00000000000000D+00 1.38888888888889D-14 86 0.00000000000000D+00 1.38888888888889D-14 87 0.00000000000000D+00 1.38888888888889D-14 88 0.00000000000000D+00 1.38888888888889D-14 89 0.00000000000000D+00 1.38888888888889D-14 90 0.00000000000000D+00 1.38888888888889D-14 91 0.00000000000000D+00 1.38888888888889D-14 92 0.00000000000000D+00 1.38888888888889D-14 93 0.00000000000000D+00 1.38888888888889D-14 94 0.00000000000000D+00 1.38888888888889D-14 95 0.00000000000000D+00 1.38888888888889D-14 96 0.00000000000000D+00 1.38888888888889D-14 97 0.00000000000000D+00 5.00000000000000D-14 98 0.00000000000000D+00 5.00000000000000D-14 99 0.00000000000000D+00 5.00000000000000D-14 100 0.00000000000000D+00 5.00000000000000D-14 101 0.00000000000000D+00 5.00000000000000D-14 102 0.00000000000000D+00 5.00000000000000D-14 103 0.00000000000000D+00 5.00000000000000D-14 104 0.00000000000000D+00 5.00000000000000D-14 105 0.00000000000000D+00 5.00000000000000D-14 106 0.00000000000000D+00 5.00000000000000D-14 107 0.00000000000000D+00 5.00000000000000D-14 108 0.00000000000000D+00 5.00000000000000D-14 109 0.00000000000000D+00 5.00000000000000D-14 110 0.00000000000000D+00 5.00000000000000D-14 111 0.00000000000000D+00 5.00000000000000D-14 112 0.00000000000000D+00 5.00000000000000D-14 113 0.00000000000000D+00 5.00000000000000D-14 114 0.00000000000000D+00 5.00000000000000D-14 115 0.00000000000000D+00 5.00000000000000D-14 116 0.00000000000000D+00 5.00000000000000D-14 117 0.00000000000000D+00 5.00000000000000D-14 118 0.00000000000000D+00 5.00000000000000D-14 119 0.00000000000000D+00 5.00000000000000D-14 120 0.00000000000000D+00 5.00000000000000D-14 121 0.00000000000000D+00 1.38888888888889D-14 122 0.00000000000000D+00 1.38888888888889D-14 123 0.00000000000000D+00 1.38888888888889D-14 124 0.00000000000000D+00 1.38888888888889D-14 125 0.00000000000000D+00 1.38888888888889D-14 126 0.00000000000000D+00 1.38888888888889D-14 127 0.00000000000000D+00 1.38888888888889D-14 128 0.00000000000000D+00 1.38888888888889D-14 129 0.00000000000000D+00 1.38888888888889D-14 130 0.00000000000000D+00 1.38888888888889D-14 131 0.00000000000000D+00 1.38888888888889D-14 132 0.00000000000000D+00 1.38888888888889D-14 133 0.00000000000000D+00 1.38888888888889D-14 134 0.00000000000000D+00 1.38888888888889D-14 135 0.00000000000000D+00 1.38888888888889D-14 136 0.00000000000000D+00 1.38888888888889D-14 137 0.00000000000000D+00 1.38888888888889D-14 138 0.00000000000000D+00 1.38888888888889D-14 139 0.00000000000000D+00 1.38888888888889D-14 140 0.00000000000000D+00 1.38888888888889D-14 141 0.00000000000000D+00 1.38888888888889D-14 142 0.00000000000000D+00 1.38888888888889D-14 143 0.00000000000000D+00 1.38888888888889D-14 144 0.00000000000000D+00 1.38888888888889D-14 145 0.00000000000000D+00 1.38888888888889D-14 146 0.00000000000000D+00 1.38888888888889D-14 147 0.00000000000000D+00 1.38888888888889D-14 148 0.00000000000000D+00 1.38888888888889D-14 149 0.00000000000000D+00 1.38888888888889D-14 150 0.00000000000000D+00 1.38888888888889D-14 151 0.00000000000000D+00 1.38888888888889D-14 152 0.00000000000000D+00 1.38888888888889D-14 153 0.00000000000000D+00 1.38888888888889D-14 154 0.00000000000000D+00 1.38888888888889D-14 155 0.00000000000000D+00 1.38888888888889D-14 156 0.00000000000000D+00 1.38888888888889D-14 157 0.00000000000000D+00 1.38888888888889D-14 158 0.00000000000000D+00 1.38888888888889D-14 159 0.00000000000000D+00 1.38888888888889D-14 160 0.00000000000000D+00 1.38888888888889D-14 161 0.00000000000000D+00 1.38888888888889D-14 162 0.00000000000000D+00 1.38888888888889D-14 163 0.00000000000000D+00 1.38888888888889D-14 164 0.00000000000000D+00 1.38888888888889D-14 165 0.00000000000000D+00 1.38888888888889D-14 166 0.00000000000000D+00 1.38888888888889D-14 167 0.00000000000000D+00 1.38888888888889D-14 168 0.00000000000000D+00 1.38888888888889D-14 169 0.00000000000000D+00 1.38888888888889D-14 170 0.00000000000000D+00 1.38888888888889D-14 171 0.00000000000000D+00 1.38888888888889D-14 172 0.00000000000000D+00 1.38888888888889D-14 173 0.00000000000000D+00 1.38888888888889D-14 174 0.00000000000000D+00 1.38888888888889D-14 175 0.00000000000000D+00 1.38888888888889D-14 176 0.00000000000000D+00 1.38888888888889D-14 177 0.00000000000000D+00 1.38888888888889D-14 178 0.00000000000000D+00 1.38888888888889D-14 179 0.00000000000000D+00 1.38888888888889D-14 180 0.00000000000000D+00 1.38888888888889D-14 181 0.00000000000000D+00 1.38888888888889D-14 182 0.00000000000000D+00 1.38888888888889D-14 183 0.00000000000000D+00 1.38888888888889D-14 184 0.00000000000000D+00 1.38888888888889D-14 185 0.00000000000000D+00 1.38888888888889D-14 186 0.00000000000000D+00 1.38888888888889D-14 187 0.00000000000000D+00 1.38888888888889D-14 188 0.00000000000000D+00 1.38888888888889D-14 189 0.00000000000000D+00 1.38888888888889D-14 190 0.00000000000000D+00 1.38888888888889D-14 191 0.00000000000000D+00 1.38888888888889D-14 192 0.00000000000000D+00 1.38888888888889D-14 193 0.00000000000000D+00 5.00000000000000D-14 194 0.00000000000000D+00 5.00000000000000D-14 195 0.00000000000000D+00 5.00000000000000D-14 196 0.00000000000000D+00 5.00000000000000D-14 197 0.00000000000000D+00 5.00000000000000D-14 198 0.00000000000000D+00 5.00000000000000D-14 199 0.00000000000000D+00 5.00000000000000D-14 200 0.00000000000000D+00 5.00000000000000D-14 201 0.00000000000000D+00 5.00000000000000D-14 202 0.00000000000000D+00 5.00000000000000D-14 203 0.00000000000000D+00 5.00000000000000D-14 204 0.00000000000000D+00 5.00000000000000D-14 205 0.00000000000000D+00 5.00000000000000D-14 206 0.00000000000000D+00 5.00000000000000D-14 207 0.00000000000000D+00 5.00000000000000D-14 208 0.00000000000000D+00 5.00000000000000D-14 209 0.00000000000000D+00 5.00000000000000D-14 210 0.00000000000000D+00 5.00000000000000D-14 211 0.00000000000000D+00 5.00000000000000D-14 212 0.00000000000000D+00 5.00000000000000D-14 213 0.00000000000000D+00 5.00000000000000D-14 214 0.00000000000000D+00 5.00000000000000D-14 215 0.00000000000000D+00 5.00000000000000D-14 216 0.00000000000000D+00 5.00000000000000D-14 217 0.00000000000000D+00 1.38888888888889D-14 218 0.00000000000000D+00 1.38888888888889D-14 219 0.00000000000000D+00 1.38888888888889D-14 220 0.00000000000000D+00 1.38888888888889D-14 221 0.00000000000000D+00 1.38888888888889D-14 222 0.00000000000000D+00 1.38888888888889D-14 223 0.00000000000000D+00 1.38888888888889D-14 224 0.00000000000000D+00 1.38888888888889D-14 225 0.00000000000000D+00 1.38888888888889D-14 226 0.00000000000000D+00 1.38888888888889D-14 227 0.00000000000000D+00 1.38888888888889D-14 228 0.00000000000000D+00 1.38888888888889D-14 229 0.00000000000000D+00 1.38888888888889D-14 230 0.00000000000000D+00 1.38888888888889D-14 231 0.00000000000000D+00 1.38888888888889D-14 232 0.00000000000000D+00 1.38888888888889D-14 233 0.00000000000000D+00 1.38888888888889D-14 234 0.00000000000000D+00 1.38888888888889D-14 235 0.00000000000000D+00 1.38888888888889D-14 236 0.00000000000000D+00 1.38888888888889D-14 237 0.00000000000000D+00 1.38888888888889D-14 238 0.00000000000000D+00 1.38888888888889D-14 239 0.00000000000000D+00 1.38888888888889D-14 240 0.00000000000000D+00 1.38888888888889D-14 241 0.00000000000000D+00 1.38888888888889D-14 242 0.00000000000000D+00 1.38888888888889D-14 243 0.00000000000000D+00 1.38888888888889D-14 244 0.00000000000000D+00 1.38888888888889D-14 245 0.00000000000000D+00 1.38888888888889D-14 246 0.00000000000000D+00 1.38888888888889D-14 247 0.00000000000000D+00 1.38888888888889D-14 248 0.00000000000000D+00 1.38888888888889D-14 249 0.00000000000000D+00 1.38888888888889D-14 250 0.00000000000000D+00 1.38888888888889D-14 251 0.00000000000000D+00 1.38888888888889D-14 252 0.00000000000000D+00 1.38888888888889D-14 253 0.00000000000000D+00 1.38888888888889D-14 254 0.00000000000000D+00 1.38888888888889D-14 255 0.00000000000000D+00 1.38888888888889D-14 256 0.00000000000000D+00 1.38888888888889D-14 257 0.00000000000000D+00 1.38888888888889D-14 258 0.00000000000000D+00 1.38888888888889D-14 259 0.00000000000000D+00 1.38888888888889D-14 260 0.00000000000000D+00 1.38888888888889D-14 261 0.00000000000000D+00 1.38888888888889D-14 262 0.00000000000000D+00 1.38888888888889D-14 263 0.00000000000000D+00 1.38888888888889D-14 264 0.00000000000000D+00 1.38888888888889D-14 265 0.00000000000000D+00 1.38888888888889D-14 266 0.00000000000000D+00 1.38888888888889D-14 267 0.00000000000000D+00 1.38888888888889D-14 268 0.00000000000000D+00 1.38888888888889D-14 269 0.00000000000000D+00 1.38888888888889D-14 270 0.00000000000000D+00 1.38888888888889D-14 271 0.00000000000000D+00 1.38888888888889D-14 272 0.00000000000000D+00 1.38888888888889D-14 273 0.00000000000000D+00 1.38888888888889D-14 274 0.00000000000000D+00 1.38888888888889D-14 275 0.00000000000000D+00 1.38888888888889D-14 276 0.00000000000000D+00 1.38888888888889D-14 277 0.00000000000000D+00 1.38888888888889D-14 278 0.00000000000000D+00 1.38888888888889D-14 279 0.00000000000000D+00 1.38888888888889D-14 280 0.00000000000000D+00 1.38888888888889D-14 281 0.00000000000000D+00 1.38888888888889D-14 282 0.00000000000000D+00 1.38888888888889D-14 283 0.00000000000000D+00 1.38888888888889D-14 284 0.00000000000000D+00 1.38888888888889D-14 285 0.00000000000000D+00 1.38888888888889D-14 286 0.00000000000000D+00 1.38888888888889D-14 287 0.00000000000000D+00 1.38888888888889D-14 288 0.00000000000000D+00 1.38888888888889D-14 289 0.00000000000000D+00 1.38888888888889D-14 290 0.00000000000000D+00 1.38888888888889D-14 291 0.00000000000000D+00 1.38888888888889D-14 292 0.00000000000000D+00 1.38888888888889D-14 293 0.00000000000000D+00 1.38888888888889D-14 294 0.00000000000000D+00 1.38888888888889D-14 295 0.00000000000000D+00 1.38888888888889D-14 296 0.00000000000000D+00 1.38888888888889D-14 297 0.00000000000000D+00 1.38888888888889D-14 298 0.00000000000000D+00 1.38888888888889D-14 299 0.00000000000000D+00 1.38888888888889D-14 300 0.00000000000000D+00 1.38888888888889D-14 301 0.00000000000000D+00 1.38888888888889D-14 302 0.00000000000000D+00 1.38888888888889D-14 303 0.00000000000000D+00 1.38888888888889D-14 304 0.00000000000000D+00 1.38888888888889D-14 305 0.00000000000000D+00 1.38888888888889D-14 306 0.00000000000000D+00 1.38888888888889D-14 307 0.00000000000000D+00 1.38888888888889D-14 308 0.00000000000000D+00 1.38888888888889D-14 309 0.00000000000000D+00 1.38888888888889D-14 310 0.00000000000000D+00 1.38888888888889D-14 311 0.00000000000000D+00 1.38888888888889D-14 312 0.00000000000000D+00 1.38888888888889D-14 313 0.00000000000000D+00 1.38888888888889D-14 314 0.00000000000000D+00 1.38888888888889D-14 315 0.00000000000000D+00 1.38888888888889D-14 316 0.00000000000000D+00 1.38888888888889D-14 317 0.00000000000000D+00 1.38888888888889D-14 318 0.00000000000000D+00 1.38888888888889D-14 319 0.00000000000000D+00 1.38888888888889D-14 320 0.00000000000000D+00 1.38888888888889D-14 321 0.00000000000000D+00 1.38888888888889D-14 322 0.00000000000000D+00 1.38888888888889D-14 323 0.00000000000000D+00 1.38888888888889D-14 324 0.00000000000000D+00 1.38888888888889D-14 325 0.00000000000000D+00 1.38888888888889D-14 326 0.00000000000000D+00 1.38888888888889D-14 327 0.00000000000000D+00 1.38888888888889D-14 328 0.00000000000000D+00 1.38888888888889D-14 329 0.00000000000000D+00 1.38888888888889D-14 330 0.00000000000000D+00 1.38888888888889D-14 331 0.00000000000000D+00 1.38888888888889D-14 332 0.00000000000000D+00 1.38888888888889D-14 333 0.00000000000000D+00 1.38888888888889D-14 334 0.00000000000000D+00 1.38888888888889D-14 335 0.00000000000000D+00 1.38888888888889D-14 336 0.00000000000000D+00 1.38888888888889D-14 337 0.00000000000000D+00 1.38888888888889D-14 338 0.00000000000000D+00 1.38888888888889D-14 339 0.00000000000000D+00 1.38888888888889D-14 340 0.00000000000000D+00 1.38888888888889D-14 341 0.00000000000000D+00 1.38888888888889D-14 342 0.00000000000000D+00 1.38888888888889D-14 343 0.00000000000000D+00 1.38888888888889D-14 344 0.00000000000000D+00 1.38888888888889D-14 345 0.00000000000000D+00 1.38888888888889D-14 346 0.00000000000000D+00 1.38888888888889D-14 347 0.00000000000000D+00 1.38888888888889D-14 348 0.00000000000000D+00 1.38888888888889D-14 349 0.00000000000000D+00 1.38888888888889D-14 350 0.00000000000000D+00 1.38888888888889D-14 351 0.00000000000000D+00 1.38888888888889D-14 352 0.00000000000000D+00 1.38888888888889D-14 353 0.00000000000000D+00 1.38888888888889D-14 354 0.00000000000000D+00 1.38888888888889D-14 355 0.00000000000000D+00 1.38888888888889D-14 356 0.00000000000000D+00 1.38888888888889D-14 357 0.00000000000000D+00 1.38888888888889D-14 358 0.00000000000000D+00 1.38888888888889D-14 359 0.00000000000000D+00 1.38888888888889D-14 360 0.00000000000000D+00 1.38888888888889D-14 361 0.00000000000000D+00 5.00000000000000D-14 362 0.00000000000000D+00 5.00000000000000D-14 363 0.00000000000000D+00 5.00000000000000D-14 364 0.00000000000000D+00 5.00000000000000D-14 365 0.00000000000000D+00 5.00000000000000D-14 366 0.00000000000000D+00 5.00000000000000D-14 367 0.00000000000000D+00 5.00000000000000D-14 368 0.00000000000000D+00 5.00000000000000D-14 369 0.00000000000000D+00 5.00000000000000D-14 370 0.00000000000000D+00 5.00000000000000D-14 371 0.00000000000000D+00 5.00000000000000D-14 372 0.00000000000000D+00 5.00000000000000D-14 373 0.00000000000000D+00 5.00000000000000D-14 374 0.00000000000000D+00 5.00000000000000D-14 375 0.00000000000000D+00 5.00000000000000D-14 376 0.00000000000000D+00 5.00000000000000D-14 377 0.00000000000000D+00 5.00000000000000D-14 378 0.00000000000000D+00 5.00000000000000D-14 379 0.00000000000000D+00 5.00000000000000D-14 380 0.00000000000000D+00 5.00000000000000D-14 381 0.00000000000000D+00 5.00000000000000D-14 382 0.00000000000000D+00 5.00000000000000D-14 383 0.00000000000000D+00 5.00000000000000D-14 384 0.00000000000000D+00 5.00000000000000D-14 385 0.00000000000000D+00 1.38888888888889D-14 386 0.00000000000000D+00 1.38888888888889D-14 387 0.00000000000000D+00 1.38888888888889D-14 388 0.00000000000000D+00 1.38888888888889D-14 389 0.00000000000000D+00 1.38888888888889D-14 390 0.00000000000000D+00 1.38888888888889D-14 391 0.00000000000000D+00 1.38888888888889D-14 392 0.00000000000000D+00 1.38888888888889D-14 393 0.00000000000000D+00 1.38888888888889D-14 394 0.00000000000000D+00 1.38888888888889D-14 395 0.00000000000000D+00 1.38888888888889D-14 396 0.00000000000000D+00 1.38888888888889D-14 397 0.00000000000000D+00 1.38888888888889D-14 398 0.00000000000000D+00 1.38888888888889D-14 399 0.00000000000000D+00 1.38888888888889D-14 400 0.00000000000000D+00 1.38888888888889D-14 401 0.00000000000000D+00 1.38888888888889D-14 402 0.00000000000000D+00 1.38888888888889D-14 403 0.00000000000000D+00 1.38888888888889D-14 404 0.00000000000000D+00 1.38888888888889D-14 405 0.00000000000000D+00 1.38888888888889D-14 406 0.00000000000000D+00 1.38888888888889D-14 407 0.00000000000000D+00 1.38888888888889D-14 408 0.00000000000000D+00 1.38888888888889D-14 409 0.00000000000000D+00 1.38888888888889D-14 410 0.00000000000000D+00 1.38888888888889D-14 411 0.00000000000000D+00 1.38888888888889D-14 412 0.00000000000000D+00 1.38888888888889D-14 413 0.00000000000000D+00 1.38888888888889D-14 414 0.00000000000000D+00 1.38888888888889D-14 415 0.00000000000000D+00 1.38888888888889D-14 416 0.00000000000000D+00 1.38888888888889D-14 417 0.00000000000000D+00 1.38888888888889D-14 418 0.00000000000000D+00 1.38888888888889D-14 419 0.00000000000000D+00 1.38888888888889D-14 420 0.00000000000000D+00 1.38888888888889D-14 421 0.00000000000000D+00 1.38888888888889D-14 422 0.00000000000000D+00 1.38888888888889D-14 423 0.00000000000000D+00 1.38888888888889D-14 424 0.00000000000000D+00 1.38888888888889D-14 425 0.00000000000000D+00 1.38888888888889D-14 426 0.00000000000000D+00 1.38888888888889D-14 427 0.00000000000000D+00 1.38888888888889D-14 428 0.00000000000000D+00 1.38888888888889D-14 429 0.00000000000000D+00 1.38888888888889D-14 430 0.00000000000000D+00 1.38888888888889D-14 431 0.00000000000000D+00 1.38888888888889D-14 432 0.00000000000000D+00 1.38888888888889D-14 433 0.00000000000000D+00 1.38888888888889D-14 434 0.00000000000000D+00 1.38888888888889D-14 435 0.00000000000000D+00 1.38888888888889D-14 436 0.00000000000000D+00 1.38888888888889D-14 437 0.00000000000000D+00 1.38888888888889D-14 438 0.00000000000000D+00 1.38888888888889D-14 439 0.00000000000000D+00 1.38888888888889D-14 440 0.00000000000000D+00 1.38888888888889D-14 441 0.00000000000000D+00 1.38888888888889D-14 442 0.00000000000000D+00 1.38888888888889D-14 443 0.00000000000000D+00 1.38888888888889D-14 444 0.00000000000000D+00 1.38888888888889D-14 445 0.00000000000000D+00 1.38888888888889D-14 446 0.00000000000000D+00 1.38888888888889D-14 447 0.00000000000000D+00 1.38888888888889D-14 448 0.00000000000000D+00 1.38888888888889D-14 449 0.00000000000000D+00 1.38888888888889D-14 450 0.00000000000000D+00 1.38888888888889D-14 451 0.00000000000000D+00 1.38888888888889D-14 452 0.00000000000000D+00 1.38888888888889D-14 453 0.00000000000000D+00 1.38888888888889D-14 454 0.00000000000000D+00 1.38888888888889D-14 455 0.00000000000000D+00 1.38888888888889D-14 456 0.00000000000000D+00 1.38888888888889D-14 457 0.00000000000000D+00 5.00000000000000D-07 458 0.00000000000000D+00 5.00000000000000D-07 459 0.00000000000000D+00 5.00000000000000D-07 460 0.00000000000000D+00 5.00000000000000D-07 461 0.00000000000000D+00 5.00000000000000D-07 462 0.00000000000000D+00 8.16393975866793D-02 463 0.00000000000000D+00 8.17548817418849D-02 464 0.00000000000000D+00 6.67491756426233D-03 465 0.00000000000000D+00 5.00000000000000D-01 466 0.00000000000000D+00 2.00000000000000D+00 467 0.00000000000000D+00 2.00000000000000D+00 468 0.00000000000000D+00 2.00000000000000D+00 469 0.00000000000000D+00 5.00000000000000D-01 470 0.00000000000000D+00 2.00000000000000D+00 471 0.00000000000000D+00 2.00000000000000D+00 472 0.00000000000000D+00 2.00000000000000D+00 473 0.00000000000000D+00 1.00000000000000D-04 474 0.00000000000000D+00 1.00000000000000D-04 475 0.00000000000000D+00 1.00000000000000D-04 476 0.00000000000000D+00 1.00000000000000D-04 477 0.00000000000000D+00 1.00000000000000D-04 478 0.00000000000000D+00 1.00000000000000D-04 -SOLUTION/CONSTRAINT_EQUATION_VECTOR * * ----------------------------------------------------------------------------- * +SOLUTION/CONSTRAINT_WEIGHT_MATRIX * Ind1 Ind2 Weight_matrix(ind1,ind2) 1 1 4.00000000000000D+26 2 2 4.00000000000000D+26 3 3 4.00000000000000D+26 4 4 4.00000000000000D+26 5 5 4.00000000000000D+26 6 6 4.00000000000000D+26 7 7 4.00000000000000D+26 8 8 4.00000000000000D+26 9 9 4.00000000000000D+26 10 10 4.00000000000000D+26 11 11 4.00000000000000D+26 12 12 4.00000000000000D+26 13 13 4.00000000000000D+26 14 14 4.00000000000000D+26 15 15 4.00000000000000D+26 16 16 4.00000000000000D+26 17 17 4.00000000000000D+26 18 18 4.00000000000000D+26 19 19 4.00000000000000D+26 20 20 4.00000000000000D+26 21 21 4.00000000000000D+26 22 22 4.00000000000000D+26 23 23 4.00000000000000D+26 24 24 4.00000000000000D+26 25 25 5.18400000000000D+27 26 26 5.18400000000000D+27 27 27 5.18400000000000D+27 28 28 5.18400000000000D+27 29 29 5.18400000000000D+27 30 30 5.18400000000000D+27 31 31 5.18400000000000D+27 32 32 5.18400000000000D+27 33 33 5.18400000000000D+27 34 34 5.18400000000000D+27 35 35 5.18400000000000D+27 36 36 5.18400000000000D+27 37 37 5.18400000000000D+27 38 38 5.18400000000000D+27 39 39 5.18400000000000D+27 40 40 5.18400000000000D+27 41 41 5.18400000000000D+27 42 42 5.18400000000000D+27 43 43 5.18400000000000D+27 44 44 5.18400000000000D+27 45 45 5.18400000000000D+27 46 46 5.18400000000000D+27 47 47 5.18400000000000D+27 48 48 5.18400000000000D+27 49 49 5.18400000000000D+27 50 50 5.18400000000000D+27 51 51 5.18400000000000D+27 52 52 5.18400000000000D+27 53 53 5.18400000000000D+27 54 54 5.18400000000000D+27 55 55 5.18400000000000D+27 56 56 5.18400000000000D+27 57 57 5.18400000000000D+27 58 58 5.18400000000000D+27 59 59 5.18400000000000D+27 60 60 5.18400000000000D+27 61 61 5.18400000000000D+27 62 62 5.18400000000000D+27 63 63 5.18400000000000D+27 64 64 5.18400000000000D+27 65 65 5.18400000000000D+27 66 66 5.18400000000000D+27 67 67 5.18400000000000D+27 68 68 5.18400000000000D+27 69 69 5.18400000000000D+27 70 70 5.18400000000000D+27 71 71 5.18400000000000D+27 72 72 5.18400000000000D+27 73 73 5.18400000000000D+27 74 74 5.18400000000000D+27 75 75 5.18400000000000D+27 76 76 5.18400000000000D+27 77 77 5.18400000000000D+27 78 78 5.18400000000000D+27 79 79 5.18400000000000D+27 80 80 5.18400000000000D+27 81 81 5.18400000000000D+27 82 82 5.18400000000000D+27 83 83 5.18400000000000D+27 84 84 5.18400000000000D+27 85 85 5.18400000000000D+27 86 86 5.18400000000000D+27 87 87 5.18400000000000D+27 88 88 5.18400000000000D+27 89 89 5.18400000000000D+27 90 90 5.18400000000000D+27 91 91 5.18400000000000D+27 92 92 5.18400000000000D+27 93 93 5.18400000000000D+27 94 94 5.18400000000000D+27 95 95 5.18400000000000D+27 96 96 5.18400000000000D+27 97 97 4.00000000000000D+26 98 98 4.00000000000000D+26 99 99 4.00000000000000D+26 100 100 4.00000000000000D+26 101 101 4.00000000000000D+26 102 102 4.00000000000000D+26 103 103 4.00000000000000D+26 104 104 4.00000000000000D+26 105 105 4.00000000000000D+26 106 106 4.00000000000000D+26 107 107 4.00000000000000D+26 108 108 4.00000000000000D+26 109 109 4.00000000000000D+26 110 110 4.00000000000000D+26 111 111 4.00000000000000D+26 112 112 4.00000000000000D+26 113 113 4.00000000000000D+26 114 114 4.00000000000000D+26 115 115 4.00000000000000D+26 116 116 4.00000000000000D+26 117 117 4.00000000000000D+26 118 118 4.00000000000000D+26 119 119 4.00000000000000D+26 120 120 4.00000000000000D+26 121 121 5.18400000000000D+27 122 122 5.18400000000000D+27 123 123 5.18400000000000D+27 124 124 5.18400000000000D+27 125 125 5.18400000000000D+27 126 126 5.18400000000000D+27 127 127 5.18400000000000D+27 128 128 5.18400000000000D+27 129 129 5.18400000000000D+27 130 130 5.18400000000000D+27 131 131 5.18400000000000D+27 132 132 5.18400000000000D+27 133 133 5.18400000000000D+27 134 134 5.18400000000000D+27 135 135 5.18400000000000D+27 136 136 5.18400000000000D+27 137 137 5.18400000000000D+27 138 138 5.18400000000000D+27 139 139 5.18400000000000D+27 140 140 5.18400000000000D+27 141 141 5.18400000000000D+27 142 142 5.18400000000000D+27 143 143 5.18400000000000D+27 144 144 5.18400000000000D+27 145 145 5.18400000000000D+27 146 146 5.18400000000000D+27 147 147 5.18400000000000D+27 148 148 5.18400000000000D+27 149 149 5.18400000000000D+27 150 150 5.18400000000000D+27 151 151 5.18400000000000D+27 152 152 5.18400000000000D+27 153 153 5.18400000000000D+27 154 154 5.18400000000000D+27 155 155 5.18400000000000D+27 156 156 5.18400000000000D+27 157 157 5.18400000000000D+27 158 158 5.18400000000000D+27 159 159 5.18400000000000D+27 160 160 5.18400000000000D+27 161 161 5.18400000000000D+27 162 162 5.18400000000000D+27 163 163 5.18400000000000D+27 164 164 5.18400000000000D+27 165 165 5.18400000000000D+27 166 166 5.18400000000000D+27 167 167 5.18400000000000D+27 168 168 5.18400000000000D+27 169 169 5.18400000000000D+27 170 170 5.18400000000000D+27 171 171 5.18400000000000D+27 172 172 5.18400000000000D+27 173 173 5.18400000000000D+27 174 174 5.18400000000000D+27 175 175 5.18400000000000D+27 176 176 5.18400000000000D+27 177 177 5.18400000000000D+27 178 178 5.18400000000000D+27 179 179 5.18400000000000D+27 180 180 5.18400000000000D+27 181 181 5.18400000000000D+27 182 182 5.18400000000000D+27 183 183 5.18400000000000D+27 184 184 5.18400000000000D+27 185 185 5.18400000000000D+27 186 186 5.18400000000000D+27 187 187 5.18400000000000D+27 188 188 5.18400000000000D+27 189 189 5.18400000000000D+27 190 190 5.18400000000000D+27 191 191 5.18400000000000D+27 192 192 5.18400000000000D+27 193 193 4.00000000000000D+26 194 194 4.00000000000000D+26 195 195 4.00000000000000D+26 196 196 4.00000000000000D+26 197 197 4.00000000000000D+26 198 198 4.00000000000000D+26 199 199 4.00000000000000D+26 200 200 4.00000000000000D+26 201 201 4.00000000000000D+26 202 202 4.00000000000000D+26 203 203 4.00000000000000D+26 204 204 4.00000000000000D+26 205 205 4.00000000000000D+26 206 206 4.00000000000000D+26 207 207 4.00000000000000D+26 208 208 4.00000000000000D+26 209 209 4.00000000000000D+26 210 210 4.00000000000000D+26 211 211 4.00000000000000D+26 212 212 4.00000000000000D+26 213 213 4.00000000000000D+26 214 214 4.00000000000000D+26 215 215 4.00000000000000D+26 216 216 4.00000000000000D+26 217 217 5.18400000000000D+27 218 218 5.18400000000000D+27 219 219 5.18400000000000D+27 220 220 5.18400000000000D+27 221 221 5.18400000000000D+27 222 222 5.18400000000000D+27 223 223 5.18400000000000D+27 224 224 5.18400000000000D+27 225 225 5.18400000000000D+27 226 226 5.18400000000000D+27 227 227 5.18400000000000D+27 228 228 5.18400000000000D+27 229 229 5.18400000000000D+27 230 230 5.18400000000000D+27 231 231 5.18400000000000D+27 232 232 5.18400000000000D+27 233 233 5.18400000000000D+27 234 234 5.18400000000000D+27 235 235 5.18400000000000D+27 236 236 5.18400000000000D+27 237 237 5.18400000000000D+27 238 238 5.18400000000000D+27 239 239 5.18400000000000D+27 240 240 5.18400000000000D+27 241 241 5.18400000000000D+27 242 242 5.18400000000000D+27 243 243 5.18400000000000D+27 244 244 5.18400000000000D+27 245 245 5.18400000000000D+27 246 246 5.18400000000000D+27 247 247 5.18400000000000D+27 248 248 5.18400000000000D+27 249 249 5.18400000000000D+27 250 250 5.18400000000000D+27 251 251 5.18400000000000D+27 252 252 5.18400000000000D+27 253 253 5.18400000000000D+27 254 254 5.18400000000000D+27 255 255 5.18400000000000D+27 256 256 5.18400000000000D+27 257 257 5.18400000000000D+27 258 258 5.18400000000000D+27 259 259 5.18400000000000D+27 260 260 5.18400000000000D+27 261 261 5.18400000000000D+27 262 262 5.18400000000000D+27 263 263 5.18400000000000D+27 264 264 5.18400000000000D+27 265 265 5.18400000000000D+27 266 266 5.18400000000000D+27 267 267 5.18400000000000D+27 268 268 5.18400000000000D+27 269 269 5.18400000000000D+27 270 270 5.18400000000000D+27 271 271 5.18400000000000D+27 272 272 5.18400000000000D+27 273 273 5.18400000000000D+27 274 274 5.18400000000000D+27 275 275 5.18400000000000D+27 276 276 5.18400000000000D+27 277 277 5.18400000000000D+27 278 278 5.18400000000000D+27 279 279 5.18400000000000D+27 280 280 5.18400000000000D+27 281 281 5.18400000000000D+27 282 282 5.18400000000000D+27 283 283 5.18400000000000D+27 284 284 5.18400000000000D+27 285 285 5.18400000000000D+27 286 286 5.18400000000000D+27 287 287 5.18400000000000D+27 288 288 5.18400000000000D+27 289 289 5.18400000000000D+27 290 290 5.18400000000000D+27 291 291 5.18400000000000D+27 292 292 5.18400000000000D+27 293 293 5.18400000000000D+27 294 294 5.18400000000000D+27 295 295 5.18400000000000D+27 296 296 5.18400000000000D+27 297 297 5.18400000000000D+27 298 298 5.18400000000000D+27 299 299 5.18400000000000D+27 300 300 5.18400000000000D+27 301 301 5.18400000000000D+27 302 302 5.18400000000000D+27 303 303 5.18400000000000D+27 304 304 5.18400000000000D+27 305 305 5.18400000000000D+27 306 306 5.18400000000000D+27 307 307 5.18400000000000D+27 308 308 5.18400000000000D+27 309 309 5.18400000000000D+27 310 310 5.18400000000000D+27 311 311 5.18400000000000D+27 312 312 5.18400000000000D+27 313 313 5.18400000000000D+27 314 314 5.18400000000000D+27 315 315 5.18400000000000D+27 316 316 5.18400000000000D+27 317 317 5.18400000000000D+27 318 318 5.18400000000000D+27 319 319 5.18400000000000D+27 320 320 5.18400000000000D+27 321 321 5.18400000000000D+27 322 322 5.18400000000000D+27 323 323 5.18400000000000D+27 324 324 5.18400000000000D+27 325 325 5.18400000000000D+27 326 326 5.18400000000000D+27 327 327 5.18400000000000D+27 328 328 5.18400000000000D+27 329 329 5.18400000000000D+27 330 330 5.18400000000000D+27 331 331 5.18400000000000D+27 332 332 5.18400000000000D+27 333 333 5.18400000000000D+27 334 334 5.18400000000000D+27 335 335 5.18400000000000D+27 336 336 5.18400000000000D+27 337 337 5.18400000000000D+27 338 338 5.18400000000000D+27 339 339 5.18400000000000D+27 340 340 5.18400000000000D+27 341 341 5.18400000000000D+27 342 342 5.18400000000000D+27 343 343 5.18400000000000D+27 344 344 5.18400000000000D+27 345 345 5.18400000000000D+27 346 346 5.18400000000000D+27 347 347 5.18400000000000D+27 348 348 5.18400000000000D+27 349 349 5.18400000000000D+27 350 350 5.18400000000000D+27 351 351 5.18400000000000D+27 352 352 5.18400000000000D+27 353 353 5.18400000000000D+27 354 354 5.18400000000000D+27 355 355 5.18400000000000D+27 356 356 5.18400000000000D+27 357 357 5.18400000000000D+27 358 358 5.18400000000000D+27 359 359 5.18400000000000D+27 360 360 5.18400000000000D+27 361 361 4.00000000000000D+26 362 362 4.00000000000000D+26 363 363 4.00000000000000D+26 364 364 4.00000000000000D+26 365 365 4.00000000000000D+26 366 366 4.00000000000000D+26 367 367 4.00000000000000D+26 368 368 4.00000000000000D+26 369 369 4.00000000000000D+26 370 370 4.00000000000000D+26 371 371 4.00000000000000D+26 372 372 4.00000000000000D+26 373 373 4.00000000000000D+26 374 374 4.00000000000000D+26 375 375 4.00000000000000D+26 376 376 4.00000000000000D+26 377 377 4.00000000000000D+26 378 378 4.00000000000000D+26 379 379 4.00000000000000D+26 380 380 4.00000000000000D+26 381 381 4.00000000000000D+26 382 382 4.00000000000000D+26 383 383 4.00000000000000D+26 384 384 4.00000000000000D+26 385 385 5.18400000000000D+27 386 386 5.18400000000000D+27 387 387 5.18400000000000D+27 388 388 5.18400000000000D+27 389 389 5.18400000000000D+27 390 390 5.18400000000000D+27 391 391 5.18400000000000D+27 392 392 5.18400000000000D+27 393 393 5.18400000000000D+27 394 394 5.18400000000000D+27 395 395 5.18400000000000D+27 396 396 5.18400000000000D+27 397 397 5.18400000000000D+27 398 398 5.18400000000000D+27 399 399 5.18400000000000D+27 400 400 5.18400000000000D+27 401 401 5.18400000000000D+27 402 402 5.18400000000000D+27 403 403 5.18400000000000D+27 404 404 5.18400000000000D+27 405 405 5.18400000000000D+27 406 406 5.18400000000000D+27 407 407 5.18400000000000D+27 408 408 5.18400000000000D+27 409 409 5.18400000000000D+27 410 410 5.18400000000000D+27 411 411 5.18400000000000D+27 412 412 5.18400000000000D+27 413 413 5.18400000000000D+27 414 414 5.18400000000000D+27 415 415 5.18400000000000D+27 416 416 5.18400000000000D+27 417 417 5.18400000000000D+27 418 418 5.18400000000000D+27 419 419 5.18400000000000D+27 420 420 5.18400000000000D+27 421 421 5.18400000000000D+27 422 422 5.18400000000000D+27 423 423 5.18400000000000D+27 424 424 5.18400000000000D+27 425 425 5.18400000000000D+27 426 426 5.18400000000000D+27 427 427 5.18400000000000D+27 428 428 5.18400000000000D+27 429 429 5.18400000000000D+27 430 430 5.18400000000000D+27 431 431 5.18400000000000D+27 432 432 5.18400000000000D+27 433 433 5.18400000000000D+27 434 434 5.18400000000000D+27 435 435 5.18400000000000D+27 436 436 5.18400000000000D+27 437 437 5.18400000000000D+27 438 438 5.18400000000000D+27 439 439 5.18400000000000D+27 440 440 5.18400000000000D+27 441 441 5.18400000000000D+27 442 442 5.18400000000000D+27 443 443 5.18400000000000D+27 444 444 5.18400000000000D+27 445 445 5.18400000000000D+27 446 446 5.18400000000000D+27 447 447 5.18400000000000D+27 448 448 5.18400000000000D+27 449 449 5.18400000000000D+27 450 450 5.18400000000000D+27 451 451 5.18400000000000D+27 452 452 5.18400000000000D+27 453 453 5.18400000000000D+27 454 454 5.18400000000000D+27 455 455 5.18400000000000D+27 456 456 5.18400000000000D+27 457 457 4.00000000000000D+12 458 458 4.00000000000000D+12 459 459 4.00000000000000D+12 460 460 4.00000000000000D+12 461 461 4.00000000000000D+12 462 462 1.50037706614102D+02 463 462 -1.37791905618606D+01 463 463 1.49614129705183D+02 464 462 -9.67496313988791D+01 464 463 -5.32242526820174D+02 464 464 2.24444096632931D+04 465 465 4.00000000000000D+00 466 466 2.50000000000000D-01 467 467 2.50000000000000D-01 468 468 2.50000000000000D-01 469 469 4.00000000000000D+00 470 470 2.50000000000000D-01 471 471 2.50000000000000D-01 472 472 2.50000000000000D-01 473 473 1.00000000000000D+08 474 474 1.00000000000000D+08 475 475 1.00000000000000D+08 476 476 1.00000000000000D+08 477 477 1.00000000000000D+08 478 478 1.00000000000000D+08 -SOLUTION/CONSTRAINT_WEIGHT_MATRIX * * ----------------------------------------------------------------------------- * +SOLUTION/DECOMPOSED_NORMAL_MATRIX * Ind1 Ind2 Decomposed_normal_matrix(ind1,ind2) 1 1 2.68674222508460D+05 2 1 1.37262100659169D+05 2 2 2.40342057199985D+05 3 1 1.08464215200942D+05 3 2 -1.12678619923845D+05 3 3 2.74891141151428D+05 4 1 -3.21378707800806D+04 4 2 -9.93026234086230D+03 4 3 -3.06019981230199D+04 4 4 2.75040092812419D+05 5 1 -3.95540061540008D+04 5 2 -7.44198401491642D+04 5 3 3.89587321059033D+04 5 4 2.35584545583613D+05 5 5 4.83473330396920D+05 6 1 1.62990576311052D+04 6 2 7.99848643027060D+04 6 3 -9.82766171138287D+04 6 4 9.90103337713741D+04 6 5 -1.53402439020406D+05 6 6 3.39087208178639D+05 7 1 -4.99710943557322D+04 7 2 -3.33011507334299D+04 7 3 -6.69232589292526D+03 7 4 -2.46440815597773D+04 7 5 -2.00886178293452D+04 7 6 -1.11584748890549D+04 7 7 1.85896065399379D+05 8 1 -2.77288683010265D+04 8 2 -3.77159473991096D+04 8 3 1.71420739653558D+04 8 4 -2.68172859347053D+04 8 5 -5.56617713506222D+04 8 6 1.50513065205626D+04 8 7 1.17168670198757D+05 8 8 2.24005552914381D+05 9 1 -1.84154806880243D+04 9 2 3.89623813202232D+03 9 3 -2.46364154675603D+04 9 4 -3.35756158377230D+03 9 5 2.29341660848372D+04 9 6 -2.80664231779277D+04 9 7 7.13842871862873D+04 9 8 -7.12327294516228D+04 9 9 1.60246737981319D+05 10 1 -1.49528516464859D+05 10 2 -7.38910958778933D+04 10 3 -5.88562362068407D+04 10 4 -1.94735930150419D+05 10 5 -1.58911298408553D+05 10 6 -9.02456605364159D+04 10 7 -1.03014493121952D+05 10 8 -5.87331955670044D+04 10 9 -4.58971286587790D+04 10 10 4.92103880907923D+05 11 1 -6.60233449683636D+04 11 2 -1.12687028323889D+05 11 3 4.53800111484006D+04 11 4 -1.62503418637551D+05 11 5 -3.00434347846031D+05 11 6 6.11135104243495D+04 11 7 -6.17294972614720D+04 11 8 -1.17581318924159D+05 11 9 3.61074302096143D+04 11 10 3.15057107568588D+05 11 11 5.88731921717823D+05 12 1 -8.14968035730831D+04 12 2 3.16256498079486D+04 12 3 -1.29108200567275D+05 12 4 -6.71457883438952D+04 12 5 7.28826523343623D+04 12 6 -1.97487532743543D+05 12 7 -4.89554610687271D+04 12 8 3.42895937020220D+04 12 9 -9.93874907497764D+04 12 10 2.19371853513397D+05 12 11 -1.58684103571393D+05 12 12 4.73327803798974D+05 13 1 -3.70367410455346D+04 13 2 -2.01395916098617D+04 13 3 -1.23136548695415D+04 13 4 -2.35222104573548D+04 13 5 -1.70306231002957D+04 13 6 -1.39052558646128D+04 13 7 -8.26639649671316D+03 13 8 -3.88932029963285D+03 13 9 -3.71411614537239D+03 13 10 -4.48249413037896D+04 13 11 -2.48008466067873D+04 13 12 -2.17738004152179D+04 13 13 1.13650289172471D+05 14 1 -3.95588113574684D+03 14 2 -1.55192410445213D+04 14 3 1.11978029956669D+04 14 4 -3.63335785900094D+04 14 5 -5.29573707551658D+04 14 6 -2.74724191091955D+03 14 7 -2.04940427476168D+03 14 8 -1.30465149517059D+04 14 9 8.29489532598853D+03 14 10 -2.35215176187120D+04 14 11 -5.80292263327539D+04 14 12 1.98862080329172D+04 14 13 6.58603817159720D+04 14 14 1.39552353375137D+05 15 1 -2.48509884459600D+04 15 2 -2.82813202870265D+03 15 3 -2.28699085721076D+04 15 4 2.09501440183446D+03 15 5 1.86268887830116D+04 15 6 -1.52566357064247D+04 15 7 -4.57802522730082D+03 15 8 4.74975557085872D+03 15 9 -8.15640914019942D+03 15 10 -2.43728280063197D+04 15 11 1.60831521019489D+04 15 12 -4.73445802842677D+04 15 13 5.17068273900673D+04 15 14 -3.66316641227193D+04 15 15 9.36275331659019D+04 16 1 5.68896224423056D+02 16 2 -2.00715749835382D+02 16 3 8.86391320187515D+02 16 4 7.78033542557079D+02 16 5 1.41998145848472D+03 16 6 -6.55466996712986D+02 16 7 -6.32526723848175D+01 16 8 -1.86126104108107D+02 16 9 1.25454673476874D+02 16 10 -9.99201935112282D+02 16 11 -8.09128262637591D+02 16 12 -2.80387325062513D+02 16 13 -2.84475159483621D+02 16 14 -2.24011341906361D+02 16 15 -7.59916718921123D+01 16 16 8.24800744391263D+00 17 1 -1.55316406198915D+00 17 2 -1.66983645675604D+01 17 3 9.69849865692735D+00 17 4 7.05715044667598D+00 17 5 -2.21854301664030D+00 17 6 1.09537341414727D+01 17 7 1.18282058729884D+01 17 8 2.89266080094894D+01 17 9 -2.12044158703568D+01 17 10 -1.95261236050800D+01 17 11 -1.31333306067294D+01 17 12 2.17313646948981D+00 17 13 2.19393134740672D+00 17 14 3.12363018128888D+00 17 15 -1.62095339733944D+00 17 16 1.32653322038016D-04 17 17 7.00165637429590D-01 18 1 -5.36272556515986D+02 18 2 2.06345226756441D+02 18 3 -9.23217083589799D+02 18 4 -9.51559406220001D+02 18 5 -1.94302331029608D+03 18 6 5.93169390564923D+02 18 7 5.46829066956627D+01 18 8 2.35503257261259D+02 18 9 -1.56809296548963D+02 18 10 1.12314213069700D+03 18 11 1.15638068605370D+03 18 12 4.03107119803841D+02 18 13 3.10006925343680D+02 18 14 3.44794140228433D+02 18 15 8.37498697741965D+01 18 16 4.90344943981366D+00 18 17 1.43166907730553D-02 18 18 1.14122913864870D+01 19 1 1.82855160008004D+00 19 2 1.42067503828470D+01 19 3 -5.53365417520786D+00 19 4 -1.19885642012965D-01 19 5 1.64113422694302D+00 19 6 -3.39855927848134D+00 19 7 -9.54373749735157D+00 19 8 -3.13809393642417D+01 19 9 2.37358362728747D+01 19 10 9.08243656127847D+00 19 11 1.74536359847741D+01 19 12 -1.53506506062566D+01 19 13 -1.24736502202536D+00 19 14 -1.92058123017178D+00 19 15 5.47027786831233D-01 19 16 1.91423986416749D-02 19 17 -7.46634904462531D-01 19 18 -3.17957076220232D-02 19 19 9.47980302734420D-01 20 1 -9.61253606221385D+03 20 2 2.15223542770155D+03 20 3 -1.07948239590660D+04 20 4 -1.15453745687913D+04 20 5 -2.27244023844658D+04 20 6 6.41047663245029D+03 20 7 8.78231795424403D+02 20 8 3.42328915880304D+03 20 9 -1.84245315889623D+03 20 10 1.55078848926474D+04 20 11 1.30170731375996D+04 20 12 4.96469189405797D+03 20 13 4.77179394294645D+03 20 14 4.13180466040310D+03 20 15 1.26210859150298D+03 20 16 -1.50665699788684D+01 20 17 -2.36512906240445D-01 20 18 6.66874411399331D+02 20 19 2.71611956411502D-02 20 20 1.79013192454139D+03 21 1 5.79851620781615D+01 21 2 -1.97829828308825D+02 21 3 1.95092135637799D+02 21 4 -2.58295851387630D+01 21 5 -3.55586045462084D+01 21 6 -7.83405466138252D-02 21 7 2.27492652047257D+02 21 8 5.14503919136775D+02 21 9 -2.69249588364244D+02 21 10 -3.05000531333369D+02 21 11 -2.90473341338702D+02 21 12 5.94388991416574D+01 21 13 4.53523023466940D+01 21 14 9.35785505495822D+00 21 15 1.47968941337833D+01 21 16 1.97534552045482D-01 21 17 9.49286265108638D+00 21 18 -2.50251337922774D-02 21 19 -1.12238999266716D+01 21 20 -4.96123428695012D+00 21 21 1.51105217226188D+02 22 1 1.46027368769916D+00 22 2 -3.27177949191968D+01 22 3 4.11476729220775D+01 22 4 3.73338817451984D+01 22 5 9.81580788069335D+01 22 6 -3.89179856868473D+01 22 7 8.85743646504750D+00 22 8 3.71689120015585D+01 22 9 -3.28235616611242D+01 22 10 -2.88049768197584D+01 22 11 -8.52378050803024D+01 22 12 3.59854649630071D+01 22 13 -1.88466150781218D+01 22 14 -1.73713908093010D+01 22 15 -5.39159053688509D+00 22 16 3.40013834577900D-01 22 17 7.76087865562711D-01 22 18 -4.69454068941502D-01 22 19 -9.23068954223548D-01 22 20 -5.50094603228337D+00 22 21 1.11583800348078D+01 22 22 1.55301390004328D+00 23 1 8.01281242417989D+01 23 2 6.15975182406792D+01 23 3 2.36540831054648D+01 23 4 -8.36492428909511D+00 23 5 -5.86120533481347D+00 23 6 -1.35232837624752D+01 23 7 2.03441219282591D+01 23 8 5.64063732123497D+01 23 9 -1.10804921545914D+01 23 10 -7.79395957796606D+01 23 11 -1.10993658359873D+02 23 12 3.43237120349172D+00 23 13 -1.41677261011852D+01 23 14 -1.14902775840214D+00 23 15 -2.48267839198453D+00 23 16 2.15815802635083D-01 23 17 -1.29234091641176D-01 23 18 -1.80530375559142D-01 23 19 2.04961554182988D-03 23 20 -2.36465069629794D+00 23 21 -2.66372671438795D-02 23 22 4.28758978547848D-02 23 23 1.02334488224680D+01 -SOLUTION/DECOMPOSED_NORMAL_MATRIX * * ----------------------------------------------------------------------------- * +SOLUTION/DECOMPOSED_NORMAL_VECTOR * Ind1 Decomposed_vector(ind1) 1 -1.17116681810275D+04 2 -1.72116072504909D+04 3 8.93233021451284D+03 4 -2.44382065059877D+04 5 -1.40317328239799D+04 6 -1.82732221161249D+04 7 1.58604475614527D+04 8 -5.00460939216660D+03 9 2.58759430263051D+04 10 1.75462378828130D+04 11 3.14826294746693D+04 12 -1.63763306234086D+04 13 2.74318924263111D+03 14 4.76531999199451D+03 15 -1.58720501406559D+02 16 -2.99485723808703D+01 17 -3.97008226346627D+00 18 5.93902708687573D+01 19 4.55559230898707D+00 20 8.38921744634205D+02 21 -4.55206563886511D+01 22 -8.23374843393013D+00 23 -8.77335979927508D+00 -SOLUTION/DECOMPOSED_NORMAL_VECTOR * * ----------------------------------------------------------------------------- * %ENDSNX