! VAISALA ! Upper Air Division 1995-02-09 ! [Const] { ! Constants and queries ! ! Will be executed immediately after simulation ! or sounding preparation start ! tRnd=0.293 } [Calibrate] { ! Queries that will be executed when "Parameters" button ! is pressed ! At sounding start, queries will be verified ! Can be empty but must exist } [Init] { ! Variable initializations (NOT constants) ! This is executed only once ! ! before the first Data- execution. ! ! return value 1 is required. dMin=0; dMin2=0; dMax=9999; dMax2=9999; AddData2=0; AddData=0; Init=1; } [Data] { ! Calculate data value ! Must be multiplied with UnitScale (see Options..) ! Data=S0*100/tRnd; Dat2=S1*100/tRnd; Delta=2*Data^(1/2)+30; Delt2=2*Dat2^(1/2)+30; dMin=Md-Delta; dMax=Md+Delta; dMin2=Md2-Delt2; dMax2=Md2+Delt2; } [AddData] { ! Required event if not used ! Number < -100000 is a NOT USED indicator AddData2=-999999.9 AddData=-999999.9 }