-
Notifications
You must be signed in to change notification settings - Fork 2
Wet Bulb Globe Temperature (WBGT)
Henriette Steenhoff edited this page May 15, 2018
·
3 revisions
| Physical name | Logical name | Type | Comment |
|---|---|---|---|
| WBGT | Wet bulb globe temperature | float | At the moment using wbgt without solar |
As provided on Wikipedia
The wet-bulb globe temperature (WBGT) is a type of apparent temperature used to estimate the effect of temperature, humidity, wind speed (wind chill), and visible and infrared radiation (usually sunlight) on humans. It is used to determine appropriate exposure levels to high temperatures. It is derived from the following formula:
WBGT = 0.7Tw + 0.2Tg + 0.1Td
- Tw: Natural wet-bulb temperature (combined with dry-bulb temperature indicates humidity)
- Tg: Globe thermometer temperature (measured with a globe thermometer, also known as a black globe thermometer)
- Td: Td = Dry-bulb temperature (actual air temperature)
- Temperatures may be in either Celsius or Fahrenheit
Indoors, or when solar radiation is negligible, the following formula is often used:
WBGT = 0.7Tw + 0.3Tg
- DashboardFragment.java https://github.com/frksteenhoff/ClimApp/blob/master/ClimApp/app/src/main/java/com/example/android/climapp/dashboard/DashboardFragment.java
- WBGT.java (definition of calculations) https://github.com/frksteenhoff/ClimApp/blob/master/ClimApp/app/src/main/java/com/example/android/climapp/wbgt/WBGT.java
- SolarRad.java (helper object for solar irradiation) https://github.com/frksteenhoff/ClimApp/blob/master/ClimApp/app/src/main/java/com/example/android/climapp/wbgt/SolarRad.java
- Solar.java (helper object) https://github.com/frksteenhoff/ClimApp/blob/master/ClimApp/app/src/main/java/com/example/android/climapp/wbgt/Solar.java
- AirProperties.java (helper object air propoerties) https://github.com/frksteenhoff/ClimApp/blob/master/ClimApp/app/src/main/java/com/example/android/climapp/wbgt/AirProperties.java
- RecommendedAlertLimit.java (using the preference value, but not shared preferences directly) https://github.com/frksteenhoff/ClimApp/blob/master/ClimApp/app/src/main/java/com/example/android/climapp/wbgt/RecommendedAlertLimit.java

- Recommended Alert Limit
- Weather data
- Shared preferences
- Translation procedure
- Prediction of indoor temperature
Testing
Server/database/API
User information
- Acclimatization
- Activity level
- Age
- Age onboarding
- Gender
- Height value
- Unit
- Weight
- Wet Bulb Globe Temperature (WBGT)
Flow controls