ARTS built-in documentation server
Workspace Method yColdAtmHot
Description
Computes y from input using standard calibration scheme of cold-atm-hot observations
If calib evaluates as true:
y = cold_temp + (hot_temp - cold_temp) * (atm - cold) / (hot - cold)
If calib evaluates as false:
y = (hot_temp * cold - cold_temp * hot) / (hot - cold)
Authors: Richard Larsson
Synopsis
yColdAtmHot( | y, cold, atm, hot, cold_temp, hot_temp, calib ) |
Variables
OUT | y | (Vector) | The measurement vector. |
GIN | cold | (Vector) | N-elem Vector of cold load linear power |
GIN | atm | (Vector) | N-elem Vector of atmosphere linear power |
GIN | hot | (Vector) | N-elem Vector of hot load linear power |
GIN | cold_temp | (Numeric) | Cold load temperature |
GIN | hot_temp | (Numeric) | Hot load temperature |
GIN | calib | (Index, Default: 1) | Flag for calibration scheme, false means system temperature is computed |