Last change
on this file since 3871 was
3834,
checked in by Laurent Fairhead, 4 years ago
|
Renaming module files so that makelmdz and create_make_gcm finds them
|
File size:
374 bytes
|
Line | |
---|
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.