Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://xmm.vilspa.esa.es/sas/7.0.0/doc/ssclib/node40.html
Дата изменения: Wed Jun 28 23:12:27 2006 Дата индексирования: Sat Dec 22 08:34:43 2007 Кодировка: Поисковые слова: earth orbit |
The precision at low frequencies f is limited by the calculation of exp(x)-1, where x = hfk/T. At low values of x, exp(x) is close to 1 and thus the difference between exp(x) and 1 is a number of low precision. Thus for x values less than 0.1, a series expansion of (exp(x)-1)/x is used instead. The minimum precision occurs at x = 0.1 and is approximately equal to precision(1d0)-1.
subroutine getBBfluxPerHertz(hertzValues, kelvin, powerValues) real(double), intent(in) :: hertzValues(:), kelvin real(double), intent(out) :: powerValues(size(hertzValues)) end subroutine getBBfluxPerHertz function bbFluxPerHertz(hertz, kelvin) result(power) real(double), intent(in) :: hertz, kelvin real(double) :: power end function bbFluxPerHertz