when i couple with swan model, the reslut has a warning in the print file.
Code: Select all
** Warning          : relative frequency resolution (df/f) deviates more
 ** Warning          : than 5% from 10%-resolution. This may be problematic
 ** Warning          : when quadruplets are approximated by means of DIA.Code: Select all
The computational spectral grid needs to be provided by the user. In frequency space,
it is simply dened by a minimum and a maximum frequency and the frequency resolution
which is proportional to the frequency itself (i.e. logarithmic, e.g., f = 0:1 f).
 ...Code: Select all
         GAMMA = EXP(ALOG(SHIG/SLOW)/REAL(MSC-1))                         40.31
         IF (ABS(GAMMA-1.1).GT.0.055) THEN                                40.31
            CALL MSGERR(1,                                                40.31
     &           'relative frequency resolution (df/f) deviates more')    40.31
            CALL MSGERR(1,                                                40.31
     &           'than 5% from 10%-resolution. This may be problematic')  40.31
            CALL MSGERR(1,                                                40.31
     &           'when quadruplets are approximated by means of DIA.')    40.31
         END IF Thank you!