GPIB_set_power_freq - Indique la fréquence de travail au wattmètre (Cal Factor Frequency).
type : Langage GPIB du wattmètre. Actuellement, 2 types d'instrutions sont pris en charge :
Wattmètre HP => type = 1 ; Cette fonction est inactive pour ce type de wattmètre.
Wattmètre Anritsu => type = 2
channel : La valeur '1' correspond au canal 'A'. La valeur '2', au canal 'B'.
// Met le Cal Factor de la sonde A à 3 GHz (Sonde Anritsu - Table inclue en EPROM)
GPIB_set_power_freq(13,2,1,3*10^9);
// Met le Cal Fator à 3 GHz en spécifiant une table de CF (Sonde HP)
CalFactor=[ 0.05 , 95 ;
2 , 95.5;
3 , 94.8;
4 , 94.2;
5 , 94.5;
6 , 94.8;
7 , 94.8;
8 , 94.8;
9 , 94.2;
10 , 94;
11 , 94;
12 , 93.5;
13 , 94;
14 , 92.8;
15 , 92;
16 , 92.8;
17 , 94.4;
18 , 99.4];
CalFactor(:,1)=CalFactor(:,1)*10^9;
GPIB_set_power_freq(13,2,1,3*10^9,CalFactor,5);
GPIB_get_power , GPIB_set_power_message , GPIB_power_CF ,