source:
LMDZ6/trunk/libf/phylmd/Ocean_skin/therm_expans.F90
@
3816
| Last change on this file since 3816 was 3816, checked in by , 5 years ago | |
|---|---|
| File size: 374 bytes | |
| Rev | Line | |
|---|---|---|
| [3816] | 1 | module therm_expans_m |
| 2 | ||
| 3 | implicit none | |
| 4 | ||
| 5 | contains | |
| 6 | ||
| 7 | elemental real function therm_expans(t) | |
| 8 | ||
| 9 | ! Compute the thermal expansion coefficient of sea water. | |
| 10 | ||
| 11 | real, intent(in):: t ! temperature, in K | |
| 12 | ||
| 13 | !-------------------------------------------------------------- | |
| 14 | ||
| 15 | therm_expans = 2.1e-5 * (t - 269.95)**0.79 | |
| 16 | ||
| 17 | end function therm_expans | |
| 18 | ||
| 19 | end module therm_expans_m |
Note: See TracBrowser
for help on using the repository browser.
