Home
last modified time | relevance | path

Searched refs:temp_F (Results 1 – 8 of 8) sorted by relevance

/dports/misc/wmweather+/wmweather+-2.18/
H A Dconvert.c58 int rh_F(int temp_F, int dewpt_F){ in rh_F() argument
63 f=3208.95*(dewpt_F-temp_F)/((395.86+dewpt_F)*(395.86+temp_F)); in rh_F()
82 int heatindex_F(int temp_F, int rh){ in heatindex_F() argument
85 if(temp_F==999 || temp_F<70 || rh<0) return 999; in heatindex_F()
87 temp2=temp_F*temp_F; in heatindex_F()
88 temp3=temp2*temp_F; in heatindex_F()
107 ret=35.74 + 0.6215*temp_F + (-35.75 + 0.4275*temp_F)*pow(windspeed*50292/57875.0, 0.16); in windchill_F()
108 if(ret>temp_F) return temp_F; in windchill_F()
176 int temp_F2C(int temp_F){ in temp_F2C() argument
177 if(temp_F==999) return 999; in temp_F2C()
[all …]
H A Dconvert.h17 int rh_F(int temp_F, int dewpt_F);
19 int heatindex_F(int temp_F, int rh);
21 int windchill_F(int temp_F, int windspeed); /* knots */
37 int temp_F2C(int temp_F);
/dports/www/pear-Horde_Service_Weather/Horde_Service_Weather-2.5.4/lib/Horde/Service/Weather/Current/
H A DWwo.php63 return $this->_properties->temp_F;
/dports/math/gnumeric/gnumeric-1.12.50/plugins/fn-eng/
H A Dfunctions.c910 temp_F, enumerator
922 return temp_F; in convert_temp_unit()
949 case temp_F: in convert_temp()
978 case temp_F: in convert_temp()
/dports/audio/fdk-aac/fdk-aac-2.0.2/libSBRdec/src/
H A Dhbe.cpp1716 temp_F, f1_F; /* all equal exponent */ in QmfTransposerApply() local
1772 temp_F = fMin((sqmag1_F >> shift1), (sqmag2_F >> shift2)); in QmfTransposerApply()
1778 if ((temp_F >> shift3) > (mVal_F >> shift4)) { in QmfTransposerApply()
1779 mVal_F = temp_F; in QmfTransposerApply()
/dports/multimedia/handbrake/fdk-aac-2.0.1/libSBRdec/src/
H A Dhbe.cpp1716 temp_F, f1_F; /* all equal exponent */ in QmfTransposerApply() local
1772 temp_F = fMin((sqmag1_F >> shift1), (sqmag2_F >> shift2)); in QmfTransposerApply()
1778 if ((temp_F >> shift3) > (mVal_F >> shift4)) { in QmfTransposerApply()
1779 mVal_F = temp_F; in QmfTransposerApply()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtcharts/examples/charts/qmlweather/qml/qmlweather/
H A Dmain.qml131 …M\", \"precipMM\": \"0.0\", \"pressure\": \"1022\", \"temp_C\": \"6\", \"temp_F\": \"43\", \"visib…
/dports/astro/py-astropy/astropy-5.0/docs/units/
H A Dequivalencies.rst481 >>> temp_F = temp_C.to(u.imperial.deg_F, equivalencies=u.temperature())
482 >>> temp_F # doctest: +FLOAT_CMP